forked from MoonsideGames/Refresh
fix incorrect flag bit
parent
2803e6d94e
commit
c99b4cdfa1
|
@ -2933,7 +2933,7 @@ static uint8_t VULKAN_INTERNAL_BindMemoryForImage(
|
||||||
{
|
{
|
||||||
memoryTypeIndex = 0;
|
memoryTypeIndex = 0;
|
||||||
requiredMemoryPropertyFlags = 0;
|
requiredMemoryPropertyFlags = 0;
|
||||||
ignoredMemoryPropertyFlags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT;
|
ignoredMemoryPropertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT;
|
||||||
|
|
||||||
if (isRenderTarget)
|
if (isRenderTarget)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue