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

13 lines
180 B
GLSL

#version 140
attribute vec4 color;
out vec4 colorOut[6];
void main()
{
for (int i = 1; i < 5; ++i)
colorOut[i] = color;
gl_Position = colorOut[2];
}