blob: 63478ecfe86c3b8c60fc056cf2118749ebfaae09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _SDL_TOOLS_
#define _SDL_TOOLS_
#define FRAMES_PER_SECOND 60
extern const char *arrow[];
/* function prototypes */
extern void sdlFrameControl(unsigned int);
SDL_Cursor *sdlInitCursor(const char *image[]);
unsigned int sdlTimerCallback(unsigned int, void *);
GLuint sdltLoadGLTexture(SDL_Surface *, GLfloat *);
#endif
|