Skip to content
Snippets Groups Projects
Unverified Commit 7aa7d8f4 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2085 from ReinUsesLisp/cube-minus-one

video_core/texture: Fix BitField size for depth_minus_one
parents 72c70d68 b5e685b2
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment