opengl-triangle

Basic application that draws triangle on a window using opengl
Index Commits Files Refs
main.vert (122B)
   1 #version 330 core
   2 
   3 layout (location = 0) in vec3 aPos;
   4 
   5 void main() {
   6     gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
   7 }