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

Commit

Permalink
[Impeller] disable buffer to texture blit for Vulkan. (#42686)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jonahwilliams authored Jun 9, 2023
1 parent adf43f0 commit bc6e047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impeller/renderer/backend/vulkan/capabilities_vk.cc
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ bool CapabilitiesVK::SupportsSSBO() const {

// |Capabilities|
bool CapabilitiesVK::SupportsBufferToTextureBlits() const {
return true;
return false;
}

// |Capabilities|
Expand Down

0 comments on commit bc6e047

Please sign in to comment.