-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Metal on iOS by default. #17431
Use Metal on iOS by default. #17431
Conversation
Fixes flutter/flutter#18208. All Metal for iOS related work items described in https://github.com/orgs/flutter/projects/5 have been completed.
bool ShouldUseSoftwareRenderer() { | ||
return [[[NSProcessInfo processInfo] arguments] containsObject:@"--force-software"]; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we dropping this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was only added recently so I could check all three variants in one build. There is no reason to support software rendering on iOS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So it's set somewhere else for simulator?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes flutter/flutter#18208. All Metal for iOS related work items described in https://github.com/orgs/flutter/projects/5 have been completed.
Fixes flutter/flutter#18208. All Metal for iOS related work items described in https://github.com/orgs/flutter/projects/5 have been completed.