blob: 1212faedb1b626e0eb082fc3b35244b43fb0815b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _image_loader
#define _image_loader
#ifdef __WXMAC__
#include "OpenGL/gl.h"
#else
#include <GL/gl.h>
#endif
#include "wx/wx.h"
GLuint* loadImage(wxString path, int* imageWidth, int* imageHeight, int* textureWidth, int* textureHeight);
#endif
|