Fixed uploading Vulkan texture with w*bpp != pitch
parent
3a796c9722
commit
80d2ef7384
|
@ -2534,7 +2534,7 @@ static VkResult VULKAN_UpdateTextureInternal(VULKAN_RenderData *rendererData, Vk
|
|||
for (VkDeviceSize row = h; row--; ) {
|
||||
SDL_memcpy(dst, src, length);
|
||||
src += pitch;
|
||||
dst += pitch;
|
||||
dst += length;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue