Skip to content

Commit b16430b

Browse files
[macOS] Enable Impeller by default on macOS. (#164572)
Enables impeller by default on macOS devices. An opt out can still be configured by passing --no-enable-impeller or using the FLTEnableImpeller / NO setting in the Info.plist.
1 parent 43ca28b commit b16430b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/src/flutter/shell/platform/darwin/macos/framework/Source/FlutterDartProject.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ - (BOOL)enableImpeller {
6565
if (enableImpeller != nil) {
6666
return enableImpeller.boolValue;
6767
}
68-
return NO;
68+
return YES;
6969
}
7070

7171
- (NSString*)assetsPath {

0 commit comments

Comments
 (0)