Browse Source
vulkan_device: Add missing vulkan image format R5G6B5 in GetFormatProperties
- Used by Dragon Quest Builders
pull/15/merge
Feng Chen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
|
@ -103,6 +103,7 @@ std::unordered_map<VkFormat, VkFormatProperties> GetFormatProperties(vk::Physica |
|
|
|
VK_FORMAT_A8B8G8R8_SNORM_PACK32, |
|
|
|
VK_FORMAT_A8B8G8R8_SINT_PACK32, |
|
|
|
VK_FORMAT_A8B8G8R8_SRGB_PACK32, |
|
|
|
VK_FORMAT_R5G6B5_UNORM_PACK16, |
|
|
|
VK_FORMAT_B5G6R5_UNORM_PACK16, |
|
|
|
VK_FORMAT_A2B10G10R10_UNORM_PACK32, |
|
|
|
VK_FORMAT_A2B10G10R10_UINT_PACK32, |
|
|
|
|