Compare commits

..

3 Commits

Author SHA1 Message Date
Cat Flynn b747dcfb21 update window dimensions 2023-02-26 03:28:36 +00:00
Cat Flynn 424029f58b apply gamma correction 2023-02-26 03:28:26 +00:00
Cat Flynn 9b85cf18a2 tune denoise 2023-02-26 03:27:52 +00:00
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ vec4 denoise(sampler2D tex, vec2 uv, float sigma, float kSigma, float threshold)
void main() void main()
{ {
float sigma = 2.5; float sigma = 2.0;
float kSigma = 7.0; float kSigma = 7.0;
float threshold = 0.3; float threshold = 0.18;
FragColor = denoise(ourTexture, TexCoord, sigma, kSigma, threshold); FragColor = denoise(ourTexture, TexCoord, sigma, kSigma, threshold);
//FragColor = texture(ourTexture, TexCoord); //FragColor = texture(ourTexture, TexCoord);