blob: 09028d108631d0ca986ab9f57d4c4f9088350272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _PLATFORM_H_
#define _PLATFORM_H_
extern const GLfloat fNoLight[];
extern const GLfloat fLowLight[];
extern const GLfloat fShinyLight[];
extern const GLfloat fBrightLight[];
extern const GLfloat lightPos[];
/* function prototypes */
void setup_opengl(void);
SDL_Surface *setup_sdl_video(int, int, int, unsigned int);
SDL_Surface *setup_sdl(void);
void setup_glew(void);
#endif
|