Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am sure that everything is linked correcly. I initially was using glload and glfw from the Unofficial GLSDK but then I decided to do away with glload which meant that I had to use glew in order to get at the modern headers.

#include <GL/glew.h>
#include <GL/glfw.h>

I have included glew before glfw as per the instructions.

During run time the OpenGL window opens

//(relevant code)
if(!glewInit()) {return -1; }
if(!glfwInit()) {return -1; }
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MAJOR, 3);
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MINOR, 2);
glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// also tried glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);

if(!glfwOpenWindow(1024, 768, 8, 8, 8, 8, 24, 8, GLFW_WINDOW)){
    glfwTerminate();
    return -1;
}

glfwSetWindowTitle("OpenGL 3.2");

//init method
glGenVertexArrays(1, &vao);  //<<  Access violation here.

Any ideas what my problem is here?

I have looked at. "Access violation using VBO with glew" But it was no help.

share|improve this question

1 Answer

up vote 2 down vote accepted

glewInit is to be called after a OpenGL context has been created and bound to the curren thread, i.e. after glfwOpenWindow in your case.

share|improve this answer
Thank you I moved that like you said. if(!glewInit()) {return -1; } was incorrect to I need to check the value it returns. as its not a bool – Andrew Dec 19 '12 at 1:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.