This commit is contained in:
Joshua Ashton 2023-04-08 00:56:07 +01:00
parent a8feba40a0
commit c0c161668b
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ void main()
vec3 value = vec3(
gold_noise(gl_FragCoord.xy, seed + 0.1),
gold_noise(gl_FragCoord.xy, seed + 0.2),
gold_noise(gl_FragCoord.xy, seed + 0.2)) * targetNits;
gold_noise(gl_FragCoord.xy, seed + 0.3)) * targetNits;
outColor = vec4(nitsToPq(value), 1.0);
}