1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-04 10:26:31 -05:00

video_core: Fix SNORM texture buffer emulating error (#9001)

This commit is contained in:
Feng Chen
2022-11-04 14:39:42 +08:00
committed by GitHub
parent ece22fcbc7
commit 75596c07e0
23 changed files with 224 additions and 52 deletions

View File

@@ -29,6 +29,16 @@ enum class TextureType : u32 {
};
constexpr u32 NUM_TEXTURE_TYPES = 9;
enum class TexturePixelFormat : u32 {
A8B8G8R8_SNORM,
R8_SNORM,
R8G8_SNORM,
R16G16B16A16_SNORM,
R16G16_SNORM,
R16_SNORM,
OTHER
};
enum class ImageFormat : u32 {
Typeless,
R8_UINT,