-
OpenGL 3.x/4.x headers on linux mint?
Hello, when I am trying to create a program using GLFW 3.x (it was A PAIN to compile and work) on linux and syntax such as glGenVertexArrays(); they aren't being found. I have installed (barely managed) nvidia's 319 proprietary drivers for my GTX 760 graphics card with the --opengl-headers flag which installs the included gl.h. I also have ALL the dev files for OpenGL/mesa
Despite this, this is what I get:
main.cpp: In function ‘int main()’:
main.cpp:18:27: error: ‘glGenVertexArrays’ was not declared in this scope
main.cpp:19:35: error: ‘glBindBuffer’ was not declared in this scope
NOTE: GLFW 3.0 automatically loads GL/gl.h. I know it works since something like glClear(); is recognized. I can provide my code if needed.
If I include GL/glew.h before GLFW/glfw3.h (since glfw3 detects header includes put before it, and gives me a slew of additional errors if its put after glfw3) I will get this:
/tmp/ccUn7ZJ0.o: In function `main':
main.cpp: (.text+0x4b): undefined reference to `__glewGenVertexArrays'
main.cpp: (.text+0x5e): undefined reference to `__glewBindBuffer'
Running Linux Mint 15 olivia + GTX 760 (319 latest drivers from official site).
Thanks.
Last edited by cellsheet; 07-16-2013 at 05:57 PM.
Reason: including glew error's
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules