[TEST] Adjusting sRGB formula

This commit is contained in:
CamilleLaVey
2026-07-05 20:46:33 -04:00
parent bfdc50ee76
commit a7d274e5bd
@@ -1407,9 +1407,8 @@ void DecompressBlock(ivec3 coord) {
vec4((C0 * (uvec4(64) - weight_vec) + C1 * weight_vec + uvec4(32)) / 64);
p = Cf / 65535.0f;
#ifdef VULKAN
if (is_srgb != 0u) {
p.yzw = SRGBToLinear(p.yzw);
}
// Another test
p.yzw = mix(p.yzw, SRGBToLinear(p.yzw), bvec3(is_srgb != 0u));
#endif
}