Hey,
I'm pretty new to programing with LWJGL. To begin working, I wanted to check which version of OpenGL LWJGL3 is running.
I used
GL11.glGetString(GL11.GL_VERSION)
and found out that I was running
2.1 INTEL-10.14.58
My MacBook Pro however is supporting OpenGL version 4.1 according to Apple's Website.
I recognized the issue when trying to specify a
#version 410
in the fragment shader which gave me an error, that the version was not supported.
Now my question is: Is it possible to manually define version that LWJGL is using?
(I tried the way it was described on the wiki
http://wiki.lwjgl.org/wiki/Version_selection, but it did not work for me)
Thanks already in advance!
String
