Reputation: 2004
I have noticed that there are multiple GL libraries labeled GL11, GL12,GL13,GL14 and so on, i know the number is associated with the version number. I tried looking up the differences between the version numbers on google with no luck.
Would anybody mind explaining the differences, advantages, dis-advantages, and their recommendation?
Upvotes: 2
Views: 213
Reputation: 842
Those are not different OpenGL libraries, but basically LWJGL classes that contain OpenGL methods depending on which version of OpenGL that method was introduced in. So basically you could be using OpenGL 4.2 (GL42) but still need methods introduced in OpenGL 1.1 (GL11). Its just a way of organisation that will tell you when that method was added to OpenGL.
Upvotes: 4