15 lines
347 B
C
Executable File
15 lines
347 B
C
Executable File
/*This code comes from testgl.c which is part of the SDL source distribution.
|
|
Available at http://libsdl.org/
|
|
*/
|
|
#ifndef __sdlgl_h__
|
|
#define __sdlgl_h__
|
|
|
|
#include "ZE_Includes.h"
|
|
|
|
#if GFX_BACKEND == OGL
|
|
int power_of_two(int input);
|
|
GLuint SDL_GL_LoadTexture(SDL_Surface *surface, GLfloat *texcoord);
|
|
#endif
|
|
|
|
#endif //__sdlgl_h__
|