gosu 0.15.2 → 1.0.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dependencies/SDL/include/SDL.h +138 -0
- data/dependencies/SDL/include/SDL_assert.h +293 -0
- data/dependencies/SDL/include/SDL_atomic.h +295 -0
- data/dependencies/SDL/include/SDL_audio.h +859 -0
- data/dependencies/SDL/include/SDL_bits.h +121 -0
- data/dependencies/SDL/include/SDL_blendmode.h +123 -0
- data/dependencies/SDL/include/SDL_clipboard.h +71 -0
- data/dependencies/SDL/include/SDL_config.h +55 -0
- data/dependencies/SDL/include/SDL_config_android.h +182 -0
- data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
- data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
- data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
- data/dependencies/SDL/include/SDL_config_os2.h +188 -0
- data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
- data/dependencies/SDL/include/SDL_config_psp.h +165 -0
- data/dependencies/SDL/include/SDL_config_windows.h +288 -0
- data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
- data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
- data/dependencies/SDL/include/SDL_copying.h +20 -0
- data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
- data/dependencies/SDL/include/SDL_egl.h +1676 -0
- data/dependencies/SDL/include/SDL_endian.h +263 -0
- data/dependencies/SDL/include/SDL_error.h +112 -0
- data/dependencies/SDL/include/SDL_events.h +827 -0
- data/dependencies/SDL/include/SDL_filesystem.h +136 -0
- data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
- data/dependencies/SDL/include/SDL_gesture.h +87 -0
- data/dependencies/SDL/include/SDL_haptic.h +1247 -0
- data/dependencies/SDL/include/SDL_hints.h +1578 -0
- data/dependencies/SDL/include/SDL_joystick.h +499 -0
- data/dependencies/SDL/include/SDL_keyboard.h +217 -0
- data/dependencies/SDL/include/SDL_keycode.h +351 -0
- data/dependencies/SDL/include/SDL_loadso.h +81 -0
- data/dependencies/SDL/include/SDL_locale.h +101 -0
- data/dependencies/SDL/include/SDL_log.h +211 -0
- data/dependencies/SDL/include/SDL_main.h +180 -0
- data/dependencies/SDL/include/SDL_messagebox.h +146 -0
- data/dependencies/SDL/include/SDL_metal.h +117 -0
- data/dependencies/SDL/include/SDL_misc.h +75 -0
- data/dependencies/SDL/include/SDL_mouse.h +302 -0
- data/dependencies/SDL/include/SDL_mutex.h +251 -0
- data/dependencies/SDL/include/SDL_name.h +33 -0
- data/dependencies/SDL/include/SDL_opengl.h +2183 -0
- data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
- data/dependencies/SDL/include/SDL_opengles.h +39 -0
- data/dependencies/SDL/include/SDL_opengles2.h +52 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
- data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
- data/dependencies/SDL/include/SDL_pixels.h +479 -0
- data/dependencies/SDL/include/SDL_platform.h +198 -0
- data/dependencies/SDL/include/SDL_power.h +75 -0
- data/dependencies/SDL/include/SDL_quit.h +58 -0
- data/dependencies/SDL/include/SDL_rect.h +174 -0
- data/dependencies/SDL/include/SDL_render.h +1158 -0
- data/dependencies/SDL/include/SDL_revision.h +2 -0
- data/dependencies/SDL/include/SDL_rwops.h +283 -0
- data/dependencies/SDL/include/SDL_scancode.h +413 -0
- data/dependencies/SDL/include/SDL_sensor.h +267 -0
- data/dependencies/SDL/include/SDL_shape.h +144 -0
- data/dependencies/SDL/include/SDL_stdinc.h +647 -0
- data/dependencies/SDL/include/SDL_surface.h +563 -0
- data/dependencies/SDL/include/SDL_system.h +325 -0
- data/dependencies/SDL/include/SDL_syswm.h +354 -0
- data/dependencies/SDL/include/SDL_test.h +69 -0
- data/dependencies/SDL/include/SDL_test_assert.h +105 -0
- data/dependencies/SDL/include/SDL_test_common.h +218 -0
- data/dependencies/SDL/include/SDL_test_compare.h +69 -0
- data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
- data/dependencies/SDL/include/SDL_test_font.h +81 -0
- data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
- data/dependencies/SDL/include/SDL_test_harness.h +134 -0
- data/dependencies/SDL/include/SDL_test_images.h +78 -0
- data/dependencies/SDL/include/SDL_test_log.h +67 -0
- data/dependencies/SDL/include/SDL_test_md5.h +129 -0
- data/dependencies/SDL/include/SDL_test_memory.h +63 -0
- data/dependencies/SDL/include/SDL_test_random.h +115 -0
- data/dependencies/SDL/include/SDL_thread.h +366 -0
- data/dependencies/SDL/include/SDL_timer.h +115 -0
- data/dependencies/SDL/include/SDL_touch.h +102 -0
- data/dependencies/SDL/include/SDL_types.h +29 -0
- data/dependencies/SDL/include/SDL_version.h +162 -0
- data/dependencies/SDL/include/SDL_video.h +1282 -0
- data/dependencies/SDL/include/SDL_vulkan.h +276 -0
- data/dependencies/SDL/include/begin_code.h +166 -0
- data/dependencies/SDL/include/close_code.h +40 -0
- data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
- data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
- data/dependencies/SDL_sound/SDL_sound.c +795 -0
- data/dependencies/SDL_sound/SDL_sound.h +725 -0
- data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
- data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
- data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
- data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
- data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
- data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
- data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
- data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
- data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
- data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
- data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
- data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
- data/dependencies/SDL_sound/dr_flac.h +5906 -0
- data/dependencies/SDL_sound/dr_mp3.h +2832 -0
- data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
- data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
- data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
- data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
- data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
- data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
- data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
- data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
- data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
- data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
- data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
- data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
- data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
- data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
- data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
- data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
- data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
- data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
- data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
- data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
- data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
- data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
- data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
- data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
- data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
- data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
- data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
- data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
- data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
- data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
- data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
- data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
- data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
- data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
- data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
- data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
- data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
- data/dependencies/al_soft/AL/al.h +655 -0
- data/dependencies/al_soft/AL/alc.h +270 -0
- data/dependencies/al_soft/AL/alext.h +585 -0
- data/dependencies/al_soft/AL/efx-creative.h +3 -0
- data/dependencies/al_soft/AL/efx-presets.h +402 -0
- data/dependencies/al_soft/AL/efx.h +762 -0
- data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
- data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
- data/{src → dependencies/stb}/stb_image.h +330 -127
- data/{src → dependencies/stb}/stb_image_write.h +156 -85
- data/{src → dependencies/stb}/stb_truetype.h +192 -69
- data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
- data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
- data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
- data/ext/gosu/extconf.rb +56 -22
- data/{Gosu → include/Gosu}/Audio.hpp +6 -8
- data/{Gosu → include/Gosu}/AutoLink.hpp +0 -0
- data/include/Gosu/Bitmap.hpp +100 -0
- data/{Gosu → include/Gosu}/Buttons.hpp +94 -35
- data/{Gosu → include/Gosu}/Channel.h +0 -0
- data/{Gosu → include/Gosu}/Color.h +0 -0
- data/{Gosu → include/Gosu}/Color.hpp +0 -0
- data/{Gosu → include/Gosu}/Directories.hpp +0 -0
- data/{Gosu → include/Gosu}/Font.h +0 -0
- data/{Gosu → include/Gosu}/Font.hpp +0 -0
- data/{Gosu → include/Gosu}/Fwd.hpp +0 -0
- data/{Gosu → include/Gosu}/Gosu.h +3 -0
- data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
- data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
- data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
- data/{Gosu → include/Gosu}/IO.hpp +0 -0
- data/{Gosu → include/Gosu}/Image.h +0 -0
- data/{Gosu → include/Gosu}/Image.hpp +7 -6
- data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
- data/{Gosu → include/Gosu}/Input.hpp +30 -15
- data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
- data/{Gosu → include/Gosu}/Math.hpp +0 -0
- data/{Gosu → include/Gosu}/Platform.hpp +0 -0
- data/{Gosu → include/Gosu}/Sample.h +0 -0
- data/{Gosu → include/Gosu}/Song.h +0 -0
- data/{Gosu → include/Gosu}/Text.hpp +0 -0
- data/{Gosu → include/Gosu}/TextInput.h +0 -0
- data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
- data/{Gosu → include/Gosu}/Timing.hpp +0 -0
- data/{Gosu → include/Gosu}/Utility.hpp +1 -1
- data/{Gosu → include/Gosu}/Version.hpp +0 -0
- data/{Gosu → include/Gosu}/Window.h +2 -0
- data/{Gosu → include/Gosu}/Window.hpp +21 -13
- data/lib/OpenAL32.dll +0 -0
- data/lib/SDL2.dll +0 -0
- data/lib/gosu.rb +0 -3
- data/lib/gosu/patches.rb +0 -9
- data/lib/gosu/swig_patches.rb +3 -2
- data/lib/libmpg123.dll +0 -0
- data/lib/libsndfile.dll +0 -0
- data/lib64/OpenAL32.dll +0 -0
- data/lib64/SDL2.dll +0 -0
- data/lib64/libmpg123.dll +0 -0
- data/lib64/libsndfile.dll +0 -0
- data/rdoc/gosu.rb +95 -20
- data/src/Audio.cpp +50 -224
- data/src/AudioFile.hpp +17 -37
- data/src/AudioFileAudioToolbox.cpp +237 -0
- data/src/AudioFileSDLSound.cpp +147 -0
- data/src/AudioImpl.cpp +3 -12
- data/src/AudioImpl.hpp +3 -1
- data/src/Bitmap.cpp +85 -83
- data/src/BitmapIO.cpp +52 -58
- data/src/Constants.cpp +80 -33
- data/src/Font.cpp +3 -1
- data/src/GosuWrapper.cpp +19 -0
- data/src/Graphics.cpp +7 -4
- data/src/Image.cpp +13 -16
- data/src/Input.cpp +408 -159
- data/src/LargeImageData.cpp +1 -1
- data/src/MarkupParser.cpp +2 -1
- data/src/RubyGosu.cxx +349 -83
- data/src/RubyGosu.h +4 -2
- data/src/TexChunk.cpp +1 -1
- data/src/TextBuilder.cpp +3 -1
- data/src/Texture.cpp +1 -1
- data/src/TrueTypeFont.cpp +1 -1
- data/src/Utility.cpp +11 -7
- data/src/Window.cpp +30 -39
- data/src/WindowWrapper.cpp +28 -0
- metadata +207 -52
- data/Gosu/Bitmap.hpp +0 -113
- data/src/AudioToolboxFile.hpp +0 -210
- data/src/OggFile.hpp +0 -92
- data/src/SndFile.hpp +0 -174
- data/src/WinMain.cpp +0 -64
@@ -0,0 +1,149 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 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_wiz_h_
|
23
|
+
#define SDL_config_wiz_h_
|
24
|
+
#define SDL_config_h_
|
25
|
+
|
26
|
+
/* This is a set of defines to configure the SDL features */
|
27
|
+
|
28
|
+
/* General platform specific identifiers */
|
29
|
+
#include "SDL_platform.h"
|
30
|
+
|
31
|
+
#define SDL_BYTEORDER 1234
|
32
|
+
|
33
|
+
#define STDC_HEADERS 1
|
34
|
+
#define HAVE_ALLOCA_H 1
|
35
|
+
#define HAVE_CTYPE_H 1
|
36
|
+
#define HAVE_ICONV_H 1
|
37
|
+
#define HAVE_INTTYPES_H 1
|
38
|
+
#define HAVE_LIMITS_H 1
|
39
|
+
#define HAVE_MALLOC_H 1
|
40
|
+
#define HAVE_MATH_H 1
|
41
|
+
#define HAVE_MEMORY_H 1
|
42
|
+
#define HAVE_SIGNAL_H 1
|
43
|
+
#define HAVE_STDARG_H 1
|
44
|
+
#define HAVE_STDINT_H 1
|
45
|
+
#define HAVE_STDIO_H 1
|
46
|
+
#define HAVE_STDLIB_H 1
|
47
|
+
#define HAVE_STRINGS_H 1
|
48
|
+
#define HAVE_STRING_H 1
|
49
|
+
#define HAVE_SYS_TYPES_H 1
|
50
|
+
|
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_UNSETENV 1
|
60
|
+
#define HAVE_QSORT 1
|
61
|
+
#define HAVE_ABS 1
|
62
|
+
#define HAVE_BCOPY 1
|
63
|
+
#define HAVE_MEMSET 1
|
64
|
+
#define HAVE_MEMCPY 1
|
65
|
+
#define HAVE_MEMMOVE 1
|
66
|
+
#define HAVE_STRLEN 1
|
67
|
+
#define HAVE_STRCHR 1
|
68
|
+
#define HAVE_STRRCHR 1
|
69
|
+
#define HAVE_STRSTR 1
|
70
|
+
#define HAVE_STRTOK_R 1
|
71
|
+
#define HAVE_STRTOL 1
|
72
|
+
#define HAVE_STRTOUL 1
|
73
|
+
#define HAVE_STRTOLL 1
|
74
|
+
#define HAVE_STRTOULL 1
|
75
|
+
#define HAVE_ATOI 1
|
76
|
+
#define HAVE_ATOF 1
|
77
|
+
#define HAVE_STRCMP 1
|
78
|
+
#define HAVE_STRNCMP 1
|
79
|
+
#define HAVE_STRCASECMP 1
|
80
|
+
#define HAVE_STRNCASECMP 1
|
81
|
+
#define HAVE_VSSCANF 1
|
82
|
+
#define HAVE_VSNPRINTF 1
|
83
|
+
#define HAVE_M_PI 1
|
84
|
+
#define HAVE_ACOS 1
|
85
|
+
#define HAVE_ACOSF 1
|
86
|
+
#define HAVE_ASIN 1
|
87
|
+
#define HAVE_ASINF 1
|
88
|
+
#define HAVE_ATAN 1
|
89
|
+
#define HAVE_ATANF 1
|
90
|
+
#define HAVE_ATAN2 1
|
91
|
+
#define HAVE_ATAN2F 1
|
92
|
+
#define HAVE_CEIL 1
|
93
|
+
#define HAVE_CEILF 1
|
94
|
+
#define HAVE_COPYSIGN 1
|
95
|
+
#define HAVE_COPYSIGNF 1
|
96
|
+
#define HAVE_COS 1
|
97
|
+
#define HAVE_COSF 1
|
98
|
+
#define HAVE_EXP 1
|
99
|
+
#define HAVE_EXPF 1
|
100
|
+
#define HAVE_FABS 1
|
101
|
+
#define HAVE_FABSF 1
|
102
|
+
#define HAVE_FLOOR 1
|
103
|
+
#define HAVE_FLOORF 1
|
104
|
+
#define HAVE_FMOD 1
|
105
|
+
#define HAVE_FMODF 1
|
106
|
+
#define HAVE_LOG 1
|
107
|
+
#define HAVE_LOGF 1
|
108
|
+
#define HAVE_LOG10 1
|
109
|
+
#define HAVE_LOG10F 1
|
110
|
+
#define HAVE_POW 1
|
111
|
+
#define HAVE_POWF 1
|
112
|
+
#define HAVE_SCALBN 1
|
113
|
+
#define HAVE_SCALBNF 1
|
114
|
+
#define HAVE_SIN 1
|
115
|
+
#define HAVE_SINF 1
|
116
|
+
#define HAVE_SQRT 1
|
117
|
+
#define HAVE_SQRTF 1
|
118
|
+
#define HAVE_TAN 1
|
119
|
+
#define HAVE_TANF 1
|
120
|
+
#define HAVE_TRUNC 1
|
121
|
+
#define HAVE_TRUNCF 1
|
122
|
+
#define HAVE_SIGACTION 1
|
123
|
+
#define HAVE_SETJMP 1
|
124
|
+
#define HAVE_NANOSLEEP 1
|
125
|
+
#define HAVE_POW 1
|
126
|
+
|
127
|
+
#define SDL_AUDIO_DRIVER_DUMMY 1
|
128
|
+
#define SDL_AUDIO_DRIVER_OSS 1
|
129
|
+
|
130
|
+
#define SDL_INPUT_LINUXEV 1
|
131
|
+
#define SDL_JOYSTICK_LINUX 1
|
132
|
+
#define SDL_JOYSTICK_VIRTUAL 1
|
133
|
+
#define SDL_HAPTIC_LINUX 1
|
134
|
+
|
135
|
+
#define SDL_SENSOR_DUMMY 1
|
136
|
+
|
137
|
+
#define SDL_LOADSO_DLOPEN 1
|
138
|
+
|
139
|
+
#define SDL_THREAD_PTHREAD 1
|
140
|
+
#define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP 1
|
141
|
+
|
142
|
+
#define SDL_TIMER_UNIX 1
|
143
|
+
|
144
|
+
#define SDL_VIDEO_DRIVER_DUMMY 1
|
145
|
+
#define SDL_VIDEO_DRIVER_PANDORA 1
|
146
|
+
#define SDL_VIDEO_RENDER_OGL_ES 1
|
147
|
+
#define SDL_VIDEO_OPENGL_ES 1
|
148
|
+
|
149
|
+
#endif /* SDL_config_wiz_h_ */
|
@@ -0,0 +1,20 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 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
|
+
*/
|
@@ -0,0 +1,299 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 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
|
+
/**
|
23
|
+
* \file SDL_cpuinfo.h
|
24
|
+
*
|
25
|
+
* CPU feature detection for SDL.
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef SDL_cpuinfo_h_
|
29
|
+
#define SDL_cpuinfo_h_
|
30
|
+
|
31
|
+
#include "SDL_stdinc.h"
|
32
|
+
|
33
|
+
/* Need to do this here because intrin.h has C++ code in it */
|
34
|
+
/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */
|
35
|
+
#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64))
|
36
|
+
#ifdef __clang__
|
37
|
+
/* Many of the intrinsics SDL uses are not implemented by clang with Visual Studio */
|
38
|
+
#undef __MMX__
|
39
|
+
#undef __SSE__
|
40
|
+
#undef __SSE2__
|
41
|
+
#else
|
42
|
+
#include <intrin.h>
|
43
|
+
#ifndef _WIN64
|
44
|
+
#ifndef __MMX__
|
45
|
+
#define __MMX__
|
46
|
+
#endif
|
47
|
+
#ifndef __3dNOW__
|
48
|
+
#define __3dNOW__
|
49
|
+
#endif
|
50
|
+
#endif
|
51
|
+
#ifndef __SSE__
|
52
|
+
#define __SSE__
|
53
|
+
#endif
|
54
|
+
#ifndef __SSE2__
|
55
|
+
#define __SSE2__
|
56
|
+
#endif
|
57
|
+
#endif /* __clang__ */
|
58
|
+
#elif defined(__MINGW64_VERSION_MAJOR)
|
59
|
+
#include <intrin.h>
|
60
|
+
#else
|
61
|
+
/* altivec.h redefining bool causes a number of problems, see bugs 3993 and 4392, so you need to explicitly define SDL_ENABLE_ALTIVEC_H to have it included. */
|
62
|
+
#if defined(HAVE_ALTIVEC_H) && defined(__ALTIVEC__) && !defined(__APPLE_ALTIVEC__) && defined(SDL_ENABLE_ALTIVEC_H)
|
63
|
+
#include <altivec.h>
|
64
|
+
#endif
|
65
|
+
#if !defined(SDL_DISABLE_ARM_NEON_H)
|
66
|
+
# if defined(__ARM_NEON)
|
67
|
+
# include <arm_neon.h>
|
68
|
+
# elif defined(__WINDOWS__) || defined(__WINRT__)
|
69
|
+
/* Visual Studio doesn't define __ARM_ARCH, but _M_ARM (if set, always 7), and _M_ARM64 (if set, always 1). */
|
70
|
+
# if defined(_M_ARM)
|
71
|
+
# include <armintr.h>
|
72
|
+
# include <arm_neon.h>
|
73
|
+
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
|
74
|
+
# endif
|
75
|
+
# if defined (_M_ARM64)
|
76
|
+
# include <arm64intr.h>
|
77
|
+
# include <arm64_neon.h>
|
78
|
+
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
|
79
|
+
# endif
|
80
|
+
# endif
|
81
|
+
#endif
|
82
|
+
#if defined(__3dNOW__) && !defined(SDL_DISABLE_MM3DNOW_H)
|
83
|
+
#include <mm3dnow.h>
|
84
|
+
#endif
|
85
|
+
#if defined(HAVE_IMMINTRIN_H) && !defined(SDL_DISABLE_IMMINTRIN_H)
|
86
|
+
#include <immintrin.h>
|
87
|
+
#else
|
88
|
+
#if defined(__MMX__) && !defined(SDL_DISABLE_MMINTRIN_H)
|
89
|
+
#include <mmintrin.h>
|
90
|
+
#endif
|
91
|
+
#if defined(__SSE__) && !defined(SDL_DISABLE_XMMINTRIN_H)
|
92
|
+
#include <xmmintrin.h>
|
93
|
+
#endif
|
94
|
+
#if defined(__SSE2__) && !defined(SDL_DISABLE_EMMINTRIN_H)
|
95
|
+
#include <emmintrin.h>
|
96
|
+
#endif
|
97
|
+
#if defined(__SSE3__) && !defined(SDL_DISABLE_PMMINTRIN_H)
|
98
|
+
#include <pmmintrin.h>
|
99
|
+
#endif
|
100
|
+
#endif /* HAVE_IMMINTRIN_H */
|
101
|
+
#endif /* compiler version */
|
102
|
+
|
103
|
+
#include "begin_code.h"
|
104
|
+
/* Set up for C function definitions, even when using C++ */
|
105
|
+
#ifdef __cplusplus
|
106
|
+
extern "C" {
|
107
|
+
#endif
|
108
|
+
|
109
|
+
/* This is a guess for the cacheline size used for padding.
|
110
|
+
* Most x86 processors have a 64 byte cache line.
|
111
|
+
* The 64-bit PowerPC processors have a 128 byte cache line.
|
112
|
+
* We'll use the larger value to be generally safe.
|
113
|
+
*/
|
114
|
+
#define SDL_CACHELINE_SIZE 128
|
115
|
+
|
116
|
+
/**
|
117
|
+
* This function returns the number of CPU cores available.
|
118
|
+
*/
|
119
|
+
extern DECLSPEC int SDLCALL SDL_GetCPUCount(void);
|
120
|
+
|
121
|
+
/**
|
122
|
+
* This function returns the L1 cache line size of the CPU
|
123
|
+
*
|
124
|
+
* This is useful for determining multi-threaded structure padding
|
125
|
+
* or SIMD prefetch sizes.
|
126
|
+
*/
|
127
|
+
extern DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void);
|
128
|
+
|
129
|
+
/**
|
130
|
+
* This function returns true if the CPU has the RDTSC instruction.
|
131
|
+
*/
|
132
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasRDTSC(void);
|
133
|
+
|
134
|
+
/**
|
135
|
+
* This function returns true if the CPU has AltiVec features.
|
136
|
+
*/
|
137
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec(void);
|
138
|
+
|
139
|
+
/**
|
140
|
+
* This function returns true if the CPU has MMX features.
|
141
|
+
*/
|
142
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasMMX(void);
|
143
|
+
|
144
|
+
/**
|
145
|
+
* This function returns true if the CPU has 3DNow! features.
|
146
|
+
*/
|
147
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNow(void);
|
148
|
+
|
149
|
+
/**
|
150
|
+
* This function returns true if the CPU has SSE features.
|
151
|
+
*/
|
152
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(void);
|
153
|
+
|
154
|
+
/**
|
155
|
+
* This function returns true if the CPU has SSE2 features.
|
156
|
+
*/
|
157
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE2(void);
|
158
|
+
|
159
|
+
/**
|
160
|
+
* This function returns true if the CPU has SSE3 features.
|
161
|
+
*/
|
162
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE3(void);
|
163
|
+
|
164
|
+
/**
|
165
|
+
* This function returns true if the CPU has SSE4.1 features.
|
166
|
+
*/
|
167
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE41(void);
|
168
|
+
|
169
|
+
/**
|
170
|
+
* This function returns true if the CPU has SSE4.2 features.
|
171
|
+
*/
|
172
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE42(void);
|
173
|
+
|
174
|
+
/**
|
175
|
+
* This function returns true if the CPU has AVX features.
|
176
|
+
*/
|
177
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX(void);
|
178
|
+
|
179
|
+
/**
|
180
|
+
* This function returns true if the CPU has AVX2 features.
|
181
|
+
*/
|
182
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX2(void);
|
183
|
+
|
184
|
+
/**
|
185
|
+
* This function returns true if the CPU has AVX-512F (foundation) features.
|
186
|
+
*/
|
187
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX512F(void);
|
188
|
+
|
189
|
+
/**
|
190
|
+
* This function returns true if the CPU has ARM SIMD (ARMv6) features.
|
191
|
+
*/
|
192
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasARMSIMD(void);
|
193
|
+
|
194
|
+
/**
|
195
|
+
* This function returns true if the CPU has NEON (ARM SIMD) features.
|
196
|
+
*/
|
197
|
+
extern DECLSPEC SDL_bool SDLCALL SDL_HasNEON(void);
|
198
|
+
|
199
|
+
/**
|
200
|
+
* This function returns the amount of RAM configured in the system, in MB.
|
201
|
+
*/
|
202
|
+
extern DECLSPEC int SDLCALL SDL_GetSystemRAM(void);
|
203
|
+
|
204
|
+
/**
|
205
|
+
* \brief Report the alignment this system needs for SIMD allocations.
|
206
|
+
*
|
207
|
+
* This will return the minimum number of bytes to which a pointer must be
|
208
|
+
* aligned to be compatible with SIMD instructions on the current machine.
|
209
|
+
* For example, if the machine supports SSE only, it will return 16, but if
|
210
|
+
* it supports AVX-512F, it'll return 64 (etc). This only reports values for
|
211
|
+
* instruction sets SDL knows about, so if your SDL build doesn't have
|
212
|
+
* SDL_HasAVX512F(), then it might return 16 for the SSE support it sees and
|
213
|
+
* not 64 for the AVX-512 instructions that exist but SDL doesn't know about.
|
214
|
+
* Plan accordingly.
|
215
|
+
*/
|
216
|
+
extern DECLSPEC size_t SDLCALL SDL_SIMDGetAlignment(void);
|
217
|
+
|
218
|
+
/**
|
219
|
+
* \brief Allocate memory in a SIMD-friendly way.
|
220
|
+
*
|
221
|
+
* This will allocate a block of memory that is suitable for use with SIMD
|
222
|
+
* instructions. Specifically, it will be properly aligned and padded for
|
223
|
+
* the system's supported vector instructions.
|
224
|
+
*
|
225
|
+
* The memory returned will be padded such that it is safe to read or write
|
226
|
+
* an incomplete vector at the end of the memory block. This can be useful
|
227
|
+
* so you don't have to drop back to a scalar fallback at the end of your
|
228
|
+
* SIMD processing loop to deal with the final elements without overflowing
|
229
|
+
* the allocated buffer.
|
230
|
+
*
|
231
|
+
* You must free this memory with SDL_FreeSIMD(), not free() or SDL_free()
|
232
|
+
* or delete[], etc.
|
233
|
+
*
|
234
|
+
* Note that SDL will only deal with SIMD instruction sets it is aware of;
|
235
|
+
* for example, SDL 2.0.8 knows that SSE wants 16-byte vectors
|
236
|
+
* (SDL_HasSSE()), and AVX2 wants 32 bytes (SDL_HasAVX2()), but doesn't
|
237
|
+
* know that AVX-512 wants 64. To be clear: if you can't decide to use an
|
238
|
+
* instruction set with an SDL_Has*() function, don't use that instruction
|
239
|
+
* set with memory allocated through here.
|
240
|
+
*
|
241
|
+
* SDL_AllocSIMD(0) will return a non-NULL pointer, assuming the system isn't
|
242
|
+
* out of memory.
|
243
|
+
*
|
244
|
+
* \param len The length, in bytes, of the block to allocated. The actual
|
245
|
+
* allocated block might be larger due to padding, etc.
|
246
|
+
* \return Pointer to newly-allocated block, NULL if out of memory.
|
247
|
+
*
|
248
|
+
* \sa SDL_SIMDAlignment
|
249
|
+
* \sa SDL_SIMDRealloc
|
250
|
+
* \sa SDL_SIMDFree
|
251
|
+
*/
|
252
|
+
extern DECLSPEC void * SDLCALL SDL_SIMDAlloc(const size_t len);
|
253
|
+
|
254
|
+
/**
|
255
|
+
* \brief Reallocate memory obtained from SDL_SIMDAlloc
|
256
|
+
*
|
257
|
+
* It is not valid to use this function on a pointer from anything but
|
258
|
+
* SDL_SIMDAlloc(). It can't be used on pointers from malloc, realloc,
|
259
|
+
* SDL_malloc, memalign, new[], etc.
|
260
|
+
*
|
261
|
+
* \param mem The pointer obtained from SDL_SIMDAlloc. This function also
|
262
|
+
* accepts NULL, at which point this function is the same as
|
263
|
+
* calling SDL_realloc with a NULL pointer.
|
264
|
+
* \param len The length, in bytes, of the block to allocated. The actual
|
265
|
+
* allocated block might be larger due to padding, etc. Passing 0
|
266
|
+
* will return a non-NULL pointer, assuming the system isn't out of
|
267
|
+
* memory.
|
268
|
+
* \return Pointer to newly-reallocated block, NULL if out of memory.
|
269
|
+
*
|
270
|
+
* \sa SDL_SIMDAlignment
|
271
|
+
* \sa SDL_SIMDAlloc
|
272
|
+
* \sa SDL_SIMDFree
|
273
|
+
*/
|
274
|
+
extern DECLSPEC void * SDLCALL SDL_SIMDRealloc(void *mem, const size_t len);
|
275
|
+
|
276
|
+
/**
|
277
|
+
* \brief Deallocate memory obtained from SDL_SIMDAlloc
|
278
|
+
*
|
279
|
+
* It is not valid to use this function on a pointer from anything but
|
280
|
+
* SDL_SIMDAlloc(). It can't be used on pointers from malloc, realloc,
|
281
|
+
* SDL_malloc, memalign, new[], etc.
|
282
|
+
*
|
283
|
+
* However, SDL_SIMDFree(NULL) is a legal no-op.
|
284
|
+
*
|
285
|
+
* \sa SDL_SIMDAlloc
|
286
|
+
* \sa SDL_SIMDRealloc
|
287
|
+
*/
|
288
|
+
extern DECLSPEC void SDLCALL SDL_SIMDFree(void *ptr);
|
289
|
+
|
290
|
+
/* vi: set ts=4 sw=4 expandtab: */
|
291
|
+
/* Ends C function definitions when using C++ */
|
292
|
+
#ifdef __cplusplus
|
293
|
+
}
|
294
|
+
#endif
|
295
|
+
#include "close_code.h"
|
296
|
+
|
297
|
+
#endif /* SDL_cpuinfo_h_ */
|
298
|
+
|
299
|
+
/* vi: set ts=4 sw=4 expandtab: */
|