old-Testgame/shaders/triangle.v.glsl

5 lines
85 B
Text
Raw Normal View History

2016-08-28 09:31:10 +00:00
attribute vec2 coord2d;
void main(void) {
gl_Position = vec4(coord2d, 0.0, 1.0);
}