Portal:Development Tools/OpenGL Function Loading: Difference between revisions
Jump to navigation
Jump to search
Better loading library info. |
New versions. |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
OpenGL loading libraries automate the process of [[Load OpenGL Functions|loading OpenGL functions]]. | OpenGL loading libraries automate the process of [[Load OpenGL Functions|loading OpenGL functions]]. | ||
Line 9: | Line 7: | ||
|- | |- | ||
| [[Tools/GLEW|GLEW]] | | [[Tools/GLEW|GLEW]] | ||
| 1. | | 1.10.0 | ||
| An OpenGL loading library which loads all core versions and extensions. | | An OpenGL loading library which loads all core versions and extensions. Supports OpenGL 4.4. | ||
|- | |- | ||
| [https://github.com/shakesoda/gl3w gl3w] | | [https://github.com/shakesoda/gl3w gl3w] | ||
Line 17: | Line 15: | ||
|- | |- | ||
| [[Tools/OpenGL Loader Generator|OpenGL Loader Generator]] | | [[Tools/OpenGL Loader Generator|OpenGL Loader Generator]] | ||
| | | 2.0.0 | ||
| A tool for generating OpenGL loaders that includes the exact version/extensions you want, and ''only'' them. | | A tool for generating OpenGL loaders that includes the exact version/extensions you want, and ''only'' them. Supports OpenGL 4.4 | ||
|} | |} |
Latest revision as of 00:26, 27 July 2013
OpenGL loading libraries automate the process of loading OpenGL functions.
Name | Version | Description |
---|---|---|
GLEW | 1.10.0 | An OpenGL loading library which loads all core versions and extensions. Supports OpenGL 4.4. |
gl3w | N/A | A tool for generating OpenGL loading code for core 4.6 functions. |
OpenGL Loader Generator | 2.0.0 | A tool for generating OpenGL loaders that includes the exact version/extensions you want, and only them. Supports OpenGL 4.4 |