diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_vulkan/maxwell_to_vk.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp index 1da53f203..430a84272 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp | |||
| @@ -150,7 +150,7 @@ struct FormatTuple { | |||
| 150 | {VK_FORMAT_BC6H_UFLOAT_BLOCK}, // BC6H_UFLOAT | 150 | {VK_FORMAT_BC6H_UFLOAT_BLOCK}, // BC6H_UFLOAT |
| 151 | {VK_FORMAT_BC6H_SFLOAT_BLOCK}, // BC6H_SFLOAT | 151 | {VK_FORMAT_BC6H_SFLOAT_BLOCK}, // BC6H_SFLOAT |
| 152 | {VK_FORMAT_ASTC_4x4_UNORM_BLOCK}, // ASTC_2D_4X4_UNORM | 152 | {VK_FORMAT_ASTC_4x4_UNORM_BLOCK}, // ASTC_2D_4X4_UNORM |
| 153 | {VK_FORMAT_B8G8R8A8_UNORM, Attachable}, // B8G8R8A8_UNORM | 153 | {VK_FORMAT_B8G8R8A8_UNORM, Attachable | Storage}, // B8G8R8A8_UNORM |
| 154 | {VK_FORMAT_R32G32B32A32_SFLOAT, Attachable | Storage}, // R32G32B32A32_FLOAT | 154 | {VK_FORMAT_R32G32B32A32_SFLOAT, Attachable | Storage}, // R32G32B32A32_FLOAT |
| 155 | {VK_FORMAT_R32G32B32A32_SINT, Attachable | Storage}, // R32G32B32A32_SINT | 155 | {VK_FORMAT_R32G32B32A32_SINT, Attachable | Storage}, // R32G32B32A32_SINT |
| 156 | {VK_FORMAT_R32G32_SFLOAT, Attachable | Storage}, // R32G32_FLOAT | 156 | {VK_FORMAT_R32G32_SFLOAT, Attachable | Storage}, // R32G32_FLOAT |
| @@ -160,7 +160,7 @@ struct FormatTuple { | |||
| 160 | {VK_FORMAT_R16_UNORM, Attachable | Storage}, // R16_UNORM | 160 | {VK_FORMAT_R16_UNORM, Attachable | Storage}, // R16_UNORM |
| 161 | {VK_FORMAT_R16_SNORM, Attachable | Storage}, // R16_SNORM | 161 | {VK_FORMAT_R16_SNORM, Attachable | Storage}, // R16_SNORM |
| 162 | {VK_FORMAT_R16_UINT, Attachable | Storage}, // R16_UINT | 162 | {VK_FORMAT_R16_UINT, Attachable | Storage}, // R16_UINT |
| 163 | {VK_FORMAT_UNDEFINED}, // R16_SINT | 163 | {VK_FORMAT_R16_SINT, Attachable | Storage}, // R16_SINT |
| 164 | {VK_FORMAT_R16G16_UNORM, Attachable | Storage}, // R16G16_UNORM | 164 | {VK_FORMAT_R16G16_UNORM, Attachable | Storage}, // R16G16_UNORM |
| 165 | {VK_FORMAT_R16G16_SFLOAT, Attachable | Storage}, // R16G16_FLOAT | 165 | {VK_FORMAT_R16G16_SFLOAT, Attachable | Storage}, // R16G16_FLOAT |
| 166 | {VK_FORMAT_R16G16_UINT, Attachable | Storage}, // R16G16_UINT | 166 | {VK_FORMAT_R16G16_UINT, Attachable | Storage}, // R16G16_UINT |
| @@ -184,7 +184,7 @@ struct FormatTuple { | |||
| 184 | {VK_FORMAT_BC2_SRGB_BLOCK}, // BC2_SRGB | 184 | {VK_FORMAT_BC2_SRGB_BLOCK}, // BC2_SRGB |
| 185 | {VK_FORMAT_BC3_SRGB_BLOCK}, // BC3_SRGB | 185 | {VK_FORMAT_BC3_SRGB_BLOCK}, // BC3_SRGB |
| 186 | {VK_FORMAT_BC7_SRGB_BLOCK}, // BC7_SRGB | 186 | {VK_FORMAT_BC7_SRGB_BLOCK}, // BC7_SRGB |
| 187 | {VK_FORMAT_R4G4B4A4_UNORM_PACK16, Attachable}, // A4B4G4R4_UNORM | 187 | {VK_FORMAT_R4G4B4A4_UNORM_PACK16}, // A4B4G4R4_UNORM |
| 188 | {VK_FORMAT_R4G4_UNORM_PACK8}, // G4R4_UNORM | 188 | {VK_FORMAT_R4G4_UNORM_PACK8}, // G4R4_UNORM |
| 189 | {VK_FORMAT_ASTC_4x4_SRGB_BLOCK}, // ASTC_2D_4X4_SRGB | 189 | {VK_FORMAT_ASTC_4x4_SRGB_BLOCK}, // ASTC_2D_4X4_SRGB |
| 190 | {VK_FORMAT_ASTC_8x8_SRGB_BLOCK}, // ASTC_2D_8X8_SRGB | 190 | {VK_FORMAT_ASTC_8x8_SRGB_BLOCK}, // ASTC_2D_8X8_SRGB |