Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Fix Metal builds. #12777

Merged
merged 1 commit into from
Oct 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions shell/platform/darwin/ios/ios_surface_metal.mm
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,7 @@
return true;
}

bool submitted = platform_views_controller->SubmitFrame(std::move(context), // gr context
{}, // onscreen gl context
{} // offscreen gl context
);
bool submitted = platform_views_controller->SubmitFrame(context, nullptr);
[CATransaction commit];
return submitted;
}
Expand Down