sockscape/resources/client/shaders/test.vert

5 lines
83 B
GLSL
Raw Permalink Normal View History

2018-09-13 22:11:09 +00:00
attribute vec2 aPosition;
2018-08-16 21:39:13 +00:00
void main() {
2018-09-13 22:11:09 +00:00
gl_Position = vec4(aPosition, 0, 1);
2018-08-16 21:39:13 +00:00
}