stevenarella/src/render/shaders/trans_vertex.glsl

6 lines
75 B
Plaintext
Raw Normal View History

2016-03-16 13:33:06 -04:00
in vec2 aPosition;
void main() {
gl_Position = vec4(aPosition,0,1);
}