stevenarella/src/render/shaders/trans_vertex.glsl

6 lines
75 B
GLSL

in vec2 aPosition;
void main() {
gl_Position = vec4(aPosition,0,1);
}