nigels-com / glew

The OpenGL Extension Wrangler Library
Other
2.58k stars 609 forks source link

glew will initialize but will still crash program in visual studio when using certain functions like #336

Closed Jason24013 closed 2 years ago

Jason24013 commented 2 years ago
    GLuint vao;
    glGenVertexArrays(1, &vao);
    glBindVertexArray(vao);
nigels-com commented 2 years ago

It's necessary to check for the extensions.

See: http://glew.sourceforge.net/basic.html

nigels-com commented 2 years ago

Any further information on this?