ruby2d 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/assets/README.md +7 -9
  3. data/assets/Rakefile +85 -0
  4. data/assets/include/SDL2/SDL.h +1 -1
  5. data/assets/include/SDL2/SDL_assert.h +1 -1
  6. data/assets/include/SDL2/SDL_atomic.h +20 -2
  7. data/assets/include/SDL2/SDL_audio.h +47 -14
  8. data/assets/include/SDL2/SDL_bits.h +10 -1
  9. data/assets/include/SDL2/SDL_blendmode.h +7 -7
  10. data/assets/include/SDL2/SDL_clipboard.h +1 -1
  11. data/assets/include/SDL2/SDL_config.h +24 -390
  12. data/assets/include/SDL2/SDL_config_android.h +178 -0
  13. data/assets/include/SDL2/SDL_config_iphoneos.h +201 -0
  14. data/assets/include/SDL2/SDL_config_macosx.h +240 -0
  15. data/assets/include/SDL2/SDL_config_minimal.h +85 -0
  16. data/assets/include/SDL2/SDL_config_os2.h +170 -0
  17. data/assets/include/SDL2/SDL_config_pandora.h +133 -0
  18. data/assets/include/SDL2/SDL_config_psp.h +164 -0
  19. data/assets/include/SDL2/SDL_config_windows.h +257 -0
  20. data/assets/include/SDL2/SDL_config_winrt.h +240 -0
  21. data/assets/include/SDL2/SDL_config_wiz.h +146 -0
  22. data/assets/include/SDL2/SDL_copying.h +20 -0
  23. data/assets/include/SDL2/SDL_cpuinfo.h +90 -8
  24. data/assets/include/SDL2/SDL_egl.h +1 -1
  25. data/assets/include/SDL2/SDL_endian.h +1 -1
  26. data/assets/include/SDL2/SDL_error.h +1 -1
  27. data/assets/include/SDL2/SDL_events.h +4 -1
  28. data/assets/include/SDL2/SDL_filesystem.h +1 -1
  29. data/assets/include/SDL2/SDL_gamecontroller.h +1 -1
  30. data/assets/include/SDL2/SDL_gesture.h +1 -1
  31. data/assets/include/SDL2/SDL_haptic.h +1 -1
  32. data/assets/include/SDL2/SDL_hints.h +145 -14
  33. data/assets/include/SDL2/SDL_image.h +2 -2
  34. data/assets/include/SDL2/SDL_joystick.h +1 -1
  35. data/assets/include/SDL2/SDL_keyboard.h +1 -1
  36. data/assets/include/SDL2/SDL_keycode.h +1 -1
  37. data/assets/include/SDL2/SDL_loadso.h +1 -1
  38. data/assets/include/SDL2/SDL_log.h +1 -1
  39. data/assets/include/SDL2/SDL_main.h +28 -16
  40. data/assets/include/SDL2/SDL_messagebox.h +1 -1
  41. data/assets/include/SDL2/SDL_mouse.h +1 -1
  42. data/assets/include/SDL2/SDL_mutex.h +1 -1
  43. data/assets/include/SDL2/SDL_name.h +1 -1
  44. data/assets/include/SDL2/SDL_opengl.h +1 -1
  45. data/assets/include/SDL2/SDL_opengles.h +1 -1
  46. data/assets/include/SDL2/SDL_opengles2.h +1 -1
  47. data/assets/include/SDL2/SDL_pixels.h +3 -3
  48. data/assets/include/SDL2/SDL_platform.h +1 -1
  49. data/assets/include/SDL2/SDL_power.h +1 -1
  50. data/assets/include/SDL2/SDL_quit.h +1 -1
  51. data/assets/include/SDL2/SDL_rect.h +29 -3
  52. data/assets/include/SDL2/SDL_render.h +168 -1
  53. data/assets/include/SDL2/SDL_revision.h +2 -2
  54. data/assets/include/SDL2/SDL_rwops.h +50 -13
  55. data/assets/include/SDL2/SDL_scancode.h +2 -2
  56. data/assets/include/SDL2/SDL_sensor.h +4 -4
  57. data/assets/include/SDL2/SDL_shape.h +1 -1
  58. data/assets/include/SDL2/SDL_stdinc.h +1 -1
  59. data/assets/include/SDL2/SDL_surface.h +2 -1
  60. data/assets/include/SDL2/SDL_system.h +1 -1
  61. data/assets/include/SDL2/SDL_syswm.h +11 -8
  62. data/assets/include/SDL2/SDL_test.h +1 -1
  63. data/assets/include/SDL2/SDL_test_assert.h +1 -1
  64. data/assets/include/SDL2/SDL_test_common.h +22 -5
  65. data/assets/include/SDL2/SDL_test_compare.h +1 -1
  66. data/assets/include/SDL2/SDL_test_crc32.h +1 -1
  67. data/assets/include/SDL2/SDL_test_font.h +1 -1
  68. data/assets/include/SDL2/SDL_test_fuzzer.h +1 -1
  69. data/assets/include/SDL2/SDL_test_harness.h +1 -1
  70. data/assets/include/SDL2/SDL_test_images.h +1 -1
  71. data/assets/include/SDL2/SDL_test_log.h +1 -1
  72. data/assets/include/SDL2/SDL_test_md5.h +1 -1
  73. data/assets/include/SDL2/SDL_test_memory.h +3 -3
  74. data/assets/include/SDL2/SDL_test_random.h +1 -1
  75. data/assets/include/SDL2/SDL_thread.h +1 -1
  76. data/assets/include/SDL2/SDL_timer.h +1 -1
  77. data/assets/include/SDL2/SDL_touch.h +17 -1
  78. data/assets/include/SDL2/SDL_types.h +1 -1
  79. data/assets/include/SDL2/SDL_version.h +2 -2
  80. data/assets/include/SDL2/SDL_video.h +1 -1
  81. data/assets/include/SDL2/SDL_vulkan.h +3 -3
  82. data/assets/include/SDL2/begin_code.h +4 -1
  83. data/assets/include/SDL2/close_code.h +4 -1
  84. data/assets/include/simple2d.h +22 -0
  85. data/assets/linux/simple2d/Makefile +11 -8
  86. data/assets/linux/simple2d/bin/simple2d.sh +13 -7
  87. data/assets/linux/simple2d/include/simple2d.h +22 -0
  88. data/assets/linux/simple2d/src/gl.c +17 -13
  89. data/assets/linux/simple2d/src/gl3.c +105 -32
  90. data/assets/linux/simple2d/src/sound.c +37 -0
  91. data/assets/linux/simple2d/src/window.c +11 -0
  92. data/assets/macos/lib/libFLAC.a +0 -0
  93. data/assets/macos/lib/libSDL2.a +0 -0
  94. data/assets/macos/lib/libSDL2_image.a +0 -0
  95. data/assets/macos/lib/libSDL2_mixer.a +0 -0
  96. data/assets/macos/lib/libSDL2_ttf.a +0 -0
  97. data/assets/macos/lib/libfreetype.a +0 -0
  98. data/assets/macos/lib/libjpeg.a +0 -0
  99. data/assets/macos/lib/libmpg123.a +0 -0
  100. data/assets/macos/lib/libogg.a +0 -0
  101. data/assets/macos/lib/libpng16.a +0 -0
  102. data/assets/macos/lib/libsimple2d.a +0 -0
  103. data/assets/macos/lib/libtiff.a +0 -0
  104. data/assets/macos/lib/libwebp.a +0 -0
  105. data/assets/mingw/bin/SDL2.dll +0 -0
  106. data/assets/mingw/bin/SDL2_image.dll +0 -0
  107. data/assets/mingw/bin/libpng16-16.dll +0 -0
  108. data/assets/mingw/bin/libtiff-5.dll +0 -0
  109. data/assets/mingw/bin/libwebp-7.dll +0 -0
  110. data/assets/mingw/lib/libSDL2.a +0 -0
  111. data/assets/mingw/lib/libSDL2.dll.a +0 -0
  112. data/assets/mingw/lib/libSDL2_image.a +0 -0
  113. data/assets/mingw/lib/libSDL2_image.dll.a +0 -0
  114. data/assets/mingw/lib/libSDL2_test.a +0 -0
  115. data/assets/mingw/lib/libSDL2main.a +0 -0
  116. data/assets/mingw/lib/libsimple2d.a +0 -0
  117. data/ext/ruby2d/extconf.rb +1 -1
  118. data/lib/ruby2d/version.rb +1 -1
  119. metadata +14 -2
@@ -0,0 +1,178 @@
1
+ /*
2
+ Simple DirectMedia Layer
3
+ Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+ */
21
+
22
+ #ifndef SDL_config_android_h_
23
+ #define SDL_config_android_h_
24
+ #define SDL_config_h_
25
+
26
+ #include "SDL_platform.h"
27
+
28
+ /**
29
+ * \file SDL_config_android.h
30
+ *
31
+ * This is a configuration that can be used to build SDL for Android
32
+ */
33
+
34
+ #include <stdarg.h>
35
+
36
+ #define HAVE_GCC_ATOMICS 1
37
+
38
+ #define STDC_HEADERS 1
39
+ #define HAVE_ALLOCA_H 1
40
+ #define HAVE_CTYPE_H 1
41
+ #define HAVE_INTTYPES_H 1
42
+ #define HAVE_LIMITS_H 1
43
+ #define HAVE_MATH_H 1
44
+ #define HAVE_SIGNAL_H 1
45
+ #define HAVE_STDINT_H 1
46
+ #define HAVE_STDIO_H 1
47
+ #define HAVE_STRING_H 1
48
+ #define HAVE_SYS_TYPES_H 1
49
+
50
+ /* C library functions */
51
+ #define HAVE_MALLOC 1
52
+ #define HAVE_CALLOC 1
53
+ #define HAVE_REALLOC 1
54
+ #define HAVE_FREE 1
55
+ #define HAVE_ALLOCA 1
56
+ #define HAVE_GETENV 1
57
+ #define HAVE_SETENV 1
58
+ #define HAVE_PUTENV 1
59
+ #define HAVE_SETENV 1
60
+ #define HAVE_UNSETENV 1
61
+ #define HAVE_QSORT 1
62
+ #define HAVE_ABS 1
63
+ #define HAVE_BCOPY 1
64
+ #define HAVE_MEMSET 1
65
+ #define HAVE_MEMCPY 1
66
+ #define HAVE_MEMMOVE 1
67
+ #define HAVE_MEMCMP 1
68
+ #define HAVE_STRLEN 1
69
+ #define HAVE_STRLCPY 1
70
+ #define HAVE_STRLCAT 1
71
+ #define HAVE_STRCHR 1
72
+ #define HAVE_STRRCHR 1
73
+ #define HAVE_STRSTR 1
74
+ #define HAVE_STRTOL 1
75
+ #define HAVE_STRTOUL 1
76
+ #define HAVE_STRTOLL 1
77
+ #define HAVE_STRTOULL 1
78
+ #define HAVE_STRTOD 1
79
+ #define HAVE_ATOI 1
80
+ #define HAVE_ATOF 1
81
+ #define HAVE_STRCMP 1
82
+ #define HAVE_STRNCMP 1
83
+ #define HAVE_STRCASECMP 1
84
+ #define HAVE_STRNCASECMP 1
85
+ #define HAVE_VSSCANF 1
86
+ #define HAVE_VSNPRINTF 1
87
+ #define HAVE_ACOS 1
88
+ #define HAVE_ACOSF 1
89
+ #define HAVE_ASIN 1
90
+ #define HAVE_ASINF 1
91
+ #define HAVE_ATAN 1
92
+ #define HAVE_ATANF 1
93
+ #define HAVE_ATAN2 1
94
+ #define HAVE_ATAN2F 1
95
+ #define HAVE_CEIL 1
96
+ #define HAVE_CEILF 1
97
+ #define HAVE_COPYSIGN 1
98
+ #define HAVE_COPYSIGNF 1
99
+ #define HAVE_COS 1
100
+ #define HAVE_COSF 1
101
+ #define HAVE_EXP 1
102
+ #define HAVE_EXPF 1
103
+ #define HAVE_FABS 1
104
+ #define HAVE_FABSF 1
105
+ #define HAVE_FLOOR 1
106
+ #define HAVE_FLOORF 1
107
+ #define HAVE_FMOD 1
108
+ #define HAVE_FMODF 1
109
+ #define HAVE_LOG 1
110
+ #define HAVE_LOGF 1
111
+ #define HAVE_LOG10 1
112
+ #define HAVE_LOG10F 1
113
+ #define HAVE_POW 1
114
+ #define HAVE_POWF 1
115
+ #define HAVE_SCALBN 1
116
+ #define HAVE_SCALBNF 1
117
+ #define HAVE_SIN 1
118
+ #define HAVE_SINF 1
119
+ #define HAVE_SQRT 1
120
+ #define HAVE_SQRTF 1
121
+ #define HAVE_TAN 1
122
+ #define HAVE_TANF 1
123
+ #define HAVE_SIGACTION 1
124
+ #define HAVE_SETJMP 1
125
+ #define HAVE_NANOSLEEP 1
126
+ #define HAVE_SYSCONF 1
127
+ #define HAVE_CLOCK_GETTIME 1
128
+
129
+ #define SIZEOF_VOIDP 4
130
+
131
+ /* Enable various audio drivers */
132
+ #define SDL_AUDIO_DRIVER_ANDROID 1
133
+ #define SDL_AUDIO_DRIVER_OPENSLES 1
134
+ #define SDL_AUDIO_DRIVER_DUMMY 1
135
+
136
+ /* Enable various input drivers */
137
+ #define SDL_JOYSTICK_ANDROID 1
138
+ #define SDL_JOYSTICK_HIDAPI 1
139
+ #define SDL_HAPTIC_ANDROID 1
140
+
141
+ /* Enable sensor driver */
142
+ #define SDL_SENSOR_ANDROID 1
143
+
144
+ /* Enable various shared object loading systems */
145
+ #define SDL_LOADSO_DLOPEN 1
146
+
147
+ /* Enable various threading systems */
148
+ #define SDL_THREAD_PTHREAD 1
149
+ #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
150
+
151
+ /* Enable various timer systems */
152
+ #define SDL_TIMER_UNIX 1
153
+
154
+ /* Enable various video drivers */
155
+ #define SDL_VIDEO_DRIVER_ANDROID 1
156
+
157
+ /* Enable OpenGL ES */
158
+ #define SDL_VIDEO_OPENGL_ES 1
159
+ #define SDL_VIDEO_OPENGL_ES2 1
160
+ #define SDL_VIDEO_OPENGL_EGL 1
161
+ #define SDL_VIDEO_RENDER_OGL_ES 1
162
+ #define SDL_VIDEO_RENDER_OGL_ES2 1
163
+
164
+ /* Enable Vulkan support */
165
+ /* Android does not support Vulkan in native code using the "armeabi" ABI. */
166
+ #if defined(__ARM_ARCH) && __ARM_ARCH < 7
167
+ #define SDL_VIDEO_VULKAN 0
168
+ #else
169
+ #define SDL_VIDEO_VULKAN 1
170
+ #endif
171
+
172
+ /* Enable system power support */
173
+ #define SDL_POWER_ANDROID 1
174
+
175
+ /* Enable the filesystem driver */
176
+ #define SDL_FILESYSTEM_ANDROID 1
177
+
178
+ #endif /* SDL_config_android_h_ */
@@ -0,0 +1,201 @@
1
+ /*
2
+ Simple DirectMedia Layer
3
+ Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+ */
21
+
22
+ #ifndef SDL_config_iphoneos_h_
23
+ #define SDL_config_iphoneos_h_
24
+ #define SDL_config_h_
25
+
26
+ #include "SDL_platform.h"
27
+
28
+ #ifdef __LP64__
29
+ #define SIZEOF_VOIDP 8
30
+ #else
31
+ #define SIZEOF_VOIDP 4
32
+ #endif
33
+
34
+ #define HAVE_GCC_ATOMICS 1
35
+
36
+ #define STDC_HEADERS 1
37
+ #define HAVE_ALLOCA_H 1
38
+ #define HAVE_CTYPE_H 1
39
+ #define HAVE_INTTYPES_H 1
40
+ #define HAVE_LIMITS_H 1
41
+ #define HAVE_MATH_H 1
42
+ #define HAVE_SIGNAL_H 1
43
+ #define HAVE_STDINT_H 1
44
+ #define HAVE_STDIO_H 1
45
+ #define HAVE_STRING_H 1
46
+ #define HAVE_SYS_TYPES_H 1
47
+ /* The libunwind functions are only available on x86 */
48
+ /* #undef HAVE_LIBUNWIND_H */
49
+
50
+ /* C library functions */
51
+ #define HAVE_MALLOC 1
52
+ #define HAVE_CALLOC 1
53
+ #define HAVE_REALLOC 1
54
+ #define HAVE_FREE 1
55
+ #define HAVE_ALLOCA 1
56
+ #define HAVE_GETENV 1
57
+ #define HAVE_SETENV 1
58
+ #define HAVE_PUTENV 1
59
+ #define HAVE_SETENV 1
60
+ #define HAVE_UNSETENV 1
61
+ #define HAVE_QSORT 1
62
+ #define HAVE_ABS 1
63
+ #define HAVE_BCOPY 1
64
+ #define HAVE_MEMSET 1
65
+ #define HAVE_MEMCPY 1
66
+ #define HAVE_MEMMOVE 1
67
+ #define HAVE_MEMCMP 1
68
+ #define HAVE_STRLEN 1
69
+ #define HAVE_STRLCPY 1
70
+ #define HAVE_STRLCAT 1
71
+ #define HAVE_STRCHR 1
72
+ #define HAVE_STRRCHR 1
73
+ #define HAVE_STRSTR 1
74
+ #define HAVE_STRTOL 1
75
+ #define HAVE_STRTOUL 1
76
+ #define HAVE_STRTOLL 1
77
+ #define HAVE_STRTOULL 1
78
+ #define HAVE_STRTOD 1
79
+ #define HAVE_ATOI 1
80
+ #define HAVE_ATOF 1
81
+ #define HAVE_STRCMP 1
82
+ #define HAVE_STRNCMP 1
83
+ #define HAVE_STRCASECMP 1
84
+ #define HAVE_STRNCASECMP 1
85
+ #define HAVE_VSSCANF 1
86
+ #define HAVE_VSNPRINTF 1
87
+ #define HAVE_M_PI 1
88
+ #define HAVE_ACOS 1
89
+ #define HAVE_ACOSF 1
90
+ #define HAVE_ASIN 1
91
+ #define HAVE_ASINF 1
92
+ #define HAVE_ATAN 1
93
+ #define HAVE_ATANF 1
94
+ #define HAVE_ATAN2 1
95
+ #define HAVE_ATAN2F 1
96
+ #define HAVE_CEIL 1
97
+ #define HAVE_CEILF 1
98
+ #define HAVE_COPYSIGN 1
99
+ #define HAVE_COPYSIGNF 1
100
+ #define HAVE_COS 1
101
+ #define HAVE_COSF 1
102
+ #define HAVE_EXP 1
103
+ #define HAVE_EXPF 1
104
+ #define HAVE_FABS 1
105
+ #define HAVE_FABSF 1
106
+ #define HAVE_FLOOR 1
107
+ #define HAVE_FLOORF 1
108
+ #define HAVE_FMOD 1
109
+ #define HAVE_FMODF 1
110
+ #define HAVE_LOG 1
111
+ #define HAVE_LOGF 1
112
+ #define HAVE_LOG10 1
113
+ #define HAVE_LOG10F 1
114
+ #define HAVE_POW 1
115
+ #define HAVE_POWF 1
116
+ #define HAVE_SCALBN 1
117
+ #define HAVE_SCALBNF 1
118
+ #define HAVE_SIN 1
119
+ #define HAVE_SINF 1
120
+ #define HAVE_SQRT 1
121
+ #define HAVE_SQRTF 1
122
+ #define HAVE_TAN 1
123
+ #define HAVE_TANF 1
124
+ #define HAVE_SIGACTION 1
125
+ #define HAVE_SETJMP 1
126
+ #define HAVE_NANOSLEEP 1
127
+ #define HAVE_SYSCONF 1
128
+ #define HAVE_SYSCTLBYNAME 1
129
+
130
+ /* enable iPhone version of Core Audio driver */
131
+ #define SDL_AUDIO_DRIVER_COREAUDIO 1
132
+ /* Enable the dummy audio driver (src/audio/dummy/\*.c) */
133
+ #define SDL_AUDIO_DRIVER_DUMMY 1
134
+
135
+ /* Enable the stub haptic driver (src/haptic/dummy/\*.c) */
136
+ #define SDL_HAPTIC_DUMMY 1
137
+
138
+ /* Enable MFi joystick support */
139
+ #define SDL_JOYSTICK_MFI 1
140
+ /*#define SDL_JOYSTICK_HIDAPI 1*/
141
+
142
+ #ifdef __TVOS__
143
+ #define SDL_SENSOR_DUMMY 1
144
+ #else
145
+ /* Enable the CoreMotion sensor driver */
146
+ #define SDL_SENSOR_COREMOTION 1
147
+ #endif
148
+
149
+ /* Enable Unix style SO loading */
150
+ #define SDL_LOADSO_DLOPEN 1
151
+
152
+ /* Enable various threading systems */
153
+ #define SDL_THREAD_PTHREAD 1
154
+ #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
155
+
156
+ /* Enable various timer systems */
157
+ #define SDL_TIMER_UNIX 1
158
+
159
+ /* Supported video drivers */
160
+ #define SDL_VIDEO_DRIVER_UIKIT 1
161
+ #define SDL_VIDEO_DRIVER_DUMMY 1
162
+
163
+ /* Enable OpenGL ES */
164
+ #define SDL_VIDEO_OPENGL_ES2 1
165
+ #define SDL_VIDEO_OPENGL_ES 1
166
+ #define SDL_VIDEO_RENDER_OGL_ES 1
167
+ #define SDL_VIDEO_RENDER_OGL_ES2 1
168
+
169
+ /* Metal supported on 64-bit devices running iOS 8.0 and tvOS 9.0 and newer */
170
+ #if !TARGET_OS_SIMULATOR && !TARGET_CPU_ARM && ((__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 90000))
171
+ #define SDL_PLATFORM_SUPPORTS_METAL 1
172
+ #else
173
+ #define SDL_PLATFORM_SUPPORTS_METAL 0
174
+ #endif
175
+
176
+ #if SDL_PLATFORM_SUPPORTS_METAL
177
+ #define SDL_VIDEO_RENDER_METAL 1
178
+ #endif
179
+
180
+ #if SDL_PLATFORM_SUPPORTS_METAL
181
+ #define SDL_VIDEO_VULKAN 1
182
+ #endif
183
+
184
+ /* Enable system power support */
185
+ #define SDL_POWER_UIKIT 1
186
+
187
+ /* enable iPhone keyboard support */
188
+ #define SDL_IPHONE_KEYBOARD 1
189
+
190
+ /* enable iOS extended launch screen */
191
+ #define SDL_IPHONE_LAUNCHSCREEN 1
192
+
193
+ /* Set max recognized G-force from accelerometer
194
+ See src/joystick/uikit/SDL_sysjoystick.m for notes on why this is needed
195
+ */
196
+ #define SDL_IPHONE_MAX_GFORCE 5.0
197
+
198
+ /* enable filesystem support */
199
+ #define SDL_FILESYSTEM_COCOA 1
200
+
201
+ #endif /* SDL_config_iphoneos_h_ */
@@ -0,0 +1,240 @@
1
+ /*
2
+ Simple DirectMedia Layer
3
+ Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+ */
21
+
22
+ #ifndef SDL_config_macosx_h_
23
+ #define SDL_config_macosx_h_
24
+ #define SDL_config_h_
25
+
26
+ #include "SDL_platform.h"
27
+
28
+ /* This gets us MAC_OS_X_VERSION_MIN_REQUIRED... */
29
+ #include <AvailabilityMacros.h>
30
+
31
+ /* This is a set of defines to configure the SDL features */
32
+
33
+ #ifdef __LP64__
34
+ #define SIZEOF_VOIDP 8
35
+ #else
36
+ #define SIZEOF_VOIDP 4
37
+ #endif
38
+
39
+ /* Useful headers */
40
+ #define STDC_HEADERS 1
41
+ #define HAVE_ALLOCA_H 1
42
+ #define HAVE_CTYPE_H 1
43
+ #define HAVE_FLOAT_H 1
44
+ #define HAVE_INTTYPES_H 1
45
+ #define HAVE_LIMITS_H 1
46
+ #define HAVE_MATH_H 1
47
+ #define HAVE_SIGNAL_H 1
48
+ #define HAVE_STDINT_H 1
49
+ #define HAVE_STDIO_H 1
50
+ #define HAVE_STRING_H 1
51
+ #define HAVE_SYS_TYPES_H 1
52
+ #define HAVE_LIBUNWIND_H 1
53
+
54
+ /* C library functions */
55
+ #define HAVE_MALLOC 1
56
+ #define HAVE_CALLOC 1
57
+ #define HAVE_REALLOC 1
58
+ #define HAVE_FREE 1
59
+ #define HAVE_ALLOCA 1
60
+ #define HAVE_GETENV 1
61
+ #define HAVE_SETENV 1
62
+ #define HAVE_PUTENV 1
63
+ #define HAVE_UNSETENV 1
64
+ #define HAVE_QSORT 1
65
+ #define HAVE_ABS 1
66
+ #define HAVE_BCOPY 1
67
+ #define HAVE_MEMSET 1
68
+ #define HAVE_MEMCPY 1
69
+ #define HAVE_MEMMOVE 1
70
+ #define HAVE_MEMCMP 1
71
+ #define HAVE_STRLEN 1
72
+ #define HAVE_STRLCPY 1
73
+ #define HAVE_STRLCAT 1
74
+ #define HAVE_STRCHR 1
75
+ #define HAVE_STRRCHR 1
76
+ #define HAVE_STRSTR 1
77
+ #define HAVE_STRTOL 1
78
+ #define HAVE_STRTOUL 1
79
+ #define HAVE_STRTOLL 1
80
+ #define HAVE_STRTOULL 1
81
+ #define HAVE_STRTOD 1
82
+ #define HAVE_ATOI 1
83
+ #define HAVE_ATOF 1
84
+ #define HAVE_STRCMP 1
85
+ #define HAVE_STRNCMP 1
86
+ #define HAVE_STRCASECMP 1
87
+ #define HAVE_STRNCASECMP 1
88
+ #define HAVE_VSSCANF 1
89
+ #define HAVE_VSNPRINTF 1
90
+ #define HAVE_M_PI 1
91
+ #define HAVE_ACOS 1
92
+ #define HAVE_ACOSF 1
93
+ #define HAVE_ASIN 1
94
+ #define HAVE_ASINF 1
95
+ #define HAVE_ATAN 1
96
+ #define HAVE_ATANF 1
97
+ #define HAVE_ATAN2 1
98
+ #define HAVE_ATAN2F 1
99
+ #define HAVE_CEIL 1
100
+ #define HAVE_CEILF 1
101
+ #define HAVE_COPYSIGN 1
102
+ #define HAVE_COPYSIGNF 1
103
+ #define HAVE_COS 1
104
+ #define HAVE_COSF 1
105
+ #define HAVE_EXP 1
106
+ #define HAVE_EXPF 1
107
+ #define HAVE_FABS 1
108
+ #define HAVE_FABSF 1
109
+ #define HAVE_FLOOR 1
110
+ #define HAVE_FLOORF 1
111
+ #define HAVE_FMOD 1
112
+ #define HAVE_FMODF 1
113
+ #define HAVE_LOG 1
114
+ #define HAVE_LOGF 1
115
+ #define HAVE_LOG10 1
116
+ #define HAVE_LOG10F 1
117
+ #define HAVE_POW 1
118
+ #define HAVE_POWF 1
119
+ #define HAVE_SCALBN 1
120
+ #define HAVE_SCALBNF 1
121
+ #define HAVE_SIN 1
122
+ #define HAVE_SINF 1
123
+ #define HAVE_SQRT 1
124
+ #define HAVE_SQRTF 1
125
+ #define HAVE_TAN 1
126
+ #define HAVE_TANF 1
127
+ #define HAVE_SIGACTION 1
128
+ #define HAVE_SETJMP 1
129
+ #define HAVE_NANOSLEEP 1
130
+ #define HAVE_SYSCONF 1
131
+ #define HAVE_SYSCTLBYNAME 1
132
+
133
+ /* Enable various audio drivers */
134
+ #define SDL_AUDIO_DRIVER_COREAUDIO 1
135
+ #define SDL_AUDIO_DRIVER_DISK 1
136
+ #define SDL_AUDIO_DRIVER_DUMMY 1
137
+
138
+ /* Enable various input drivers */
139
+ #define SDL_JOYSTICK_IOKIT 1
140
+ #define SDL_JOYSTICK_HIDAPI 1
141
+ #define SDL_HAPTIC_IOKIT 1
142
+
143
+ /* Enable the dummy sensor driver */
144
+ #define SDL_SENSOR_DUMMY 1
145
+
146
+ /* Enable various shared object loading systems */
147
+ #define SDL_LOADSO_DLOPEN 1
148
+
149
+ /* Enable various threading systems */
150
+ #define SDL_THREAD_PTHREAD 1
151
+ #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
152
+
153
+ /* Enable various timer systems */
154
+ #define SDL_TIMER_UNIX 1
155
+
156
+ /* Enable various video drivers */
157
+ #define SDL_VIDEO_DRIVER_COCOA 1
158
+ #define SDL_VIDEO_DRIVER_DUMMY 1
159
+ #undef SDL_VIDEO_DRIVER_X11
160
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC "/usr/X11R6/lib/libX11.6.dylib"
161
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "/usr/X11R6/lib/libXext.6.dylib"
162
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "/usr/X11R6/lib/libXinerama.1.dylib"
163
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "/usr/X11R6/lib/libXi.6.dylib"
164
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "/usr/X11R6/lib/libXrandr.2.dylib"
165
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "/usr/X11R6/lib/libXss.1.dylib"
166
+ #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "/usr/X11R6/lib/libXxf86vm.1.dylib"
167
+ #define SDL_VIDEO_DRIVER_X11_XDBE 1
168
+ #define SDL_VIDEO_DRIVER_X11_XINERAMA 1
169
+ #define SDL_VIDEO_DRIVER_X11_XRANDR 1
170
+ #define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1
171
+ #define SDL_VIDEO_DRIVER_X11_XSHAPE 1
172
+ #define SDL_VIDEO_DRIVER_X11_XVIDMODE 1
173
+ #define SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 1
174
+
175
+ #ifdef MAC_OS_X_VERSION_10_8
176
+ /*
177
+ * No matter the versions targeted, this is the 10.8 or later SDK, so you have
178
+ * to use the external Xquartz, which is a more modern Xlib. Previous SDKs
179
+ * used an older Xlib.
180
+ */
181
+ #define SDL_VIDEO_DRIVER_X11_XINPUT2 1
182
+ #define SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 1
183
+ #define SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 1
184
+ #endif
185
+
186
+ #ifndef SDL_VIDEO_RENDER_OGL
187
+ #define SDL_VIDEO_RENDER_OGL 1
188
+ #endif
189
+
190
+ #ifndef SDL_VIDEO_RENDER_OGL_ES2
191
+ #define SDL_VIDEO_RENDER_OGL_ES2 1
192
+ #endif
193
+
194
+ #ifndef SDL_VIDEO_RENDER_METAL
195
+ /* Metal only supported on 64-bit architectures with 10.11+ */
196
+ #if TARGET_CPU_X86_64 && (MAC_OS_X_VERSION_MAX_ALLOWED >= 101100)
197
+ #define SDL_VIDEO_RENDER_METAL 1
198
+ #else
199
+ #define SDL_VIDEO_RENDER_METAL 0
200
+ #endif
201
+ #endif
202
+
203
+ /* Enable OpenGL support */
204
+ #ifndef SDL_VIDEO_OPENGL
205
+ #define SDL_VIDEO_OPENGL 1
206
+ #endif
207
+ #ifndef SDL_VIDEO_OPENGL_ES2
208
+ #define SDL_VIDEO_OPENGL_ES2 1
209
+ #endif
210
+ #ifndef SDL_VIDEO_OPENGL_EGL
211
+ #define SDL_VIDEO_OPENGL_EGL 1
212
+ #endif
213
+ #ifndef SDL_VIDEO_OPENGL_CGL
214
+ #define SDL_VIDEO_OPENGL_CGL 1
215
+ #endif
216
+ #ifndef SDL_VIDEO_OPENGL_GLX
217
+ #define SDL_VIDEO_OPENGL_GLX 1
218
+ #endif
219
+
220
+ /* Enable Vulkan support */
221
+ /* Metal/Vulkan Portability only supported on 64-bit architectures with 10.11+ */
222
+ #if TARGET_CPU_X86_64 && (MAC_OS_X_VERSION_MAX_ALLOWED >= 101100)
223
+ #define SDL_VIDEO_VULKAN 1
224
+ #else
225
+ #define SDL_VIDEO_VULKAN 0
226
+ #endif
227
+
228
+ /* Enable system power support */
229
+ #define SDL_POWER_MACOSX 1
230
+
231
+ /* enable filesystem support */
232
+ #define SDL_FILESYSTEM_COCOA 1
233
+
234
+ /* Enable assembly routines */
235
+ #define SDL_ASSEMBLY_ROUTINES 1
236
+ #ifdef __ppc__
237
+ #define SDL_ALTIVEC_BLITTERS 1
238
+ #endif
239
+
240
+ #endif /* SDL_config_macosx_h_ */