Skip to content
Snippets Groups Projects
Commit 2a67f19f authored by Odd-Arild Kristensen's avatar Odd-Arild Kristensen Committed by Felix Paul Kühne
Browse files

glspectrum: Fixed include bug so that it works correctly on OS X


Signed-off-by: Felix Paul Kühne's avatarFelix Paul Kühne <fkuehne@videolan.org>
parent 9630314e
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,11 @@
#include <vlc_filter.h>
#include <vlc_rand.h>
#include <GL/gl.h>
#ifdef __APPLE__
# include <OpenGL/gl.h>
#else
# include <GL/gl.h>
#endif
#include <math.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment