27 lines
579 B
C
27 lines
579 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
|
|
#define MAXPATH 256 /* 255 chars + null */
|
|
#define MAXNAME 50
|
|
|
|
#define SCREEN_WIDTH 1280
|
|
#define SCREEN_HEIGHT 720
|
|
#define PI 3.14159265358979323846264338327950288f
|
|
#define DEG2RADS 0.0174532925199432957692369076848861271344287188854172545609719144f
|
|
#define RAD2DEGS 57.2958f
|
|
#define MSAA_SAMPLES 2
|
|
|
|
|
|
/* S7 Scheme defines */
|
|
#define INITIAL_HEAP_SIZE 4096
|
|
#define INITIAL_STACK_SIZE 4096
|
|
#define DEFAULT_BIGNUM_PRECISION 128
|
|
#define WITH_PURE_S7 0
|
|
#define WITH_SYSTEM_EXTRAS 0
|
|
#define WITH_C_LOADER 0
|
|
#define WITH_NUMBER_SEPARATOR 1
|
|
|
|
|
|
#endif
|