mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
maxwell_3d: Mark shifted value as unsigned
Otherwise this is technically creating a signed int result that gets converted. Just a consistency change. While we're in the area, we can mark Samples() as const.
This commit is contained in:
parent
d7ec031419
commit
96ffc174aa
1 changed files with 3 additions and 3 deletions
|
@ -184,7 +184,7 @@ public:
|
||||||
default:
|
default:
|
||||||
// Thresholds begin at 0x10 (1 << 4)
|
// Thresholds begin at 0x10 (1 << 4)
|
||||||
// Threshold is in the range 0x1 to 0x13
|
// Threshold is in the range 0x1 to 0x13
|
||||||
return 1 << (4 + threshold.Value() - 1);
|
return 1U << (4 + threshold.Value() - 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -822,11 +822,11 @@ public:
|
||||||
struct CompressionThresholdSamples {
|
struct CompressionThresholdSamples {
|
||||||
u32 samples;
|
u32 samples;
|
||||||
|
|
||||||
u32 Samples() {
|
u32 Samples() const {
|
||||||
if (samples == 0) {
|
if (samples == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return 1 << (samples - 1);
|
return 1U << (samples - 1);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue