summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-28 01:21:17 +0100
committerGitHub <noreply@github.com>2018-11-28 01:21:17 +0100
commit881f5ad70f8500035d6e22000d010b58bfbe93b7 (patch)
tree94984ecf8cfe2819ba262431a4ac0a0cb27f1d96 /src/video_core/textures/texture.h
parentMerge pull request #1814 from lioncash/ptr (diff)
parentImplemented Tile Width Spacing (diff)
downloadyuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar.gz
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar.bz2
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar.lz
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar.xz
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.tar.zst
yuzu-881f5ad70f8500035d6e22000d010b58bfbe93b7.zip
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 {
BitField<3, 3, u32> block_height;
BitField<6, 3, u32> block_depth;
+ BitField<10, 3, u32> tile_width_spacing;
+
// High 16 bits of the pitch value
BitField<0, 16, u32> pitch_high;
BitField<26, 1, u32> use_header_opt_control;