diff options
Diffstat (limited to 'src/video_core/renderer_vulkan')
| -rw-r--r-- | src/video_core/renderer_vulkan/maxwell_to_vk.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/renderer_vulkan/vk_device.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp index 331808113..8c49c66a7 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp | |||
| @@ -159,6 +159,7 @@ struct FormatTuple { | |||
| 159 | {vk::Format::eR32G32Uint, Attachable | Storage}, // RG32UI | 159 | {vk::Format::eR32G32Uint, Attachable | Storage}, // RG32UI |
| 160 | {vk::Format::eUndefined, {}}, // RGBX16F | 160 | {vk::Format::eUndefined, {}}, // RGBX16F |
| 161 | {vk::Format::eR32Uint, Attachable | Storage}, // R32UI | 161 | {vk::Format::eR32Uint, Attachable | Storage}, // R32UI |
| 162 | {vk::Format::eR32Sint, Attachable | Storage}, // R32I | ||
| 162 | {vk::Format::eAstc8x8UnormBlock, {}}, // ASTC_2D_8X8 | 163 | {vk::Format::eAstc8x8UnormBlock, {}}, // ASTC_2D_8X8 |
| 163 | {vk::Format::eUndefined, {}}, // ASTC_2D_8X5 | 164 | {vk::Format::eUndefined, {}}, // ASTC_2D_8X5 |
| 164 | {vk::Format::eUndefined, {}}, // ASTC_2D_5X4 | 165 | {vk::Format::eUndefined, {}}, // ASTC_2D_5X4 |
diff --git a/src/video_core/renderer_vulkan/vk_device.cpp b/src/video_core/renderer_vulkan/vk_device.cpp index 9840f26e5..de712223e 100644 --- a/src/video_core/renderer_vulkan/vk_device.cpp +++ b/src/video_core/renderer_vulkan/vk_device.cpp | |||
| @@ -511,6 +511,7 @@ std::unordered_map<vk::Format, vk::FormatProperties> VKDevice::GetFormatProperti | |||
| 511 | vk::Format::eB10G11R11UfloatPack32, | 511 | vk::Format::eB10G11R11UfloatPack32, |
| 512 | vk::Format::eR32Sfloat, | 512 | vk::Format::eR32Sfloat, |
| 513 | vk::Format::eR32Uint, | 513 | vk::Format::eR32Uint, |
| 514 | vk::Format::eR32Sint, | ||
| 514 | vk::Format::eR16Sfloat, | 515 | vk::Format::eR16Sfloat, |
| 515 | vk::Format::eR16G16B16A16Sfloat, | 516 | vk::Format::eR16G16B16A16Sfloat, |
| 516 | vk::Format::eB8G8R8A8Unorm, | 517 | vk::Format::eB8G8R8A8Unorm, |