| OLD | NEW |
| 1 Name: The OpenGL Extension Wrangler Library |
| 2 URL: http://glew.sourceforge.net |
| 3 License File: LICENSE.txt |
| 4 |
| 1 This is Chrome's local copy of the GLEW library, which is currently | 5 This is Chrome's local copy of the GLEW library, which is currently |
| 2 used to interface to OpenGL and extensions to implement the WebGL | 6 used to interface to OpenGL and extensions to implement the WebGL |
| 3 specification. | 7 specification. |
| 4 | 8 |
| 5 Compared to the original distribution: | 9 Compared to the original distribution: |
| 6 | 10 |
| 7 - GLEW was changed to dynamically look up the OpenGL 1.1 entry | 11 - GLEW was changed to dynamically look up the OpenGL 1.1 entry |
| 8 points in addition to those for later OpenGL versions and | 12 points in addition to those for later OpenGL versions and |
| 9 extensions. This was necessary to be able to stop linking directly | 13 extensions. This was necessary to be able to stop linking directly |
| 10 against libGL.so on Linux due to http://crbug.com/16800 . | 14 against libGL.so on Linux due to http://crbug.com/16800 . |
| 11 | 15 |
| 12 - The implementation of NSGLGetProcAddress has been changed to use | 16 - The implementation of NSGLGetProcAddress has been changed to use |
| 13 the standard dlfcn.h functions rather than the deprecated | 17 the standard dlfcn.h functions rather than the deprecated |
| 14 mach-o/dyld.h ones. | 18 mach-o/dyld.h ones. |
| 15 | 19 |
| 16 - A GLEW_NO_GLU #define was added to prevent including GL/glu.h. | 20 - A GLEW_NO_GLU #define was added to prevent including GL/glu.h. |
| 17 | 21 |
| 18 Originally obtained from http://glew.sourceforge.net/ . The | 22 Originally obtained from http://glew.sourceforge.net/ . The |
| 19 LICENSE.txt from that distribution has been preserved here. | 23 LICENSE.txt from that distribution has been preserved here. |
| OLD | NEW |