Browse Source
Merge pull request #2085 from ReinUsesLisp/cube-minus-one
video_core/texture: Fix BitField size for depth_minus_one
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/textures/texture.h
|
|
|
@ -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; |
|
|
|
|