I want to use the functions exposed under the OpenGL extensions. I'm on Windows, how do I do this?
|
Easy solution: Use GLEW. See how here. Hard solution: If you have a really strong reason not to use GLEW, here's how to achieve the same without it: Identify the OpenGL extension and the extension APIs you wish to use. OpenGL extensions are listed in the OpenGL Extension Registry.
Check if your graphic card supports the extension you wish to use. If it does, then your work is almost done! Download and install the latest drivers and SDKs for your graphics card.
Your graphic card manufacturer provides a glext.h header file (or a similarly named header file) with all the declarations needed to use the supported OpenGL extensions. (Note that not all extensions might be supported.) Either place this header file somewhere your compiler can pick it up or include its directory in your compiler's include directories list. Add a Open glext.h, find the API you wish to use and grab its corresponding ugly-looking declaration.
All this means is that your header file has the API declaration in 2 forms. One is a wgl-like ugly function pointer declaration. The other is a sane looking function declaration. For each extension API you wish to use, add in your code declarations of the function name as a type of the ugly-looking string.
Though it looks ugly, all we're doing is to declare function pointers of the type corresponding to the extension API. Initialize these function pointers with their rightful functions. These functions are exposed by the library or driver. We need to use wglGetProcAddress() function to do this.
|
||||
|
|
|
A 'Very strong reason' not to use GLEW might be that the library is not supported by your compiler/IDE. E.g: Borland C++ Builder. In that case, you might want to rebuild the library from source. If it works, great, otherwise manual extension loading isnt as bad as it is made to sound. |
|||
|
|
|
@Kronikarz: From the looks of it, GLEW seems to be the way of the future. NVIDIA already ships it along with its OpenGL SDK. And its latest release was in 2007 compared to GLEE which was in 2006. But, the usage of both libraries looks almost the same to me. (GLEW has an init() which needs to be called before anything else though.) So, you don't need to switch unless you find some extension not being supported under GLEE. |
|||
|
|
|
GL3W is a public-domain script that creates a library which loads only core functionality for OpenGL 3/4. It can be found on github at: https://github.com/skaslev/gl3w GL3W requires Python 2.6 to generate the libraries and headers for OpenGL; it does not require Python after that. |
||||
|
|
