mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
5 lines
95 B
GLSL
5 lines
95 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
SetOutput(float4(c0.r * 1.5, c0.g, c0.b * 0.5, c0.a));
|
|
}
|