Missing library from test link list.
[dcpomatic.git] / hacks / gl / image_loader.h
1 #ifndef _image_loader
2 #define _image_loader
3
4 #ifdef __WXMAC__
5 #include "OpenGL/gl.h"
6 #else
7 #include <GL/gl.h>
8 #endif
9 #include "wx/wx.h"
10         
11 GLuint* loadImage(wxString path, int* imageWidth, int* imageHeight, int* textureWidth, int* textureHeight);
12
13 #endif