14 lines
286 B
C
14 lines
286 B
C
#ifndef _DEFS_H_
|
|
#define _DEFS_H_
|
|
|
|
#include <GL/glut.h>
|
|
|
|
typedef GLfloat m_float; //Let's precision be quickly changed
|
|
typedef GLint m_int;
|
|
typedef GLuint m_uint;
|
|
|
|
enum { MENU_SHADOWS, MENU_SHADOW_VOLUMES, MENU_PRIMITIVES_ONLY,
|
|
MENU_CLEAR_WHITE, MENU_CLEAR_BLACK };
|
|
|
|
#endif
|