bloat-buster/dependencies/glslang-15.0.0/Test/spv.noDeadDecorations.vert
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

14 lines
147 B
GLSL

#version 310 es
precision mediump float;
float func(float a)
{
return -a;
a = a * -1.0;
}
void main()
{
gl_Position.x = func(0.0);
}