summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorRodolfo Bogado <rodolfoosvaldobogado@gmail.com>2018-11-07 04:25:16 +0100
committerRodolfo Bogado <rodolfoosvaldobogado@gmail.com>2018-11-11 20:31:00 +0100
commite9610ec0dd3d47ae7dc2b14932faef0318d36125 (patch)
treede37e454dba87fd1e1e20c260a0f6876910ed881 /src/video_core/textures
parentMerge pull request #1669 from ReinUsesLisp/fixup-gs (diff)
downloadyuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar.gz
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar.bz2
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar.lz
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar.xz
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.tar.zst
yuzu-e9610ec0dd3d47ae7dc2b14932faef0318d36125.zip
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/texture.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index d12d2ecb8..e199d019a 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -168,20 +168,29 @@ struct TICEntry {
// High 16 bits of the pitch value
BitField<0, 16, u32> pitch_high;
-
+ BitField<26, 1, u32> use_header_opt_control;
+ BitField<27, 1, u32> depth_texture;
BitField<28, 4, u32> max_mip_level;
};
union {
BitField<0, 16, u32> width_minus_1;
BitField<22, 1, u32> srgb_conversion;
BitField<23, 4, TextureType> texture_type;
+ BitField<29, 3, u32> border_size;
};
union {
BitField<0, 16, u32> height_minus_1;
BitField<16, 15, u32> depth_minus_1;
};
+ union {
+ BitField<6, 13, u32> mip_lod_bias;
+ BitField<27, 3, u32> max_anisotropy;
+ };
- INSERT_PADDING_BYTES(8);
+ union {
+ BitField<0, 4, u32> res_min_mip_level;
+ BitField<4, 4, u32> res_max_mip_level;
+ };
GPUVAddr Address() const {
return static_cast<GPUVAddr>((static_cast<GPUVAddr>(address_high) << 32) | address_low);