123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef _PL_CONF_H_
- #define _PL_CONF_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define PL_MAX_CHILDREN (16)
- #define PL_MAX_LIGHTS (32)
- #define PL_MAX_TRIANGLES (16384)
- typedef float pl_ZBuffer;
- typedef float pl_Float;
- typedef float pl_IEEEFloat32;
- typedef signed long int pl_sInt32;
- typedef unsigned long int pl_uInt32;
- typedef signed short int pl_sInt16;
- typedef unsigned short int pl_uInt16;
- typedef signed int pl_sInt;
- typedef unsigned int pl_uInt;
- typedef int pl_Bool;
- typedef unsigned char pl_uChar;
- typedef signed char pl_sChar;
- #ifdef __cplusplus
- }
- #endif
- #endif
|