Files
loop/shader/dualTwoD/ellipse.vert
T
2025-11-13 21:13:13 +00:00

11 lines
225 B
GLSL

#version 450 core
layout (location = 0) in vec3 pos;
layout (location = 1) in vec4 col;
layout (std140, binding = 0) uniform TheMat { mat4 theMat; } ;
out vec4 vCol;
void main()
{
gl_Position = vec4(pos,1);
vCol = col;
}