aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-30 21:19:00 -0400
committerGitHub <noreply@github.com>2018-09-30 21:19:00 -0400
commit8391048a83e04c44df3d26bc04e97a5795aa17c4 (patch)
treef00fe6d2bd31558519512382832821b9c263875f /src/video_core/textures
parentdecc3196348aefa9a4d58bd317461e4fa0788294 (diff)
parentdf3799a00899a76a0b4adc9f93af403101b2332d (diff)
Merge pull request #1322 from bunnei/tex-cubemap
gl_rasterizer_cache: Implement cubemap textures.
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 {
// 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;