mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Two issues: 1. The resolve texture is created from the same impeller attachment as the msaa attachment, so the store mode was getting set to dont care instead of store. 2. the image layout for the resolve attachment should be ePresentSrcKHR, at least from following the guide at https://vulkan-tutorial.com/Multisampling Fixing both of these locally fixes all of the weird offscreen cursed rendering. Fixes https://github.com/flutter/flutter/issues/128600