From fb0c47c6ec92cffd5fe6c328b7752b8cfb7cc4d8 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Fri, 9 Jun 2023 08:53:56 -0700 Subject: [PATCH] [Impeller] disable buffer to texture blit for Vulkan. (flutter/engine#42686) This fixes some f'd up ness in the images. Will need to debug this separately on Android. For now, we can just turn it off in the caps. --- .../flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc b/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc index e93e98e301..e917bed3ae 100644 --- a/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc +++ b/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc @@ -328,7 +328,7 @@ bool CapabilitiesVK::SupportsSSBO() const { // |Capabilities| bool CapabilitiesVK::SupportsBufferToTextureBlits() const { - return true; + return false; } // |Capabilities|