From b5ee961e4f076d4aed6b7e8ea4fd763bced8b790 Mon Sep 17 00:00:00 2001 From: Brandon DeRosier Date: Fri, 21 Jul 2023 13:17:05 -0700 Subject: [PATCH] [Impeller] Disable color attachment removal for clips on VK (flutter/engine#43905) This is causing a validation failure on the Vulkan backend at ToT, as discovered by @jonahwilliams. Need to figure out why this isn't getting hit in the Vulkan goldens. --- .../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 78e6c0d0ff4..63601ce390e 100644 --- a/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc +++ b/engine/src/flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc @@ -443,7 +443,7 @@ bool CapabilitiesVK::SupportsMemorylessTextures() const { // |Capabilities| bool CapabilitiesVK::SupportsPipelinesWithNoColorAttachments() const { - return true; + return false; } // |Capabilities|