Hello, I am using OpenGL to work on graphics and all
I'm using VBO method to generate buffers and do the rest but when I try to do that
specifically when I call the function glGenBuffers, it crashes and it tells me there's a violation of memory or something at address 0x0000000 or something
When I comment "glGenBuffers", the program works just fine
I initialized Glew properly and it works perfectly, I did a check and it equals GLEW_OK
I searched over Google and many people had the same problem as me and most of the solutions presented didn't work for me, I don't know if there's a problem with hardware or something.
My "glGenBuffers" function is as follows:
|
glGenBuffers(1, &_vboID);
| |
I am following this tutorial:
https://www.youtube.com/watch?v=W_OctRsu754
Each piece of my code is similar to this tutorial, can anyone offer me help?
And thanks in advance