summaryrefslogtreecommitdiff
path: root/FL/gl.h
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-27 08:06:33 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-27 08:06:33 +0100
commitacf7254fe8337e8b06462555d09d6521723c2024 (patch)
tree5a4abed33741165832a40c42760ea5ddaba33900 /FL/gl.h
parentbcb739f17f2036ce30ed5cd58627841b59190ea3 (diff)
macOS+OpenGL3: remove "warning: gl.h and gl3.h are both included"
Diffstat (limited to 'FL/gl.h')
-rw-r--r--FL/gl.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/FL/gl.h b/FL/gl.h
index a30d2ea75..10eb05e05 100644
--- a/FL/gl.h
+++ b/FL/gl.h
@@ -55,7 +55,9 @@
# endif
# ifdef __APPLE__ // PORTME: OpenGL path abstraction
-# include <OpenGL/gl.h>
+# if !defined(__gl3_h_) // make sure OpenGL/gl3.h was not included before
+# include <OpenGL/gl.h>
+# endif
# else
# include <GL/gl.h>
# endif // __APPLE__ // PORTME: OpenGL Path abstraction
@@ -68,11 +70,7 @@ FL_EXPORT void gl_color(Fl_Color i);
inline void gl_color(int c) {gl_color((Fl_Color)c);}
FL_EXPORT void gl_rect(int x,int y,int w,int h);
-/**
- Fills the given rectangle with the current color.
- \see gl_rect(int x, int y, int w, int h)
- */
-inline void gl_rectf(int x,int y,int w,int h) {glRecti(x,y,x+w,y+h);}
+FL_EXPORT void gl_rectf(int x,int y,int w,int h);
FL_EXPORT void gl_font(int fontid, int size);
FL_EXPORT int gl_height();