Skip to content

Commit

Permalink
VulkanDevice: Fix incorrect texture format for A1BGR5
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Feb 14, 2025
1 parent 3a44c3a commit 5913de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/vulkan_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const std::array<VkFormat, static_cast<u32>(GPUTexture::Format::MaxCount)> Vulka
VK_FORMAT_B8G8R8A8_UNORM, // BGRA8
VK_FORMAT_R5G6B5_UNORM_PACK16, // RGB565
VK_FORMAT_A1R5G5B5_UNORM_PACK16, // RGB5A1
VK_FORMAT_B5G5R5A1_UNORM_PACK16, // A1BGR5
VK_FORMAT_R5G5B5A1_UNORM_PACK16, // A1BGR5
VK_FORMAT_R8_UNORM, // R8
VK_FORMAT_D16_UNORM, // D16
VK_FORMAT_D24_UNORM_S8_UINT, // D24S8
Expand Down

0 comments on commit 5913de9

Please sign in to comment.