RetroArch Pack
This commit is contained in:
18
system/dolphin-emu/Sys/Shaders/posterize2.glsl
Normal file
18
system/dolphin-emu/Sys/Shaders/posterize2.glsl
Normal file
@@ -0,0 +1,18 @@
|
||||
float bound(float color)
|
||||
{
|
||||
if (color < 0.35)
|
||||
{
|
||||
if (color < 0.25)
|
||||
return color;
|
||||
|
||||
return 0.5;
|
||||
}
|
||||
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
float4 c0 = Sample();
|
||||
SetOutput(float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a));
|
||||
}
|
||||
Reference in New Issue
Block a user