Tagged Questions
2
votes
2answers
280 views
VBO triangle not rendered using Freeglut Opengl 3.x, not understanding the weird fixes
I've just started to learn OpenGL 3 and I'm using freeglut for the context. I ask for a 3.3 context using:
glutInitContextVersion(3,3);
glutInitContextFlags(GLUT_FORWARD_COMPATIBLE | GLUT_DEBUG);
I ...