diff options
| author | 2022-08-31 10:40:45 +0200 | |
|---|---|---|
| committer | 2022-08-31 10:40:45 +0200 | |
| commit | a83a5d2e4c8932df864dd4cea2b04d87a12c8760 (patch) | |
| tree | 53bd0ce10e965110c7811bd227443fd51e054eff /src/shader_recompiler/shader_info.h | |
| parent | Merge pull request #8809 from german77/finally_is_fixed (diff) | |
| parent | video_code: support rectangle texture (diff) | |
| download | yuzu-a83a5d2e4c8932df864dd4cea2b04d87a12c8760.tar.gz yuzu-a83a5d2e4c8932df864dd4cea2b04d87a12c8760.tar.xz yuzu-a83a5d2e4c8932df864dd4cea2b04d87a12c8760.zip | |
Merge pull request #8752 from vonchenplus/rectangle_texture
video_code: support rectangle texture
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index fd2ef5336..f5690805c 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -24,8 +24,9 @@ enum class TextureType : u32 { | |||
| 24 | ColorCube, | 24 | ColorCube, |
| 25 | ColorArrayCube, | 25 | ColorArrayCube, |
| 26 | Buffer, | 26 | Buffer, |
| 27 | Color2DRect, | ||
| 27 | }; | 28 | }; |
| 28 | constexpr u32 NUM_TEXTURE_TYPES = 8; | 29 | constexpr u32 NUM_TEXTURE_TYPES = 9; |
| 29 | 30 | ||
| 30 | enum class ImageFormat : u32 { | 31 | enum class ImageFormat : u32 { |
| 31 | Typeless, | 32 | Typeless, |