diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-21 05:41:25 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-09-30 20:31:58 +0200 |
commit | f543b43fd054ae9ec1e4d693a9bd1540e408ddac (patch) | |
tree | 25ad751cf70c87c7e7ef7f9345bb680365eb8929 /src/video_core/textures/texture.h | |
parent | gl_shader_decompiler: TEXS: Implement TextureType::TextureCube. (diff) | |
download | yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.gz yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.bz2 yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.lz yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.xz yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.zst yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.zip |
Diffstat (limited to 'src/video_core/textures/texture.h')
-rw-r--r-- | src/video_core/textures/texture.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h index c2fb824b2..14aea4838 100644 --- a/src/video_core/textures/texture.h +++ b/src/video_core/textures/texture.h @@ -165,6 +165,8 @@ struct TICEntry { // High 16 bits of the pitch value BitField<0, 16, u32> pitch_high; + + BitField<28, 4, u32> max_mip_level; }; union { BitField<0, 16, u32> width_minus_1; |