mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
video_core/texture: Fix BitField size for depth_minus_one
This commit is contained in:
parent
bb4549a73d
commit
b5e685b297
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ struct TICEntry {
|
|||
};
|
||||
union {
|
||||
BitField<0, 16, u32> height_minus_1;
|
||||
BitField<16, 15, u32> depth_minus_1;
|
||||
BitField<16, 14, u32> depth_minus_1;
|
||||
};
|
||||
union {
|
||||
BitField<6, 13, u32> mip_lod_bias;
|
||||
|
|
Loading…
Reference in a new issue