Fixed uploading Vulkan texture with w*bpp != pitch

main
Sam Lantinga 2024-02-26 15:18:23 -08:00
parent 3a796c9722
commit 80d2ef7384
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}