We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494140f commit 2bee8b2Copy full SHA for 2bee8b2
shell/platform/darwin/ios/rendering_api_selection.mm
@@ -29,16 +29,9 @@ bool ShouldUseMetalRenderer() {
29
}
30
31
IOSRenderingAPI GetRenderingAPIForProcess(bool force_software) {
32
-#if TARGET_OS_SIMULATOR
33
if (force_software) {
34
return IOSRenderingAPI::kSoftware;
35
36
-#else
37
- if (force_software) {
38
- FML_LOG(WARNING) << "The --enable-software-rendering is only supported on Simulator targets "
39
- "and will be ignored.";
40
- }
41
-#endif // TARGET_OS_SIMULATOR
42
43
static bool should_use_metal = ShouldUseMetalRenderer();
44
if (should_use_metal) {
0 commit comments