Files
FluckyGameOpenGL/res/basicShader.vert
Daniel Brunner 8a48c28fb5 Added Shader
2017-08-16 21:43:48 +02:00

9 lines
95 B
GLSL

#version 120
attribute vec3 position;
void main()
{
gl_Position = vec4(position, 1.0);
}