mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Update posterize2.glsl
This commit is contained in:
@ -5,20 +5,19 @@ in vec2 uv0;
|
||||
|
||||
float bound(float color)
|
||||
{
|
||||
if (color < 0.35)
|
||||
{
|
||||
if (color < 0.25)
|
||||
if (color < 0.35)
|
||||
{
|
||||
return color;
|
||||
if (color < 0.25)
|
||||
return color;
|
||||
|
||||
return 0.5;
|
||||
}
|
||||
return 0.5;
|
||||
}
|
||||
return 1.0;
|
||||
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
float4 c0 = texture(samp9, uv0);
|
||||
ocol0 = float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a);
|
||||
float4 c0 = texture(samp9, uv0);
|
||||
ocol0 = float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user