Unresolved glGenVertexArrays and glBindVertexArray

1.7k Views Asked by At

I am trying to render a cube in opengl using vertex array objects. The same code works on a linux box but doesnt work on a windows machine. I get unresolved external error while using glGenVertexArrays and glBindVertexArray.

glewInfo.exe reports glGenVertexArrays and glBindVertexArray are usable:

GL_ARB_vertex_array_object:                                    OK 
---------------------------
  glBindVertexArray:                                           OK
  glDeleteVertexArrays:                                        OK
  glGenVertexArrays:                                           OK
  glIsVertexArray:                                             OK
1

There are 1 best solutions below

1
On

Likely you're not using the correct opengl.dll lib. Windows comes with a software renderer by default, you might be using that one.

Check out the websites of your graphics card vendor for the proper library.