I was just looking through the OpenGL updates on OS X Lion when I found something that now has me scared to use glext.h.
So, here's the bug. Lion's OpenGL.framework has a glext.h with the following definition.
typedef void *GLhandleARB;
But the glext.h from the OpenGL registry has the following instead.
typedef unsigned int GLhandleARB;
Now, the trouble is that when building for x86_64 on Lion we have sizeof(void*)==8, but sizeof(unsigned int)==4. So what do you trust? Lion's header? Or the OpenGL registry's header? Well, of course you trust the system headers, because apparently they claim to know that the ABI on 64-bit Lion has a 64-bit GLhandleARB type.
Now, this raises a few issues in my mind about various platforms:
If you must use Apple's
glext.h, but Apple'sglext.hdoesn't provide access to anything later than OpenGL 2.1, then how do you get at 3.0+ features on newer cards?Is it unsafe to use the OpenGL registry's
glext.hon Linux? Or must you use the system'sglext.hthere as well? In that case, question #1 applies here as well.How the heck do you handle things on Windows, where there is never a
glext.hon the system? You clearly can't use a driver vendor'sglext.h, because different vendors may disagree on the sizes of various types. (Or is that not true?) What's the deal here?
GLhandleARBin one place and an explicitvoid*somewhere else), there's no problem. – Chris Aug 10 '11 at 1:16