15 lines
201 B
C
15 lines
201 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define WIN_WIDTH 640
|
|
#define WIN_HEIGHT 480
|
|
|
|
#define APP_LABEL "Test OpenGL app"
|
|
|
|
#define NEAR 0.1
|
|
#define FAR 1000.0
|
|
|
|
#define VISION_ANGLE 70.0
|
|
|
|
#endif // CONFIG_H
|