summaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorGravatar FernandoS272018-11-16 13:01:54 -0400
committerGravatar FernandoS272018-11-26 09:05:12 -0400
commitddfbe0b58d856ae4a62683943cb35c2ae8f13b95 (patch)
tree51210c339a0aabe9e86eb3b830262ffa53eb2b57 /src/video_core/textures/texture.h
parentMerge pull request #1763 from ReinUsesLisp/bfi (diff)
downloadyuzu-ddfbe0b58d856ae4a62683943cb35c2ae8f13b95.tar.gz
yuzu-ddfbe0b58d856ae4a62683943cb35c2ae8f13b95.tar.xz
yuzu-ddfbe0b58d856ae4a62683943cb35c2ae8f13b95.zip
Implemented Tile Width Spacing
Diffstat (limited to 'src/video_core/textures/texture.h')
-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 ffa08f5c1..e7c78bee2 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -166,6 +166,8 @@ struct TICEntry {
166 BitField<3, 3, u32> block_height; 166 BitField<3, 3, u32> block_height;
167 BitField<6, 3, u32> block_depth; 167 BitField<6, 3, u32> block_depth;
168 168
169 BitField<10, 3, u32> tile_width_spacing;
170
169 // High 16 bits of the pitch value 171 // High 16 bits of the pitch value
170 BitField<0, 16, u32> pitch_high; 172 BitField<0, 16, u32> pitch_high;
171 BitField<26, 1, u32> use_header_opt_control; 173 BitField<26, 1, u32> use_header_opt_control;