mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 03:39:56 +00:00
16 lines
177 B
GLSL
16 lines
177 B
GLSL
#version 450
|
|
|
|
in float v0;
|
|
in float v1;
|
|
out float FragColor;
|
|
|
|
void main()
|
|
{
|
|
float a = v0;
|
|
float b = v1;
|
|
float _17 = a;
|
|
a = v1;
|
|
FragColor = (_17 + b) * b;
|
|
}
|
|
|