SFML community forums

General => General discussions => Topic started by: graphitemaster on October 13, 2010, 08:03:31 am

Title: SFML needs a glGetProcAddress();
Post by: graphitemaster on October 13, 2010, 08:03:31 am
This has been bugging me for quite some time, SFML does not have it's own variant of glGetProcAddress(), which can be really annoying at times, especially when coding minimal applications that greatly depend on the use of OpenGL extensions.

As far as I remember SDL has it's own glGetProcAddress(), and it's just a macro hack really, my game engine has its own I wrote nothing hard at all, putting this somewhere in the source, such as inside a Tools.hpp file or something could clean up 9% of SFML's platforms specific glX() and wgl() calls to get proc addresses from GL.

Pasted below is my version of a simple work around for this, note other platforms that come and go, just need their own #ifdef #endif

#ifdef WIN32
   #define glGetProcAddress(a) wglGetProcAddress(a)
#endif
#ifdef X11
   #define glGetProcAddress(a) glXGetProcAddress((const uchar*)a)
#endif

Now for those whoa re wondering about the cast, it has to be done like this because of the way X11 expects it's arguments, do note that uchar ( is a unsigned char ) I have all unsiged types typedefed in my code, because it gets repetitive writing things like:
const unsigned long:

Which would be cool if SFML did for you to, it'll make programming things for beginners a heck of a lot simpler, since they don't have to manually typedef things, note even OpenGL has it's own types, why can't SFML not?
Title: SFML needs a glGetProcAddress();
Post by: Laurent on October 13, 2010, 08:16:44 am
SFML doesn't handle OpenGL extensions, there are already good libraries dedicated to this job (GLEW, GLEE).
Title: SFML needs a glGetProcAddress();
Post by: graphitemaster on October 13, 2010, 08:58:58 am
Quote from: "Laurent"
SFML doesn't handle OpenGL extensions, there are already good libraries dedicated to this job (GLEW, GLEE).


BOTH BAD LIBRARIES, REALLY BAD LIBRARIES
GLEW, and GLEE, are the worst things anyone
could, and should ever use.
Title: SFML needs a glGetProcAddress();
Post by: Laurent on October 13, 2010, 09:18:31 am
Quote from: "graphitemaster"
BOTH BAD LIBRARIES, REALLY BAD LIBRARIES
GLEW, and GLEE, are the worst things anyone
could, and should ever use.

Can you tell us why?
Title: SFML needs a glGetProcAddress();
Post by: Tank on October 13, 2010, 10:10:46 pm
I think it's out of SFML's scope.
Title: Re: SFML needs a glGetProcAddress();
Post by: Tuffywub on April 07, 2013, 06:42:23 pm
I know this is an old topic, but as far as I can tell, this doesn't exist. I think it would be a great, simple feature to add. I can do it with macros too, but it would be nice if this was done internally.
Title: Re: SFML needs a glGetProcAddress();
Post by: Laurent on April 07, 2013, 07:23:59 pm
Unless you have new arguments, my answer is still the same as above.