zengine/include/external/SDLGL_Util.h

15 lines
352 B
C
Raw Normal View History

/*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"
2003-08-02 01:18:45 +00:00
#if (GFX_BACKEND == ZE_OGL)
int power_of_two(int input);
GLuint SDL_GL_LoadTexture(SDL_Surface *surface, GLfloat *texcoord);
2003-08-01 21:57:32 +00:00
#endif
#endif //__sdlgl_h__