aboutsummaryrefslogtreecommitdiffstats
path: root/include/pugl/glu.h
AgeCommit message (Collapse)AuthorFilesLines
2023-05-27Separate pugl/glu.h from pugl/gl.hDavid Robillard1-0/+22
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.
2020-10-30Remove GL and GLU wrapper headersDavid Robillard1-41/+0
Include them in pugl_gl.h instead, to simplify things and unclutter the include directory.
2020-10-21Add missing include guardsDavid Robillard1-0/+5
2020-10-21Move includes to a separate directoryDavid Robillard1-0/+36
This is more conventional and directories named "include" are specially understood by some tooling like clang-tidy.