You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'd like to report my problem with a VertexArray class.
Oglplus as a whole seems to work fine (I make use of Context, FragmentShader, VertexShader, Program classes and haven't had any issues with them) but my program terminates during creation of instance of VertexArray class.
Unhandled exception at 0x725DCB49 in OGLPlus-playground.exe: 0xC0000005: Access violation >executing location 0x00000000.
After debuging the program I found out it terminates in
I ended up commenting out two glfw-related lines out of pure desperation, while blindly looking for a fix and now the program doesn't terminate during the creation of VertexArray. Those two lines are:
Why would it behave like so? Shouldn't all functionality related to vertex arrays be available even in the lowest version of opengl?
Edit:
Even if I set major version to 4 and minor version to 5 (the highest supported by my video card) the error still persists. Only commenting out those two lines fixes the issue.
Hi,
I'd like to report my problem with a VertexArray class.
Oglplus as a whole seems to work fine (I make use of Context, FragmentShader, VertexShader, Program classes and haven't had any issues with them) but my program terminates during creation of instance of VertexArray class.
After debuging the program I found out it terminates in
of class
I am not sure if it matters but I use GLFW for creating the window/context and GLEW in Visual Studio 2013.
The text was updated successfully, but these errors were encountered: