mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:29:59 +00:00
Merge pull request #9108 from Morph1984/r32-b24g8
format_lookup_table: Implement R32_B24G8 with D32_FLOAT_S8_UINT
This commit is contained in:
commit
49682a0481
1 changed files with 2 additions and 0 deletions
|
@ -150,6 +150,8 @@ PixelFormat PixelFormatFromTextureInfo(TextureFormat format, ComponentType red,
|
||||||
return PixelFormat::D24_UNORM_S8_UINT;
|
return PixelFormat::D24_UNORM_S8_UINT;
|
||||||
case Hash(TextureFormat::D32S8, FLOAT, UINT, UNORM, UNORM, LINEAR):
|
case Hash(TextureFormat::D32S8, FLOAT, UINT, UNORM, UNORM, LINEAR):
|
||||||
return PixelFormat::D32_FLOAT_S8_UINT;
|
return PixelFormat::D32_FLOAT_S8_UINT;
|
||||||
|
case Hash(TextureFormat::R32_B24G8, FLOAT, UINT, UNORM, UNORM, LINEAR):
|
||||||
|
return PixelFormat::D32_FLOAT_S8_UINT;
|
||||||
case Hash(TextureFormat::BC1_RGBA, UNORM, LINEAR):
|
case Hash(TextureFormat::BC1_RGBA, UNORM, LINEAR):
|
||||||
return PixelFormat::BC1_RGBA_UNORM;
|
return PixelFormat::BC1_RGBA_UNORM;
|
||||||
case Hash(TextureFormat::BC1_RGBA, UNORM, SRGB):
|
case Hash(TextureFormat::BC1_RGBA, UNORM, SRGB):
|
||||||
|
|
Loading…
Reference in a new issue