equal
deleted
inserted
replaced
27 |
27 |
28 /* This is a set of defines to configure the SDL features */ |
28 /* This is a set of defines to configure the SDL features */ |
29 |
29 |
30 #include <MacTypes.h> |
30 #include <MacTypes.h> |
31 |
31 |
32 typedef SInt8 int8_t; |
32 typedef SInt8 int8_t; |
33 typedef UInt8 uint8_t; |
33 typedef UInt8 uint8_t; |
34 typedef SInt16 int16_t; |
34 typedef SInt16 int16_t; |
35 typedef UInt16 uint16_t; |
35 typedef UInt16 uint16_t; |
36 typedef SInt32 int32_t; |
36 typedef SInt32 int32_t; |
37 typedef UInt32 uint32_t; |
37 typedef UInt32 uint32_t; |
38 typedef SInt64 int64_t; |
38 typedef SInt64 int64_t; |
39 typedef UInt64 uint64_t; |
39 typedef UInt64 uint64_t; |
40 typedef unsigned long uintptr_t; |
40 typedef unsigned long uintptr_t; |
41 |
41 |
42 #define SDL_HAS_64BIT_TYPE 1 |
42 #define SDL_HAS_64BIT_TYPE 1 |
43 |
43 |
44 /* Useful headers */ |
44 /* Useful headers */ |
45 #define HAVE_STDIO_H 1 |
45 #define HAVE_STDIO_H 1 |
102 #define SDL_TIMER_MACOS 1 |
102 #define SDL_TIMER_MACOS 1 |
103 |
103 |
104 /* Enable various video drivers */ |
104 /* Enable various video drivers */ |
105 #define SDL_VIDEO_DRIVER_DUMMY 1 |
105 #define SDL_VIDEO_DRIVER_DUMMY 1 |
106 #define SDL_VIDEO_DRIVER_DRAWSPROCKET 1 |
106 #define SDL_VIDEO_DRIVER_DRAWSPROCKET 1 |
|
107 #define SDL_VIDEO_DRIVER_GLSDL 1 |
107 #define SDL_VIDEO_DRIVER_TOOLBOX 1 |
108 #define SDL_VIDEO_DRIVER_TOOLBOX 1 |
108 |
109 |
109 /* Enable OpenGL support */ |
110 /* Enable OpenGL support */ |
110 #define SDL_VIDEO_OPENGL 1 |
111 #define SDL_VIDEO_OPENGL 1 |
111 |
112 |