mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-20 18:52:49 +00:00
5 lines
100 B
GLSL
5 lines
100 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
SetOutput(float4(c0.r * 1.5, c0.g, c0.b * 0.5, c0.a));
|
|
}
|