Fix Vulkan texture update

(cherry picked from commit 3daa19dd95)
This commit is contained in:
bitsawer 2023-08-19 12:18:54 +03:00 committed by Yuri Sizov
parent bc95b36fbf
commit 904582b4a8
1 changed files with 1 additions and 1 deletions

View File

@ -2607,7 +2607,7 @@ Error RenderingDeviceVulkan::_texture_update(RID p_texture, uint32_t p_layer, co
vkCmdCopyBufferToImage(command_buffer, staging_buffer_blocks[staging_buffer_current].buffer, texture->image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &buffer_image_copy);
staging_buffer_blocks.write[staging_buffer_current].fill_amount += alloc_size;
staging_buffer_blocks.write[staging_buffer_current].fill_amount = alloc_offset + alloc_size;
}
}
}