diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-10-13 09:55:21 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-10-13 09:55:21 +0200 |
commit | 7d6210374025dbf7ba2ccae288bbe5ce86af9d16 (patch) | |
tree | 52e59edef8c80c63b84aae4ddf2c2d412c8c77c6 /pugl/pugl/gl.h | |
parent | 6327df6f222c64376e57399ed11c803f14c92e9b (diff) | |
parent | a7a6fb766cf807adf4f49ba0ed66f4048f73abbc (diff) | |
download | canvas_display.lv2-7d6210374025dbf7ba2ccae288bbe5ce86af9d16.tar.xz |
Add 'pugl/' from commit 'a7a6fb766cf807adf4f49ba0ed66f4048f73abbc'
git-subtree-dir: pugl
git-subtree-mainline: 6327df6f222c64376e57399ed11c803f14c92e9b
git-subtree-split: a7a6fb766cf807adf4f49ba0ed66f4048f73abbc
Diffstat (limited to 'pugl/pugl/gl.h')
-rw-r--r-- | pugl/pugl/gl.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pugl/pugl/gl.h b/pugl/pugl/gl.h new file mode 100644 index 0000000..9a6aeef --- /dev/null +++ b/pugl/pugl/gl.h @@ -0,0 +1,32 @@ +/* + Copyright 2012-2014 David Robillard <http://drobilla.net> + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ + +/** + @file gl.h Portable header wrapper for gl.h. + + Unfortunately, GL includes vary across platforms so this header allows for + pure portable programs. +*/ + +#ifdef __APPLE__ +# include "OpenGL/gl.h" +#else +# ifdef _WIN32 +# include <windows.h> /* Broken Windows GL headers require this */ +# endif +# include "GL/gl.h" +#endif + |