Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_BASETYPES_H__
00009 #define __SP_BASETYPES_H__
00010
00011
00012 namespace sp
00013 {
00014
00015
00016
00017
00018 typedef char c8;
00019 typedef wchar_t c16;
00020
00021 typedef signed char s8;
00022 typedef signed short s16;
00023 typedef signed int s32;
00024 typedef signed long int s64;
00025
00026 typedef unsigned char u8;
00027 typedef unsigned short u16;
00028 typedef unsigned int u32;
00029 typedef unsigned long int u64;
00030
00031 typedef float f32;
00032 typedef double f64;
00033 typedef long double f128;
00034
00035
00036
00037
00038 static const s32 MAX_COUNT_OF_TEXTURES = 8;
00039 static const s32 MAX_COUNT_OF_LIGHTS = 8;
00040
00041
00042 }
00043
00044
00045 #endif
00046
00047
00048
00049