Compare commits
3 Commits
b747dcfb21
...
82fe146549
Author | SHA1 | Date |
---|---|---|
Cat Flynn | 82fe146549 | |
Cat Flynn | 6ca53a5329 | |
Cat Flynn | 892bec867c |
|
@ -49,9 +49,9 @@ vec4 denoise(sampler2D tex, vec2 uv, float sigma, float kSigma, float threshold)
|
|||
|
||||
void main()
|
||||
{
|
||||
float sigma = 2.0;
|
||||
float sigma = 2.5;
|
||||
float kSigma = 7.0;
|
||||
float threshold = 0.18;
|
||||
float threshold = 0.3;
|
||||
|
||||
FragColor = denoise(ourTexture, TexCoord, sigma, kSigma, threshold);
|
||||
//FragColor = texture(ourTexture, TexCoord);
|
||||
|
|
Loading…
Reference in New Issue