mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Posterize2
This commit is contained in:
parent
11c0e63895
commit
2ef33c9158
1 changed files with 21 additions and 0 deletions
21
posterize2.txt
Normal file
21
posterize2.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
uniform samplerRECT samp0 : register(s0);
|
||||
|
||||
inline float bound(float color)
|
||||
{
|
||||
if (color < 0.35)
|
||||
{
|
||||
if (color < 0.25)
|
||||
{
|
||||
return color;
|
||||
}
|
||||
return 0.5;
|
||||
}
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
|
||||
{
|
||||
float4 c0 = texRECT(samp0, uv0 + float2(0,0)).rgba;
|
||||
ocol0 = float4(bound(c0.r), bound(c0.g), bound(c0.b), c0.a);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue