Files
loop/shader/shadow/cap.vert
T

8 lines
173 B
GLSL

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