summaryrefslogtreecommitdiff
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-20 23:41:25 -0400
committerGravatar bunnei2018-09-30 14:31:58 -0400
commitf543b43fd054ae9ec1e4d693a9bd1540e408ddac (patch)
tree25ad751cf70c87c7e7ef7f9345bb680365eb8929 /src/video_core/textures
parentgl_shader_decompiler: TEXS: Implement TextureType::TextureCube. (diff)
downloadyuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.gz
yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.tar.xz
yuzu-f543b43fd054ae9ec1e4d693a9bd1540e408ddac.zip
gl_rasterizer_cache: Implement render to cubemap.
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/texture.h2
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 {
165 165
166 // High 16 bits of the pitch value 166 // High 16 bits of the pitch value
167 BitField<0, 16, u32> pitch_high; 167 BitField<0, 16, u32> pitch_high;
168
169 BitField<28, 4, u32> max_mip_level;
168 }; 170 };
169 union { 171 union {
170 BitField<0, 16, u32> width_minus_1; 172 BitField<0, 16, u32> width_minus_1;