diff options
author | David Robillard <d@drobilla.net> | 2023-05-27 12:41:25 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-27 12:41:25 -0400 |
commit | d93b810bc39ee5e7dc0a6cb0988ccc167c152646 (patch) | |
tree | a5cac4193c84cdccbf0ae011c72e8bf13abf3b48 /include/pugl/gl.h | |
parent | 70ca6e6138589c1c24ea3e22eff96cfbd1c06d34 (diff) | |
download | pugl-d93b810bc39ee5e7dc0a6cb0988ccc167c152646.tar.gz pugl-d93b810bc39ee5e7dc0a6cb0988ccc167c152646.tar.bz2 pugl-d93b810bc39ee5e7dc0a6cb0988ccc167c152646.zip |
Separate pugl/glu.h from pugl/gl.h
The GLU library is often shipped in a separate package, so it's possible to
have a system with GL, but no GLU headers. Since use of GLU isn't
universal (none of the examples use it), its inclusion can break builds that
would otherwise work. So, move it to a separate wrapper header so this can be
avoided.
Diffstat (limited to 'include/pugl/gl.h')
-rw-r--r-- | include/pugl/gl.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/pugl/gl.h b/include/pugl/gl.h index 1298ff6..efb22f3 100644 --- a/include/pugl/gl.h +++ b/include/pugl/gl.h @@ -22,17 +22,6 @@ # endif #endif -#ifndef PUGL_NO_INCLUDE_GLU_H -# ifdef __APPLE__ -# include <OpenGL/glu.h> -# else -# ifdef _WIN32 -# include <windows.h> -# endif -# include <GL/glu.h> -# endif -#endif - // IWYU pragma: end_exports PUGL_BEGIN_DECLS |