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.
Files changed (234) hide show
  1. checksums.yaml +4 -4
  2. data/dependencies/SDL/include/SDL.h +138 -0
  3. data/dependencies/SDL/include/SDL_assert.h +293 -0
  4. data/dependencies/SDL/include/SDL_atomic.h +295 -0
  5. data/dependencies/SDL/include/SDL_audio.h +859 -0
  6. data/dependencies/SDL/include/SDL_bits.h +121 -0
  7. data/dependencies/SDL/include/SDL_blendmode.h +123 -0
  8. data/dependencies/SDL/include/SDL_clipboard.h +71 -0
  9. data/dependencies/SDL/include/SDL_config.h +55 -0
  10. data/dependencies/SDL/include/SDL_config_android.h +182 -0
  11. data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
  12. data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
  13. data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
  14. data/dependencies/SDL/include/SDL_config_os2.h +188 -0
  15. data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
  16. data/dependencies/SDL/include/SDL_config_psp.h +165 -0
  17. data/dependencies/SDL/include/SDL_config_windows.h +288 -0
  18. data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
  19. data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
  20. data/dependencies/SDL/include/SDL_copying.h +20 -0
  21. data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
  22. data/dependencies/SDL/include/SDL_egl.h +1676 -0
  23. data/dependencies/SDL/include/SDL_endian.h +263 -0
  24. data/dependencies/SDL/include/SDL_error.h +112 -0
  25. data/dependencies/SDL/include/SDL_events.h +827 -0
  26. data/dependencies/SDL/include/SDL_filesystem.h +136 -0
  27. data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
  28. data/dependencies/SDL/include/SDL_gesture.h +87 -0
  29. data/dependencies/SDL/include/SDL_haptic.h +1247 -0
  30. data/dependencies/SDL/include/SDL_hints.h +1578 -0
  31. data/dependencies/SDL/include/SDL_joystick.h +499 -0
  32. data/dependencies/SDL/include/SDL_keyboard.h +217 -0
  33. data/dependencies/SDL/include/SDL_keycode.h +351 -0
  34. data/dependencies/SDL/include/SDL_loadso.h +81 -0
  35. data/dependencies/SDL/include/SDL_locale.h +101 -0
  36. data/dependencies/SDL/include/SDL_log.h +211 -0
  37. data/dependencies/SDL/include/SDL_main.h +180 -0
  38. data/dependencies/SDL/include/SDL_messagebox.h +146 -0
  39. data/dependencies/SDL/include/SDL_metal.h +117 -0
  40. data/dependencies/SDL/include/SDL_misc.h +75 -0
  41. data/dependencies/SDL/include/SDL_mouse.h +302 -0
  42. data/dependencies/SDL/include/SDL_mutex.h +251 -0
  43. data/dependencies/SDL/include/SDL_name.h +33 -0
  44. data/dependencies/SDL/include/SDL_opengl.h +2183 -0
  45. data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
  46. data/dependencies/SDL/include/SDL_opengles.h +39 -0
  47. data/dependencies/SDL/include/SDL_opengles2.h +52 -0
  48. data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
  49. data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
  50. data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
  51. data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
  52. data/dependencies/SDL/include/SDL_pixels.h +479 -0
  53. data/dependencies/SDL/include/SDL_platform.h +198 -0
  54. data/dependencies/SDL/include/SDL_power.h +75 -0
  55. data/dependencies/SDL/include/SDL_quit.h +58 -0
  56. data/dependencies/SDL/include/SDL_rect.h +174 -0
  57. data/dependencies/SDL/include/SDL_render.h +1158 -0
  58. data/dependencies/SDL/include/SDL_revision.h +2 -0
  59. data/dependencies/SDL/include/SDL_rwops.h +283 -0
  60. data/dependencies/SDL/include/SDL_scancode.h +413 -0
  61. data/dependencies/SDL/include/SDL_sensor.h +267 -0
  62. data/dependencies/SDL/include/SDL_shape.h +144 -0
  63. data/dependencies/SDL/include/SDL_stdinc.h +647 -0
  64. data/dependencies/SDL/include/SDL_surface.h +563 -0
  65. data/dependencies/SDL/include/SDL_system.h +325 -0
  66. data/dependencies/SDL/include/SDL_syswm.h +354 -0
  67. data/dependencies/SDL/include/SDL_test.h +69 -0
  68. data/dependencies/SDL/include/SDL_test_assert.h +105 -0
  69. data/dependencies/SDL/include/SDL_test_common.h +218 -0
  70. data/dependencies/SDL/include/SDL_test_compare.h +69 -0
  71. data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
  72. data/dependencies/SDL/include/SDL_test_font.h +81 -0
  73. data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
  74. data/dependencies/SDL/include/SDL_test_harness.h +134 -0
  75. data/dependencies/SDL/include/SDL_test_images.h +78 -0
  76. data/dependencies/SDL/include/SDL_test_log.h +67 -0
  77. data/dependencies/SDL/include/SDL_test_md5.h +129 -0
  78. data/dependencies/SDL/include/SDL_test_memory.h +63 -0
  79. data/dependencies/SDL/include/SDL_test_random.h +115 -0
  80. data/dependencies/SDL/include/SDL_thread.h +366 -0
  81. data/dependencies/SDL/include/SDL_timer.h +115 -0
  82. data/dependencies/SDL/include/SDL_touch.h +102 -0
  83. data/dependencies/SDL/include/SDL_types.h +29 -0
  84. data/dependencies/SDL/include/SDL_version.h +162 -0
  85. data/dependencies/SDL/include/SDL_video.h +1282 -0
  86. data/dependencies/SDL/include/SDL_vulkan.h +276 -0
  87. data/dependencies/SDL/include/begin_code.h +166 -0
  88. data/dependencies/SDL/include/close_code.h +40 -0
  89. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  90. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  91. data/dependencies/SDL_sound/SDL_sound.c +795 -0
  92. data/dependencies/SDL_sound/SDL_sound.h +725 -0
  93. data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
  94. data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
  95. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
  96. data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
  97. data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
  98. data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
  99. data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
  100. data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
  101. data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
  102. data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
  103. data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
  104. data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
  105. data/dependencies/SDL_sound/dr_flac.h +5906 -0
  106. data/dependencies/SDL_sound/dr_mp3.h +2832 -0
  107. data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
  108. data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
  109. data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
  110. data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
  111. data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
  112. data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
  113. data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
  114. data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
  115. data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
  116. data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
  117. data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
  118. data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
  119. data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
  120. data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
  121. data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
  122. data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
  123. data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
  124. data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
  125. data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
  126. data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
  127. data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
  128. data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
  129. data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
  130. data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
  131. data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
  132. data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
  133. data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
  134. data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
  135. data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
  136. data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
  137. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
  138. data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
  139. data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
  140. data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
  141. data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
  142. data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
  143. data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
  144. data/dependencies/al_soft/AL/al.h +655 -0
  145. data/dependencies/al_soft/AL/alc.h +270 -0
  146. data/dependencies/al_soft/AL/alext.h +585 -0
  147. data/dependencies/al_soft/AL/efx-creative.h +3 -0
  148. data/dependencies/al_soft/AL/efx-presets.h +402 -0
  149. data/dependencies/al_soft/AL/efx.h +762 -0
  150. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  151. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  152. data/{src → dependencies/stb}/stb_image.h +330 -127
  153. data/{src → dependencies/stb}/stb_image_write.h +156 -85
  154. data/{src → dependencies/stb}/stb_truetype.h +192 -69
  155. data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
  156. data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
  157. data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
  158. data/ext/gosu/extconf.rb +56 -22
  159. data/{Gosu → include/Gosu}/Audio.hpp +6 -8
  160. data/{Gosu → include/Gosu}/AutoLink.hpp +0 -0
  161. data/include/Gosu/Bitmap.hpp +100 -0
  162. data/{Gosu → include/Gosu}/Buttons.hpp +94 -35
  163. data/{Gosu → include/Gosu}/Channel.h +0 -0
  164. data/{Gosu → include/Gosu}/Color.h +0 -0
  165. data/{Gosu → include/Gosu}/Color.hpp +0 -0
  166. data/{Gosu → include/Gosu}/Directories.hpp +0 -0
  167. data/{Gosu → include/Gosu}/Font.h +0 -0
  168. data/{Gosu → include/Gosu}/Font.hpp +0 -0
  169. data/{Gosu → include/Gosu}/Fwd.hpp +0 -0
  170. data/{Gosu → include/Gosu}/Gosu.h +3 -0
  171. data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
  172. data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
  173. data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
  174. data/{Gosu → include/Gosu}/IO.hpp +0 -0
  175. data/{Gosu → include/Gosu}/Image.h +0 -0
  176. data/{Gosu → include/Gosu}/Image.hpp +7 -6
  177. data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
  178. data/{Gosu → include/Gosu}/Input.hpp +30 -15
  179. data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
  180. data/{Gosu → include/Gosu}/Math.hpp +0 -0
  181. data/{Gosu → include/Gosu}/Platform.hpp +0 -0
  182. data/{Gosu → include/Gosu}/Sample.h +0 -0
  183. data/{Gosu → include/Gosu}/Song.h +0 -0
  184. data/{Gosu → include/Gosu}/Text.hpp +0 -0
  185. data/{Gosu → include/Gosu}/TextInput.h +0 -0
  186. data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
  187. data/{Gosu → include/Gosu}/Timing.hpp +0 -0
  188. data/{Gosu → include/Gosu}/Utility.hpp +1 -1
  189. data/{Gosu → include/Gosu}/Version.hpp +0 -0
  190. data/{Gosu → include/Gosu}/Window.h +2 -0
  191. data/{Gosu → include/Gosu}/Window.hpp +21 -13
  192. data/lib/OpenAL32.dll +0 -0
  193. data/lib/SDL2.dll +0 -0
  194. data/lib/gosu.rb +0 -3
  195. data/lib/gosu/patches.rb +0 -9
  196. data/lib/gosu/swig_patches.rb +3 -2
  197. data/lib/libmpg123.dll +0 -0
  198. data/lib/libsndfile.dll +0 -0
  199. data/lib64/OpenAL32.dll +0 -0
  200. data/lib64/SDL2.dll +0 -0
  201. data/lib64/libmpg123.dll +0 -0
  202. data/lib64/libsndfile.dll +0 -0
  203. data/rdoc/gosu.rb +95 -20
  204. data/src/Audio.cpp +50 -224
  205. data/src/AudioFile.hpp +17 -37
  206. data/src/AudioFileAudioToolbox.cpp +237 -0
  207. data/src/AudioFileSDLSound.cpp +147 -0
  208. data/src/AudioImpl.cpp +3 -12
  209. data/src/AudioImpl.hpp +3 -1
  210. data/src/Bitmap.cpp +85 -83
  211. data/src/BitmapIO.cpp +52 -58
  212. data/src/Constants.cpp +80 -33
  213. data/src/Font.cpp +3 -1
  214. data/src/GosuWrapper.cpp +19 -0
  215. data/src/Graphics.cpp +7 -4
  216. data/src/Image.cpp +13 -16
  217. data/src/Input.cpp +408 -159
  218. data/src/LargeImageData.cpp +1 -1
  219. data/src/MarkupParser.cpp +2 -1
  220. data/src/RubyGosu.cxx +349 -83
  221. data/src/RubyGosu.h +4 -2
  222. data/src/TexChunk.cpp +1 -1
  223. data/src/TextBuilder.cpp +3 -1
  224. data/src/Texture.cpp +1 -1
  225. data/src/TrueTypeFont.cpp +1 -1
  226. data/src/Utility.cpp +11 -7
  227. data/src/Window.cpp +30 -39
  228. data/src/WindowWrapper.cpp +28 -0
  229. metadata +207 -52
  230. data/Gosu/Bitmap.hpp +0 -113
  231. data/src/AudioToolboxFile.hpp +0 -210
  232. data/src/OggFile.hpp +0 -92
  233. data/src/SndFile.hpp +0 -174
  234. data/src/WinMain.cpp +0 -64
@@ -0,0 +1,30 @@
1
+ #ifndef __gl2platform_h_
2
+ #define __gl2platform_h_
3
+
4
+ /* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */
5
+
6
+ /*
7
+ * This document is licensed under the SGI Free Software B License Version
8
+ * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
9
+ */
10
+
11
+ /* Platform-specific types and definitions for OpenGL ES 2.X gl2.h
12
+ *
13
+ * Adopters may modify khrplatform.h and this file to suit their platform.
14
+ * You are encouraged to submit all modifications to the Khronos group so that
15
+ * they can be included in future versions of this file. Please submit changes
16
+ * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla)
17
+ * by filing a bug against product "OpenGL-ES" component "Registry".
18
+ */
19
+
20
+ /*#include <KHR/khrplatform.h>*/
21
+
22
+ #ifndef GL_APICALL
23
+ #define GL_APICALL KHRONOS_APICALL
24
+ #endif
25
+
26
+ #ifndef GL_APIENTRY
27
+ #define GL_APIENTRY KHRONOS_APIENTRY
28
+ #endif
29
+
30
+ #endif /* __gl2platform_h_ */
@@ -0,0 +1,282 @@
1
+ #ifndef __khrplatform_h_
2
+ #define __khrplatform_h_
3
+
4
+ /*
5
+ ** Copyright (c) 2008-2009 The Khronos Group Inc.
6
+ **
7
+ ** Permission is hereby granted, free of charge, to any person obtaining a
8
+ ** copy of this software and/or associated documentation files (the
9
+ ** "Materials"), to deal in the Materials without restriction, including
10
+ ** without limitation the rights to use, copy, modify, merge, publish,
11
+ ** distribute, sublicense, and/or sell copies of the Materials, and to
12
+ ** permit persons to whom the Materials are furnished to do so, subject to
13
+ ** the following conditions:
14
+ **
15
+ ** The above copyright notice and this permission notice shall be included
16
+ ** in all copies or substantial portions of the Materials.
17
+ **
18
+ ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22
+ ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
25
+ */
26
+
27
+ /* Khronos platform-specific types and definitions.
28
+ *
29
+ * $Revision: 23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013) $
30
+ *
31
+ * Adopters may modify this file to suit their platform. Adopters are
32
+ * encouraged to submit platform specific modifications to the Khronos
33
+ * group so that they can be included in future versions of this file.
34
+ * Please submit changes by sending them to the public Khronos Bugzilla
35
+ * (http://khronos.org/bugzilla) by filing a bug against product
36
+ * "Khronos (general)" component "Registry".
37
+ *
38
+ * A predefined template which fills in some of the bug fields can be
39
+ * reached using http://tinyurl.com/khrplatform-h-bugreport, but you
40
+ * must create a Bugzilla login first.
41
+ *
42
+ *
43
+ * See the Implementer's Guidelines for information about where this file
44
+ * should be located on your system and for more details of its use:
45
+ * http://www.khronos.org/registry/implementers_guide.pdf
46
+ *
47
+ * This file should be included as
48
+ * #include <KHR/khrplatform.h>
49
+ * by Khronos client API header files that use its types and defines.
50
+ *
51
+ * The types in khrplatform.h should only be used to define API-specific types.
52
+ *
53
+ * Types defined in khrplatform.h:
54
+ * khronos_int8_t signed 8 bit
55
+ * khronos_uint8_t unsigned 8 bit
56
+ * khronos_int16_t signed 16 bit
57
+ * khronos_uint16_t unsigned 16 bit
58
+ * khronos_int32_t signed 32 bit
59
+ * khronos_uint32_t unsigned 32 bit
60
+ * khronos_int64_t signed 64 bit
61
+ * khronos_uint64_t unsigned 64 bit
62
+ * khronos_intptr_t signed same number of bits as a pointer
63
+ * khronos_uintptr_t unsigned same number of bits as a pointer
64
+ * khronos_ssize_t signed size
65
+ * khronos_usize_t unsigned size
66
+ * khronos_float_t signed 32 bit floating point
67
+ * khronos_time_ns_t unsigned 64 bit time in nanoseconds
68
+ * khronos_utime_nanoseconds_t unsigned time interval or absolute time in
69
+ * nanoseconds
70
+ * khronos_stime_nanoseconds_t signed time interval in nanoseconds
71
+ * khronos_boolean_enum_t enumerated boolean type. This should
72
+ * only be used as a base type when a client API's boolean type is
73
+ * an enum. Client APIs which use an integer or other type for
74
+ * booleans cannot use this as the base type for their boolean.
75
+ *
76
+ * Tokens defined in khrplatform.h:
77
+ *
78
+ * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values.
79
+ *
80
+ * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0.
81
+ * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0.
82
+ *
83
+ * Calling convention macros defined in this file:
84
+ * KHRONOS_APICALL
85
+ * KHRONOS_APIENTRY
86
+ * KHRONOS_APIATTRIBUTES
87
+ *
88
+ * These may be used in function prototypes as:
89
+ *
90
+ * KHRONOS_APICALL void KHRONOS_APIENTRY funcname(
91
+ * int arg1,
92
+ * int arg2) KHRONOS_APIATTRIBUTES;
93
+ */
94
+
95
+ /*-------------------------------------------------------------------------
96
+ * Definition of KHRONOS_APICALL
97
+ *-------------------------------------------------------------------------
98
+ * This precedes the return type of the function in the function prototype.
99
+ */
100
+ #if defined(_WIN32) && !defined(__SCITECH_SNAP__)
101
+ # define KHRONOS_APICALL __declspec(dllimport)
102
+ #elif defined (__SYMBIAN32__)
103
+ # define KHRONOS_APICALL IMPORT_C
104
+ #else
105
+ # define KHRONOS_APICALL
106
+ #endif
107
+
108
+ /*-------------------------------------------------------------------------
109
+ * Definition of KHRONOS_APIENTRY
110
+ *-------------------------------------------------------------------------
111
+ * This follows the return type of the function and precedes the function
112
+ * name in the function prototype.
113
+ */
114
+ #if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__)
115
+ /* Win32 but not WinCE */
116
+ # define KHRONOS_APIENTRY __stdcall
117
+ #else
118
+ # define KHRONOS_APIENTRY
119
+ #endif
120
+
121
+ /*-------------------------------------------------------------------------
122
+ * Definition of KHRONOS_APIATTRIBUTES
123
+ *-------------------------------------------------------------------------
124
+ * This follows the closing parenthesis of the function prototype arguments.
125
+ */
126
+ #if defined (__ARMCC_2__)
127
+ #define KHRONOS_APIATTRIBUTES __softfp
128
+ #else
129
+ #define KHRONOS_APIATTRIBUTES
130
+ #endif
131
+
132
+ /*-------------------------------------------------------------------------
133
+ * basic type definitions
134
+ *-----------------------------------------------------------------------*/
135
+ #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__)
136
+
137
+
138
+ /*
139
+ * Using <stdint.h>
140
+ */
141
+ #include <stdint.h>
142
+ typedef int32_t khronos_int32_t;
143
+ typedef uint32_t khronos_uint32_t;
144
+ typedef int64_t khronos_int64_t;
145
+ typedef uint64_t khronos_uint64_t;
146
+ #define KHRONOS_SUPPORT_INT64 1
147
+ #define KHRONOS_SUPPORT_FLOAT 1
148
+
149
+ #elif defined(__VMS ) || defined(__sgi)
150
+
151
+ /*
152
+ * Using <inttypes.h>
153
+ */
154
+ #include <inttypes.h>
155
+ typedef int32_t khronos_int32_t;
156
+ typedef uint32_t khronos_uint32_t;
157
+ typedef int64_t khronos_int64_t;
158
+ typedef uint64_t khronos_uint64_t;
159
+ #define KHRONOS_SUPPORT_INT64 1
160
+ #define KHRONOS_SUPPORT_FLOAT 1
161
+
162
+ #elif defined(_WIN32) && !defined(__SCITECH_SNAP__)
163
+
164
+ /*
165
+ * Win32
166
+ */
167
+ typedef __int32 khronos_int32_t;
168
+ typedef unsigned __int32 khronos_uint32_t;
169
+ typedef __int64 khronos_int64_t;
170
+ typedef unsigned __int64 khronos_uint64_t;
171
+ #define KHRONOS_SUPPORT_INT64 1
172
+ #define KHRONOS_SUPPORT_FLOAT 1
173
+
174
+ #elif defined(__sun__) || defined(__digital__)
175
+
176
+ /*
177
+ * Sun or Digital
178
+ */
179
+ typedef int khronos_int32_t;
180
+ typedef unsigned int khronos_uint32_t;
181
+ #if defined(__arch64__) || defined(_LP64)
182
+ typedef long int khronos_int64_t;
183
+ typedef unsigned long int khronos_uint64_t;
184
+ #else
185
+ typedef long long int khronos_int64_t;
186
+ typedef unsigned long long int khronos_uint64_t;
187
+ #endif /* __arch64__ */
188
+ #define KHRONOS_SUPPORT_INT64 1
189
+ #define KHRONOS_SUPPORT_FLOAT 1
190
+
191
+ #elif 0
192
+
193
+ /*
194
+ * Hypothetical platform with no float or int64 support
195
+ */
196
+ typedef int khronos_int32_t;
197
+ typedef unsigned int khronos_uint32_t;
198
+ #define KHRONOS_SUPPORT_INT64 0
199
+ #define KHRONOS_SUPPORT_FLOAT 0
200
+
201
+ #else
202
+
203
+ /*
204
+ * Generic fallback
205
+ */
206
+ #include <stdint.h>
207
+ typedef int32_t khronos_int32_t;
208
+ typedef uint32_t khronos_uint32_t;
209
+ typedef int64_t khronos_int64_t;
210
+ typedef uint64_t khronos_uint64_t;
211
+ #define KHRONOS_SUPPORT_INT64 1
212
+ #define KHRONOS_SUPPORT_FLOAT 1
213
+
214
+ #endif
215
+
216
+
217
+ /*
218
+ * Types that are (so far) the same on all platforms
219
+ */
220
+ typedef signed char khronos_int8_t;
221
+ typedef unsigned char khronos_uint8_t;
222
+ typedef signed short int khronos_int16_t;
223
+ typedef unsigned short int khronos_uint16_t;
224
+
225
+ /*
226
+ * Types that differ between LLP64 and LP64 architectures - in LLP64,
227
+ * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears
228
+ * to be the only LLP64 architecture in current use.
229
+ */
230
+ #ifdef _WIN64
231
+ typedef signed long long int khronos_intptr_t;
232
+ typedef unsigned long long int khronos_uintptr_t;
233
+ typedef signed long long int khronos_ssize_t;
234
+ typedef unsigned long long int khronos_usize_t;
235
+ #else
236
+ typedef signed long int khronos_intptr_t;
237
+ typedef unsigned long int khronos_uintptr_t;
238
+ typedef signed long int khronos_ssize_t;
239
+ typedef unsigned long int khronos_usize_t;
240
+ #endif
241
+
242
+ #if KHRONOS_SUPPORT_FLOAT
243
+ /*
244
+ * Float type
245
+ */
246
+ typedef float khronos_float_t;
247
+ #endif
248
+
249
+ #if KHRONOS_SUPPORT_INT64
250
+ /* Time types
251
+ *
252
+ * These types can be used to represent a time interval in nanoseconds or
253
+ * an absolute Unadjusted System Time. Unadjusted System Time is the number
254
+ * of nanoseconds since some arbitrary system event (e.g. since the last
255
+ * time the system booted). The Unadjusted System Time is an unsigned
256
+ * 64 bit value that wraps back to 0 every 584 years. Time intervals
257
+ * may be either signed or unsigned.
258
+ */
259
+ typedef khronos_uint64_t khronos_utime_nanoseconds_t;
260
+ typedef khronos_int64_t khronos_stime_nanoseconds_t;
261
+ #endif
262
+
263
+ /*
264
+ * Dummy value used to pad enum types to 32 bits.
265
+ */
266
+ #ifndef KHRONOS_MAX_ENUM
267
+ #define KHRONOS_MAX_ENUM 0x7FFFFFFF
268
+ #endif
269
+
270
+ /*
271
+ * Enumerated boolean type
272
+ *
273
+ * Values other than zero should be considered to be true. Therefore
274
+ * comparisons should not be made against KHRONOS_TRUE.
275
+ */
276
+ typedef enum {
277
+ KHRONOS_FALSE = 0,
278
+ KHRONOS_TRUE = 1,
279
+ KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM
280
+ } khronos_boolean_enum_t;
281
+
282
+ #endif /* __khrplatform_h_ */
@@ -0,0 +1,479 @@
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_pixels.h
24
+ *
25
+ * Header for the enumerated pixel format definitions.
26
+ */
27
+
28
+ #ifndef SDL_pixels_h_
29
+ #define SDL_pixels_h_
30
+
31
+ #include "SDL_stdinc.h"
32
+ #include "SDL_endian.h"
33
+
34
+ #include "begin_code.h"
35
+ /* Set up for C function definitions, even when using C++ */
36
+ #ifdef __cplusplus
37
+ extern "C" {
38
+ #endif
39
+
40
+ /**
41
+ * \name Transparency definitions
42
+ *
43
+ * These define alpha as the opacity of a surface.
44
+ */
45
+ /* @{ */
46
+ #define SDL_ALPHA_OPAQUE 255
47
+ #define SDL_ALPHA_TRANSPARENT 0
48
+ /* @} */
49
+
50
+ /** Pixel type. */
51
+ typedef enum
52
+ {
53
+ SDL_PIXELTYPE_UNKNOWN,
54
+ SDL_PIXELTYPE_INDEX1,
55
+ SDL_PIXELTYPE_INDEX4,
56
+ SDL_PIXELTYPE_INDEX8,
57
+ SDL_PIXELTYPE_PACKED8,
58
+ SDL_PIXELTYPE_PACKED16,
59
+ SDL_PIXELTYPE_PACKED32,
60
+ SDL_PIXELTYPE_ARRAYU8,
61
+ SDL_PIXELTYPE_ARRAYU16,
62
+ SDL_PIXELTYPE_ARRAYU32,
63
+ SDL_PIXELTYPE_ARRAYF16,
64
+ SDL_PIXELTYPE_ARRAYF32
65
+ } SDL_PixelType;
66
+
67
+ /** Bitmap pixel order, high bit -> low bit. */
68
+ typedef enum
69
+ {
70
+ SDL_BITMAPORDER_NONE,
71
+ SDL_BITMAPORDER_4321,
72
+ SDL_BITMAPORDER_1234
73
+ } SDL_BitmapOrder;
74
+
75
+ /** Packed component order, high bit -> low bit. */
76
+ typedef enum
77
+ {
78
+ SDL_PACKEDORDER_NONE,
79
+ SDL_PACKEDORDER_XRGB,
80
+ SDL_PACKEDORDER_RGBX,
81
+ SDL_PACKEDORDER_ARGB,
82
+ SDL_PACKEDORDER_RGBA,
83
+ SDL_PACKEDORDER_XBGR,
84
+ SDL_PACKEDORDER_BGRX,
85
+ SDL_PACKEDORDER_ABGR,
86
+ SDL_PACKEDORDER_BGRA
87
+ } SDL_PackedOrder;
88
+
89
+ /** Array component order, low byte -> high byte. */
90
+ /* !!! FIXME: in 2.1, make these not overlap differently with
91
+ !!! FIXME: SDL_PACKEDORDER_*, so we can simplify SDL_ISPIXELFORMAT_ALPHA */
92
+ typedef enum
93
+ {
94
+ SDL_ARRAYORDER_NONE,
95
+ SDL_ARRAYORDER_RGB,
96
+ SDL_ARRAYORDER_RGBA,
97
+ SDL_ARRAYORDER_ARGB,
98
+ SDL_ARRAYORDER_BGR,
99
+ SDL_ARRAYORDER_BGRA,
100
+ SDL_ARRAYORDER_ABGR
101
+ } SDL_ArrayOrder;
102
+
103
+ /** Packed component layout. */
104
+ typedef enum
105
+ {
106
+ SDL_PACKEDLAYOUT_NONE,
107
+ SDL_PACKEDLAYOUT_332,
108
+ SDL_PACKEDLAYOUT_4444,
109
+ SDL_PACKEDLAYOUT_1555,
110
+ SDL_PACKEDLAYOUT_5551,
111
+ SDL_PACKEDLAYOUT_565,
112
+ SDL_PACKEDLAYOUT_8888,
113
+ SDL_PACKEDLAYOUT_2101010,
114
+ SDL_PACKEDLAYOUT_1010102
115
+ } SDL_PackedLayout;
116
+
117
+ #define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D)
118
+
119
+ #define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \
120
+ ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \
121
+ ((bits) << 8) | ((bytes) << 0))
122
+
123
+ #define SDL_PIXELFLAG(X) (((X) >> 28) & 0x0F)
124
+ #define SDL_PIXELTYPE(X) (((X) >> 24) & 0x0F)
125
+ #define SDL_PIXELORDER(X) (((X) >> 20) & 0x0F)
126
+ #define SDL_PIXELLAYOUT(X) (((X) >> 16) & 0x0F)
127
+ #define SDL_BITSPERPIXEL(X) (((X) >> 8) & 0xFF)
128
+ #define SDL_BYTESPERPIXEL(X) \
129
+ (SDL_ISPIXELFORMAT_FOURCC(X) ? \
130
+ ((((X) == SDL_PIXELFORMAT_YUY2) || \
131
+ ((X) == SDL_PIXELFORMAT_UYVY) || \
132
+ ((X) == SDL_PIXELFORMAT_YVYU)) ? 2 : 1) : (((X) >> 0) & 0xFF))
133
+
134
+ #define SDL_ISPIXELFORMAT_INDEXED(format) \
135
+ (!SDL_ISPIXELFORMAT_FOURCC(format) && \
136
+ ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \
137
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \
138
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8)))
139
+
140
+ #define SDL_ISPIXELFORMAT_PACKED(format) \
141
+ (!SDL_ISPIXELFORMAT_FOURCC(format) && \
142
+ ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED8) || \
143
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED16) || \
144
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32)))
145
+
146
+ #define SDL_ISPIXELFORMAT_ARRAY(format) \
147
+ (!SDL_ISPIXELFORMAT_FOURCC(format) && \
148
+ ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU8) || \
149
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU16) || \
150
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU32) || \
151
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \
152
+ (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32)))
153
+
154
+ #define SDL_ISPIXELFORMAT_ALPHA(format) \
155
+ ((SDL_ISPIXELFORMAT_PACKED(format) && \
156
+ ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \
157
+ (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \
158
+ (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \
159
+ (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) || \
160
+ (SDL_ISPIXELFORMAT_ARRAY(format) && \
161
+ ((SDL_PIXELORDER(format) == SDL_ARRAYORDER_ARGB) || \
162
+ (SDL_PIXELORDER(format) == SDL_ARRAYORDER_RGBA) || \
163
+ (SDL_PIXELORDER(format) == SDL_ARRAYORDER_ABGR) || \
164
+ (SDL_PIXELORDER(format) == SDL_ARRAYORDER_BGRA))))
165
+
166
+ /* The flag is set to 1 because 0x1? is not in the printable ASCII range */
167
+ #define SDL_ISPIXELFORMAT_FOURCC(format) \
168
+ ((format) && (SDL_PIXELFLAG(format) != 1))
169
+
170
+ /* Note: If you modify this list, update SDL_GetPixelFormatName() */
171
+ typedef enum
172
+ {
173
+ SDL_PIXELFORMAT_UNKNOWN,
174
+ SDL_PIXELFORMAT_INDEX1LSB =
175
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0,
176
+ 1, 0),
177
+ SDL_PIXELFORMAT_INDEX1MSB =
178
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0,
179
+ 1, 0),
180
+ SDL_PIXELFORMAT_INDEX4LSB =
181
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0,
182
+ 4, 0),
183
+ SDL_PIXELFORMAT_INDEX4MSB =
184
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0,
185
+ 4, 0),
186
+ SDL_PIXELFORMAT_INDEX8 =
187
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1),
188
+ SDL_PIXELFORMAT_RGB332 =
189
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB,
190
+ SDL_PACKEDLAYOUT_332, 8, 1),
191
+ SDL_PIXELFORMAT_XRGB4444 =
192
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB,
193
+ SDL_PACKEDLAYOUT_4444, 12, 2),
194
+ SDL_PIXELFORMAT_RGB444 = SDL_PIXELFORMAT_XRGB4444,
195
+ SDL_PIXELFORMAT_XBGR4444 =
196
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR,
197
+ SDL_PACKEDLAYOUT_4444, 12, 2),
198
+ SDL_PIXELFORMAT_BGR444 = SDL_PIXELFORMAT_XBGR4444,
199
+ SDL_PIXELFORMAT_XRGB1555 =
200
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB,
201
+ SDL_PACKEDLAYOUT_1555, 15, 2),
202
+ SDL_PIXELFORMAT_RGB555 = SDL_PIXELFORMAT_XRGB1555,
203
+ SDL_PIXELFORMAT_XBGR1555 =
204
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR,
205
+ SDL_PACKEDLAYOUT_1555, 15, 2),
206
+ SDL_PIXELFORMAT_BGR555 = SDL_PIXELFORMAT_XBGR1555,
207
+ SDL_PIXELFORMAT_ARGB4444 =
208
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB,
209
+ SDL_PACKEDLAYOUT_4444, 16, 2),
210
+ SDL_PIXELFORMAT_RGBA4444 =
211
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA,
212
+ SDL_PACKEDLAYOUT_4444, 16, 2),
213
+ SDL_PIXELFORMAT_ABGR4444 =
214
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR,
215
+ SDL_PACKEDLAYOUT_4444, 16, 2),
216
+ SDL_PIXELFORMAT_BGRA4444 =
217
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA,
218
+ SDL_PACKEDLAYOUT_4444, 16, 2),
219
+ SDL_PIXELFORMAT_ARGB1555 =
220
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB,
221
+ SDL_PACKEDLAYOUT_1555, 16, 2),
222
+ SDL_PIXELFORMAT_RGBA5551 =
223
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA,
224
+ SDL_PACKEDLAYOUT_5551, 16, 2),
225
+ SDL_PIXELFORMAT_ABGR1555 =
226
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR,
227
+ SDL_PACKEDLAYOUT_1555, 16, 2),
228
+ SDL_PIXELFORMAT_BGRA5551 =
229
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA,
230
+ SDL_PACKEDLAYOUT_5551, 16, 2),
231
+ SDL_PIXELFORMAT_RGB565 =
232
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB,
233
+ SDL_PACKEDLAYOUT_565, 16, 2),
234
+ SDL_PIXELFORMAT_BGR565 =
235
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR,
236
+ SDL_PACKEDLAYOUT_565, 16, 2),
237
+ SDL_PIXELFORMAT_RGB24 =
238
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0,
239
+ 24, 3),
240
+ SDL_PIXELFORMAT_BGR24 =
241
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0,
242
+ 24, 3),
243
+ SDL_PIXELFORMAT_XRGB8888 =
244
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB,
245
+ SDL_PACKEDLAYOUT_8888, 24, 4),
246
+ SDL_PIXELFORMAT_RGB888 = SDL_PIXELFORMAT_XRGB8888,
247
+ SDL_PIXELFORMAT_RGBX8888 =
248
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX,
249
+ SDL_PACKEDLAYOUT_8888, 24, 4),
250
+ SDL_PIXELFORMAT_XBGR8888 =
251
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR,
252
+ SDL_PACKEDLAYOUT_8888, 24, 4),
253
+ SDL_PIXELFORMAT_BGR888 = SDL_PIXELFORMAT_XBGR8888,
254
+ SDL_PIXELFORMAT_BGRX8888 =
255
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX,
256
+ SDL_PACKEDLAYOUT_8888, 24, 4),
257
+ SDL_PIXELFORMAT_ARGB8888 =
258
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB,
259
+ SDL_PACKEDLAYOUT_8888, 32, 4),
260
+ SDL_PIXELFORMAT_RGBA8888 =
261
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA,
262
+ SDL_PACKEDLAYOUT_8888, 32, 4),
263
+ SDL_PIXELFORMAT_ABGR8888 =
264
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR,
265
+ SDL_PACKEDLAYOUT_8888, 32, 4),
266
+ SDL_PIXELFORMAT_BGRA8888 =
267
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA,
268
+ SDL_PACKEDLAYOUT_8888, 32, 4),
269
+ SDL_PIXELFORMAT_ARGB2101010 =
270
+ SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB,
271
+ SDL_PACKEDLAYOUT_2101010, 32, 4),
272
+
273
+ /* Aliases for RGBA byte arrays of color data, for the current platform */
274
+ #if SDL_BYTEORDER == SDL_BIG_ENDIAN
275
+ SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_RGBA8888,
276
+ SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_ARGB8888,
277
+ SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_BGRA8888,
278
+ SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_ABGR8888,
279
+ #else
280
+ SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_ABGR8888,
281
+ SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_BGRA8888,
282
+ SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_ARGB8888,
283
+ SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_RGBA8888,
284
+ #endif
285
+
286
+ SDL_PIXELFORMAT_YV12 = /**< Planar mode: Y + V + U (3 planes) */
287
+ SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'),
288
+ SDL_PIXELFORMAT_IYUV = /**< Planar mode: Y + U + V (3 planes) */
289
+ SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'),
290
+ SDL_PIXELFORMAT_YUY2 = /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */
291
+ SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'),
292
+ SDL_PIXELFORMAT_UYVY = /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */
293
+ SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'),
294
+ SDL_PIXELFORMAT_YVYU = /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */
295
+ SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U'),
296
+ SDL_PIXELFORMAT_NV12 = /**< Planar mode: Y + U/V interleaved (2 planes) */
297
+ SDL_DEFINE_PIXELFOURCC('N', 'V', '1', '2'),
298
+ SDL_PIXELFORMAT_NV21 = /**< Planar mode: Y + V/U interleaved (2 planes) */
299
+ SDL_DEFINE_PIXELFOURCC('N', 'V', '2', '1'),
300
+ SDL_PIXELFORMAT_EXTERNAL_OES = /**< Android video texture format */
301
+ SDL_DEFINE_PIXELFOURCC('O', 'E', 'S', ' ')
302
+ } SDL_PixelFormatEnum;
303
+
304
+ typedef struct SDL_Color
305
+ {
306
+ Uint8 r;
307
+ Uint8 g;
308
+ Uint8 b;
309
+ Uint8 a;
310
+ } SDL_Color;
311
+ #define SDL_Colour SDL_Color
312
+
313
+ typedef struct SDL_Palette
314
+ {
315
+ int ncolors;
316
+ SDL_Color *colors;
317
+ Uint32 version;
318
+ int refcount;
319
+ } SDL_Palette;
320
+
321
+ /**
322
+ * \note Everything in the pixel format structure is read-only.
323
+ */
324
+ typedef struct SDL_PixelFormat
325
+ {
326
+ Uint32 format;
327
+ SDL_Palette *palette;
328
+ Uint8 BitsPerPixel;
329
+ Uint8 BytesPerPixel;
330
+ Uint8 padding[2];
331
+ Uint32 Rmask;
332
+ Uint32 Gmask;
333
+ Uint32 Bmask;
334
+ Uint32 Amask;
335
+ Uint8 Rloss;
336
+ Uint8 Gloss;
337
+ Uint8 Bloss;
338
+ Uint8 Aloss;
339
+ Uint8 Rshift;
340
+ Uint8 Gshift;
341
+ Uint8 Bshift;
342
+ Uint8 Ashift;
343
+ int refcount;
344
+ struct SDL_PixelFormat *next;
345
+ } SDL_PixelFormat;
346
+
347
+ /**
348
+ * \brief Get the human readable name of a pixel format
349
+ */
350
+ extern DECLSPEC const char* SDLCALL SDL_GetPixelFormatName(Uint32 format);
351
+
352
+ /**
353
+ * \brief Convert one of the enumerated pixel formats to a bpp and RGBA masks.
354
+ *
355
+ * \return SDL_TRUE, or SDL_FALSE if the conversion wasn't possible.
356
+ *
357
+ * \sa SDL_MasksToPixelFormatEnum()
358
+ */
359
+ extern DECLSPEC SDL_bool SDLCALL SDL_PixelFormatEnumToMasks(Uint32 format,
360
+ int *bpp,
361
+ Uint32 * Rmask,
362
+ Uint32 * Gmask,
363
+ Uint32 * Bmask,
364
+ Uint32 * Amask);
365
+
366
+ /**
367
+ * \brief Convert a bpp and RGBA masks to an enumerated pixel format.
368
+ *
369
+ * \return The pixel format, or ::SDL_PIXELFORMAT_UNKNOWN if the conversion
370
+ * wasn't possible.
371
+ *
372
+ * \sa SDL_PixelFormatEnumToMasks()
373
+ */
374
+ extern DECLSPEC Uint32 SDLCALL SDL_MasksToPixelFormatEnum(int bpp,
375
+ Uint32 Rmask,
376
+ Uint32 Gmask,
377
+ Uint32 Bmask,
378
+ Uint32 Amask);
379
+
380
+ /**
381
+ * \brief Create an SDL_PixelFormat structure from a pixel format enum.
382
+ */
383
+ extern DECLSPEC SDL_PixelFormat * SDLCALL SDL_AllocFormat(Uint32 pixel_format);
384
+
385
+ /**
386
+ * \brief Free an SDL_PixelFormat structure.
387
+ */
388
+ extern DECLSPEC void SDLCALL SDL_FreeFormat(SDL_PixelFormat *format);
389
+
390
+ /**
391
+ * \brief Create a palette structure with the specified number of color
392
+ * entries.
393
+ *
394
+ * \return A new palette, or NULL if there wasn't enough memory.
395
+ *
396
+ * \note The palette entries are initialized to white.
397
+ *
398
+ * \sa SDL_FreePalette()
399
+ */
400
+ extern DECLSPEC SDL_Palette *SDLCALL SDL_AllocPalette(int ncolors);
401
+
402
+ /**
403
+ * \brief Set the palette for a pixel format structure.
404
+ */
405
+ extern DECLSPEC int SDLCALL SDL_SetPixelFormatPalette(SDL_PixelFormat * format,
406
+ SDL_Palette *palette);
407
+
408
+ /**
409
+ * \brief Set a range of colors in a palette.
410
+ *
411
+ * \param palette The palette to modify.
412
+ * \param colors An array of colors to copy into the palette.
413
+ * \param firstcolor The index of the first palette entry to modify.
414
+ * \param ncolors The number of entries to modify.
415
+ *
416
+ * \return 0 on success, or -1 if not all of the colors could be set.
417
+ */
418
+ extern DECLSPEC int SDLCALL SDL_SetPaletteColors(SDL_Palette * palette,
419
+ const SDL_Color * colors,
420
+ int firstcolor, int ncolors);
421
+
422
+ /**
423
+ * \brief Free a palette created with SDL_AllocPalette().
424
+ *
425
+ * \sa SDL_AllocPalette()
426
+ */
427
+ extern DECLSPEC void SDLCALL SDL_FreePalette(SDL_Palette * palette);
428
+
429
+ /**
430
+ * \brief Maps an RGB triple to an opaque pixel value for a given pixel format.
431
+ *
432
+ * \sa SDL_MapRGBA
433
+ */
434
+ extern DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormat * format,
435
+ Uint8 r, Uint8 g, Uint8 b);
436
+
437
+ /**
438
+ * \brief Maps an RGBA quadruple to a pixel value for a given pixel format.
439
+ *
440
+ * \sa SDL_MapRGB
441
+ */
442
+ extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormat * format,
443
+ Uint8 r, Uint8 g, Uint8 b,
444
+ Uint8 a);
445
+
446
+ /**
447
+ * \brief Get the RGB components from a pixel of the specified format.
448
+ *
449
+ * \sa SDL_GetRGBA
450
+ */
451
+ extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel,
452
+ const SDL_PixelFormat * format,
453
+ Uint8 * r, Uint8 * g, Uint8 * b);
454
+
455
+ /**
456
+ * \brief Get the RGBA components from a pixel of the specified format.
457
+ *
458
+ * \sa SDL_GetRGB
459
+ */
460
+ extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel,
461
+ const SDL_PixelFormat * format,
462
+ Uint8 * r, Uint8 * g, Uint8 * b,
463
+ Uint8 * a);
464
+
465
+ /**
466
+ * \brief Calculate a 256 entry gamma ramp for a gamma value.
467
+ */
468
+ extern DECLSPEC void SDLCALL SDL_CalculateGammaRamp(float gamma, Uint16 * ramp);
469
+
470
+
471
+ /* Ends C function definitions when using C++ */
472
+ #ifdef __cplusplus
473
+ }
474
+ #endif
475
+ #include "close_code.h"
476
+
477
+ #endif /* SDL_pixels_h_ */
478
+
479
+ /* vi: set ts=4 sw=4 expandtab: */