mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: 9ccd1aea4201ff5d79c09808567348d0d3ab0452
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;
|
|
}
|
|
|