mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-22 15:40:02 +00:00
Update posterize.glsl
This commit is contained in:
parent
4c1ef9ba80
commit
8ddad21abc
@ -5,25 +5,19 @@ in vec2 uv0;
|
|||||||
|
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
float4 c0 = texture(samp9, uv0).rgba;
|
float4 c0 = texture(samp9, uv0).rgba;
|
||||||
float red = 0.0;
|
float red = 0.0;
|
||||||
float green = 0.0;
|
float green = 0.0;
|
||||||
float blue = 0.0;
|
float blue = 0.0;
|
||||||
|
|
||||||
if (c0.r > 0.25)
|
if (c0.r > 0.25)
|
||||||
{
|
red = c0.r;
|
||||||
red = c0.r;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (c0.g > 0.25)
|
if (c0.g > 0.25)
|
||||||
{
|
green = c0.g;
|
||||||
green = c0.g;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (c0.b > 0.25)
|
if (c0.b > 0.25)
|
||||||
{
|
blue = c0.b;
|
||||||
blue = c0.b;
|
|
||||||
}
|
|
||||||
|
|
||||||
ocol0 = float4(red, green, blue, 1.0);
|
ocol0 = float4(red, green, blue, 1.0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user