Skip to content

Commit

Permalink
Vulkan: Fix incorrect flag bit
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcosmonaut committed Jan 31, 2024
1 parent fe96140 commit 83b2afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FNA3D_Driver_Vulkan.c
Original file line number Diff line number Diff line change
Expand Up @@ -2811,7 +2811,7 @@ static uint8_t VULKAN_INTERNAL_BindMemoryForImage(
{
memoryTypeIndex = 0;
requiredMemoryPropertyFlags = 0;
ignoredMemoryPropertyFlags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT;
ignoredMemoryPropertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT;

if (isRenderTarget)
{
Expand Down

0 comments on commit 83b2afc

Please sign in to comment.