We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6358de8 commit 3adda56Copy full SHA for 3adda56
src/main/java/net/vulkanmod/vulkan/texture/ImageUtil.java
@@ -46,7 +46,7 @@ public static void downloadTexture(VulkanImage image, long ptr) {
46
PointerBuffer pStagingAllocation = stack.pointers(0L);
47
MemoryManager.getInstance().createBuffer(imageSize,
48
VK_BUFFER_USAGE_TRANSFER_DST_BIT,
49
- VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT | VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
+ VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
50
pStagingBuffer,
51
pStagingAllocation);
52
0 commit comments