Add -fsigned-bitfields for defined bitfield int behavior

We want consistent behavior between signed `int`s in bitfields and outside of bitfields, the `-fsigned-bitfields` flag enforces this behavior.
This commit is contained in:
PixelyIon
2021-12-28 12:34:06 +05:30
parent 87c8dc94d2
commit a9aa16798f
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ namespace skyline::gpu::interconnect {
u32 cubemapAnisotropy : 1;
u32 cubemapInterfaceFiltering : 1;
SamplerReduction reductionFilter : 2;
signed int mipLodBias : 13;
i32 mipLodBias : 13;
u32 floatCoordNormalization : 1;
u32 trilinearOptimization : 5;
u32 _pad2_ : 1;