From 0a48abc860b436387c94e90c13fd0db25772e356 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 26 Nov 2022 20:43:38 -0800 Subject: [PATCH] Switch header convention from `#include "SDL.h"` to `#include ` I ran this script in the include directory: ```sh sed -i '' -e 's,#include "\(SDL.*\)",#include ,' *.h ``` I ran this script in the src directory: ```sh for i in ../include/SDL3/SDL*.h do hdr=$(basename $i) if [ x"$(echo $hdr | egrep 'SDL_main|SDL_name|SDL_test|SDL_syswm|SDL_opengl|SDL_egl|SDL_vulkan')" != x ]; then find . -type f -exec sed -i '' -e 's,#include "\('$hdr'\)",#include ,' {} \; else find . -type f -exec sed -i '' -e '/#include "'$hdr'"/d' {} \; fi done ``` Fixes https://github.com/libsdl-org/SDL/issues/6575 --- CMakeLists.txt | 7 +- VisualC-GDK/SDL/SDL.vcxproj | 156 +- VisualC-GDK/SDL/SDL.vcxproj.filters | 156 +- VisualC-WinRT/SDL-UWP.vcxproj | 106 +- VisualC-WinRT/SDL-UWP.vcxproj.filters | 106 +- VisualC/SDL/SDL.vcxproj | 155 +- VisualC/SDL/SDL.vcxproj.filters | 157 +- WhatsNew.txt | 1 + Xcode/SDL/SDL.xcodeproj/project.pbxproj | 1583 +++++++---------- build-scripts/showrev.sh | 6 +- build-scripts/test-versioning.sh | 6 +- build-scripts/update-version.sh | 6 +- build-scripts/updaterev.sh | 2 +- docs/README-migration.md | 2 + include/{ => SDL3}/SDL.h | 86 +- include/{ => SDL3}/SDL_assert.h | 6 +- include/{ => SDL3}/SDL_atomic.h | 8 +- include/{ => SDL3}/SDL_audio.h | 16 +- include/{ => SDL3}/SDL_bits.h | 6 +- include/{ => SDL3}/SDL_blendmode.h | 4 +- include/{ => SDL3}/SDL_clipboard.h | 6 +- include/{ => SDL3}/SDL_copying.h | 0 include/{ => SDL3}/SDL_cpuinfo.h | 6 +- include/{ => SDL3}/SDL_egl.h | 0 include/{ => SDL3}/SDL_endian.h | 6 +- include/{ => SDL3}/SDL_error.h | 6 +- include/{ => SDL3}/SDL_events.h | 24 +- include/{ => SDL3}/SDL_filesystem.h | 6 +- include/{ => SDL3}/SDL_gamecontroller.h | 14 +- include/{ => SDL3}/SDL_gesture.h | 12 +- include/{ => SDL3}/SDL_guid.h | 8 +- include/{ => SDL3}/SDL_haptic.h | 10 +- include/{ => SDL3}/SDL_hidapi.h | 6 +- include/{ => SDL3}/SDL_hints.h | 6 +- include/{ => SDL3}/SDL_joystick.h | 10 +- include/{ => SDL3}/SDL_keyboard.h | 12 +- include/{ => SDL3}/SDL_keycode.h | 4 +- include/{ => SDL3}/SDL_loadso.h | 8 +- include/{ => SDL3}/SDL_locale.h | 8 +- include/{ => SDL3}/SDL_log.h | 6 +- include/{ => SDL3}/SDL_main.h | 6 +- include/{ => SDL3}/SDL_messagebox.h | 8 +- include/{ => SDL3}/SDL_metal.h | 6 +- include/{ => SDL3}/SDL_misc.h | 6 +- include/{ => SDL3}/SDL_mouse.h | 10 +- include/{ => SDL3}/SDL_mutex.h | 8 +- include/{ => SDL3}/SDL_name.h | 0 include/{ => SDL3}/SDL_opengl.h | 6 +- include/{ => SDL3}/SDL_opengl_glext.h | 0 include/{ => SDL3}/SDL_opengles.h | 2 +- include/{ => SDL3}/SDL_opengles2.h | 10 +- include/{ => SDL3}/SDL_opengles2_gl2.h | 0 include/{ => SDL3}/SDL_opengles2_gl2ext.h | 0 .../{ => SDL3}/SDL_opengles2_gl2platform.h | 0 .../{ => SDL3}/SDL_opengles2_khrplatform.h | 0 include/{ => SDL3}/SDL_pixels.h | 8 +- include/{ => SDL3}/SDL_platform.h | 4 +- include/{ => SDL3}/SDL_power.h | 6 +- include/{ => SDL3}/SDL_quit.h | 4 +- include/{ => SDL3}/SDL_rect.h | 12 +- include/{ => SDL3}/SDL_render.h | 10 +- include/{ => SDL3}/SDL_revision.h | 0 include/{ => SDL3}/SDL_rwops.h | 8 +- include/{ => SDL3}/SDL_scancode.h | 2 +- include/{ => SDL3}/SDL_sensor.h | 8 +- include/{ => SDL3}/SDL_shape.h | 14 +- include/{ => SDL3}/SDL_stdinc.h | 6 +- include/{ => SDL3}/SDL_surface.h | 14 +- include/{ => SDL3}/SDL_system.h | 12 +- include/{ => SDL3}/SDL_syswm.h | 12 +- include/{ => SDL3}/SDL_test.h | 30 +- include/{ => SDL3}/SDL_test_assert.h | 4 +- include/{ => SDL3}/SDL_test_common.h | 6 +- include/{ => SDL3}/SDL_test_compare.h | 8 +- include/{ => SDL3}/SDL_test_crc32.h | 4 +- include/{ => SDL3}/SDL_test_font.h | 4 +- include/{ => SDL3}/SDL_test_fuzzer.h | 4 +- include/{ => SDL3}/SDL_test_harness.h | 4 +- include/{ => SDL3}/SDL_test_images.h | 6 +- include/{ => SDL3}/SDL_test_log.h | 4 +- include/{ => SDL3}/SDL_test_md5.h | 4 +- include/{ => SDL3}/SDL_test_memory.h | 4 +- include/{ => SDL3}/SDL_test_random.h | 4 +- include/{ => SDL3}/SDL_thread.h | 12 +- include/{ => SDL3}/SDL_timer.h | 8 +- include/{ => SDL3}/SDL_touch.h | 10 +- include/{ => SDL3}/SDL_version.h | 6 +- include/{ => SDL3}/SDL_video.h | 12 +- include/{ => SDL3}/SDL_vulkan.h | 6 +- include/{ => SDL3}/begin_code.h | 0 include/{ => SDL3}/close_code.h | 0 include/SDL_types.h | 29 - include/build_config/SDL_build_config.h | 2 +- include/build_config/SDL_build_config.h.cmake | 2 +- .../build_config/SDL_build_config_android.h | 2 +- .../SDL_build_config_emscripten.h | 2 +- include/build_config/SDL_build_config_ios.h | 2 +- include/build_config/SDL_build_config_macos.h | 2 +- .../build_config/SDL_build_config_minimal.h | 2 +- include/build_config/SDL_build_config_ngage.h | 2 +- .../build_config/SDL_build_config_windows.h | 2 +- .../build_config/SDL_build_config_wingdk.h | 2 +- include/build_config/SDL_build_config_winrt.h | 2 +- include/build_config/SDL_build_config_xbox.h | 2 +- sdl3-config.in | 2 +- src/SDL.c | 3 - src/SDL_assert.c | 5 - src/SDL_dataqueue.c | 1 - src/SDL_error.c | 1 - src/SDL_guid.c | 1 - src/SDL_hints.c | 2 - src/SDL_internal.h | 4 +- src/SDL_list.c | 1 - src/SDL_log.c | 3 - src/atomic/SDL_atomic.c | 1 - src/atomic/SDL_spinlock.c | 3 - src/audio/SDL_audio.c | 2 - src/audio/SDL_audiocvt.c | 4 - src/audio/SDL_audiodev.c | 1 - src/audio/SDL_audiodev_c.h | 1 - src/audio/SDL_audiotypecvt.c | 2 - src/audio/SDL_mixer.c | 3 - src/audio/SDL_sysaudio.h | 2 - src/audio/SDL_wave.c | 2 - src/audio/aaudio/SDL_aaudio.c | 2 - src/audio/alsa/SDL_alsa_audio.c | 3 - src/audio/android/SDL_androidaudio.c | 1 - src/audio/coreaudio/SDL_coreaudio.m | 2 - src/audio/directsound/SDL_directsound.c | 3 - src/audio/disk/SDL_diskaudio.c | 3 - src/audio/disk/SDL_diskaudio.h | 1 - src/audio/dsp/SDL_dspaudio.c | 2 - src/audio/dummy/SDL_dummyaudio.c | 2 - src/audio/emscripten/SDL_emscriptenaudio.c | 1 - src/audio/haiku/SDL_haikuaudio.cc | 1 - src/audio/jack/SDL_jackaudio.c | 3 - src/audio/n3ds/SDL_n3dsaudio.c | 2 - src/audio/netbsd/SDL_netbsdaudio.c | 2 - src/audio/openslES/SDL_openslES.c | 1 - src/audio/pipewire/SDL_pipewire.c | 3 - src/audio/ps2/SDL_ps2audio.c | 2 - src/audio/psp/SDL_pspaudio.c | 3 - src/audio/pulseaudio/SDL_pulseaudio.c | 4 - src/audio/sndio/SDL_sndioaudio.c | 2 - src/audio/vita/SDL_vitaaudio.c | 3 - src/audio/wasapi/SDL_wasapi.c | 2 - src/audio/wasapi/SDL_wasapi_win32.c | 2 - src/audio/wasapi/SDL_wasapi_winrt.cpp | 2 - src/core/android/SDL_android.c | 7 - src/core/android/SDL_android.h | 6 - src/core/freebsd/SDL_evdev_kbd_freebsd.c | 1 - src/core/gdk/SDL_gdk.cpp | 4 - src/core/linux/SDL_dbus.c | 3 - src/core/linux/SDL_dbus.h | 1 - src/core/linux/SDL_evdev.c | 3 - src/core/linux/SDL_evdev.h | 1 - src/core/linux/SDL_evdev_kbd.c | 1 - src/core/linux/SDL_fcitx.c | 5 +- src/core/linux/SDL_fcitx.h | 2 - src/core/linux/SDL_ibus.c | 4 +- src/core/linux/SDL_ibus.h | 1 - src/core/linux/SDL_ime.h | 2 - src/core/linux/SDL_threadprio.c | 4 - src/core/linux/SDL_udev.c | 4 - src/core/linux/SDL_udev.h | 2 - src/core/openbsd/SDL_wscons_kbd.c | 4 - src/core/openbsd/SDL_wscons_mouse.c | 1 - src/core/unix/SDL_poll.h | 1 - src/core/windows/SDL_immdevice.h | 2 - src/core/windows/SDL_windows.c | 1 - src/core/windows/SDL_windows.h | 2 - src/core/winrt/SDL_winrtapp_common.cpp | 2 - src/core/winrt/SDL_winrtapp_direct3d.cpp | 5 - src/core/winrt/SDL_winrtapp_xaml.cpp | 1 - src/core/winrt/SDL_winrtapp_xaml.h | 1 - src/cpuinfo/SDL_cpuinfo.c | 2 - src/dynapi/SDL_dynapi.c | 6 +- src/dynapi/gendynapi.pl | 4 +- src/events/SDL_clipboardevents.c | 1 - src/events/SDL_displayevents.c | 1 - src/events/SDL_dropevents.c | 1 - src/events/SDL_events.c | 5 +- src/events/SDL_events_c.h | 2 - src/events/SDL_gesture.c | 2 - src/events/SDL_keyboard.c | 3 - src/events/SDL_keyboard_c.h | 2 - src/events/SDL_keysym_to_scancode.c | 1 - src/events/SDL_keysym_to_scancode_c.h | 1 - src/events/SDL_mouse.c | 3 - src/events/SDL_mouse_c.h | 1 - src/events/SDL_quit.c | 2 - src/events/SDL_scancode_tables_c.h | 2 - src/events/SDL_touch.c | 1 - src/events/SDL_touch_c.h | 1 - src/events/SDL_windowevents.c | 2 - src/events/scancodes_ascii.h | 2 - src/events/scancodes_linux.h | 2 +- src/events/scancodes_windows.h | 2 +- src/events/scancodes_xfree86.h | 3 +- src/file/SDL_rwops.c | 3 - src/file/n3ds/SDL_rwopsromfs.c | 1 - src/filesystem/android/SDL_sysfilesystem.c | 3 - src/filesystem/cocoa/SDL_sysfilesystem.m | 3 - src/filesystem/dummy/SDL_sysfilesystem.c | 2 - src/filesystem/emscripten/SDL_sysfilesystem.c | 2 - src/filesystem/haiku/SDL_sysfilesystem.cc | 3 - src/filesystem/n3ds/SDL_sysfilesystem.c | 2 - src/filesystem/ps2/SDL_sysfilesystem.c | 2 - src/filesystem/psp/SDL_sysfilesystem.c | 2 - src/filesystem/riscos/SDL_sysfilesystem.c | 3 - src/filesystem/unix/SDL_sysfilesystem.c | 4 - src/filesystem/vita/SDL_sysfilesystem.c | 4 - src/filesystem/windows/SDL_sysfilesystem.c | 5 - src/filesystem/winrt/SDL_sysfilesystem.cpp | 5 - src/haptic/SDL_syshaptic.h | 1 - src/haptic/android/SDL_syshaptic.c | 3 - src/haptic/darwin/SDL_syshaptic.c | 3 - src/haptic/dummy/SDL_syshaptic.c | 1 - src/haptic/linux/SDL_syshaptic.c | 2 - src/haptic/windows/SDL_dinputhaptic.c | 6 - src/haptic/windows/SDL_dinputhaptic_c.h | 1 - src/haptic/windows/SDL_windowshaptic.c | 6 - src/haptic/windows/SDL_windowshaptic_c.h | 1 - src/haptic/windows/SDL_xinputhaptic.c | 5 - src/haptic/windows/SDL_xinputhaptic_c.h | 1 - src/hidapi/SDL_hidapi.c | 4 - src/hidapi/android/hid.cpp | 1 - src/hidapi/ios/hid.m | 1 - src/hidapi/libusb/hid.c | 3 - src/hidapi/linux/hid.c | 1 - src/hidapi/mac/hid.c | 1 - src/hidapi/windows/hid.c | 2 - src/joystick/SDL_gamecontroller.c | 4 - src/joystick/SDL_joystick.c | 4 - src/joystick/SDL_joystick_c.h | 2 - src/joystick/SDL_sysjoystick.h | 1 - src/joystick/android/SDL_sysjoystick.c | 5 - src/joystick/apple/SDL_mfijoystick.m | 4 - src/joystick/apple/SDL_mfijoystick_c.h | 1 - src/joystick/bsd/SDL_bsdjoystick.c | 1 - src/joystick/controller_type.c | 2 - src/joystick/darwin/SDL_iokitjoystick.c | 2 - src/joystick/dummy/SDL_sysjoystick.c | 1 - src/joystick/emscripten/SDL_sysjoystick.c | 4 - src/joystick/haiku/SDL_haikujoystick.cc | 1 - src/joystick/hidapi/SDL_hidapi_combined.c | 2 - src/joystick/hidapi/SDL_hidapi_gamecube.c | 5 - src/joystick/hidapi/SDL_hidapi_luna.c | 3 - src/joystick/hidapi/SDL_hidapi_ps3.c | 5 - src/joystick/hidapi/SDL_hidapi_ps4.c | 4 - src/joystick/hidapi/SDL_hidapi_ps5.c | 4 - src/joystick/hidapi/SDL_hidapi_rumble.c | 2 - src/joystick/hidapi/SDL_hidapi_shield.c | 4 - src/joystick/hidapi/SDL_hidapi_stadia.c | 3 - src/joystick/hidapi/SDL_hidapi_steam.c | 4 - src/joystick/hidapi/SDL_hidapi_switch.c | 4 - src/joystick/hidapi/SDL_hidapi_wii.c | 5 - src/joystick/hidapi/SDL_hidapi_xbox360.c | 4 - src/joystick/hidapi/SDL_hidapi_xbox360w.c | 4 - src/joystick/hidapi/SDL_hidapi_xboxone.c | 4 - src/joystick/hidapi/SDL_hidapijoystick.c | 5 - src/joystick/hidapi/SDL_hidapijoystick_c.h | 6 - src/joystick/linux/SDL_sysjoystick.c | 5 - src/joystick/n3ds/SDL_sysjoystick.c | 1 - src/joystick/ps2/SDL_sysjoystick.c | 2 - src/joystick/psp/SDL_sysjoystick.c | 2 - src/joystick/virtual/SDL_virtualjoystick.c | 1 - src/joystick/virtual/SDL_virtualjoystick_c.h | 1 - src/joystick/vita/SDL_sysjoystick.c | 5 - src/joystick/windows/SDL_dinputjoystick.c | 2 - src/joystick/windows/SDL_rawinputjoystick.c | 4 - .../windows/SDL_windows_gaming_input.c | 4 - src/joystick/windows/SDL_windowsjoystick.c | 6 - src/joystick/windows/SDL_windowsjoystick_c.h | 1 - src/joystick/windows/SDL_xinputjoystick.c | 2 - src/libm/k_rem_pio2.c | 1 - src/libm/math_private.h | 1 - src/loadso/dlopen/SDL_sysloadso.c | 1 - src/loadso/dummy/SDL_sysloadso.c | 1 - src/loadso/windows/SDL_sysloadso.c | 1 - src/locale/SDL_locale.c | 1 - src/locale/SDL_syslocale.h | 1 - src/main/dummy/SDL_dummy_main.c | 5 +- src/main/gdk/SDL_gdk_main.c | 5 +- src/main/haiku/SDL_BApp.h | 1 - src/main/haiku/SDL_BeApp.cc | 2 - src/main/n3ds/SDL_n3ds_main.c | 4 +- src/main/ngage/SDL_ngage_main.cpp | 10 +- src/main/ps2/SDL_ps2_main.c | 6 +- src/main/psp/SDL_psp_main.c | 3 +- src/main/uikit/SDL_uikit_main.c | 4 +- src/main/windows/SDL_windows_main.c | 6 +- src/main/winrt/SDL_winrt_main_NonXAML.cpp | 2 +- src/misc/SDL_sysurl.h | 2 - src/power/SDL_power.c | 1 - src/power/SDL_syspower.h | 1 - src/power/android/SDL_syspower.c | 1 - src/power/emscripten/SDL_syspower.c | 1 - src/power/haiku/SDL_syspower.c | 1 - src/power/linux/SDL_syspower.c | 1 - src/power/macos/SDL_syspower.c | 1 - src/power/n3ds/SDL_syspower.c | 2 - src/power/psp/SDL_syspower.c | 1 - src/power/uikit/SDL_syspower.h | 1 - src/power/uikit/SDL_syspower.m | 2 - src/power/vita/SDL_syspower.c | 1 - src/power/windows/SDL_syspower.c | 1 - src/power/winrt/SDL_syspower.cpp | 1 - src/render/SDL_d3dmath.c | 1 - src/render/SDL_render.c | 3 - src/render/SDL_sysrender.h | 3 - src/render/SDL_yuv_sw.c | 1 - src/render/SDL_yuv_sw_c.h | 1 - src/render/direct3d/SDL_render_d3d.c | 6 +- src/render/direct3d/SDL_shaders_d3d.c | 2 - src/render/direct3d11/SDL_render_d3d11.c | 6 +- src/render/direct3d11/SDL_render_winrt.cpp | 2 +- src/render/direct3d11/SDL_render_winrt.h | 1 - src/render/direct3d11/SDL_shaders_d3d11.c | 1 - src/render/direct3d12/SDL_render_d3d12.c | 6 +- src/render/direct3d12/SDL_shaders_d3d12.c | 1 - src/render/metal/SDL_render_metal.m | 4 +- src/render/opengl/SDL_render_gl.c | 3 +- src/render/opengl/SDL_shaders_gl.c | 4 +- src/render/opengles/SDL_render_gles.c | 3 +- src/render/opengles2/SDL_render_gles2.c | 3 +- src/render/opengles2/SDL_shaders_gles2.c | 5 +- src/render/ps2/SDL_render_ps2.c | 1 - src/render/psp/SDL_render_psp.c | 1 - src/render/software/SDL_render_sw.c | 1 - src/render/software/SDL_rotate.c | 1 - src/render/software/SDL_triangle.c | 1 - src/render/vitagxm/SDL_render_vita_gxm.c | 2 - .../vitagxm/SDL_render_vita_gxm_tools.c | 2 - .../vitagxm/SDL_render_vita_gxm_tools.h | 1 - .../vitagxm/SDL_render_vita_gxm_types.h | 1 - src/sensor/SDL_sensor.c | 3 - src/sensor/SDL_sensor_c.h | 1 - src/sensor/SDL_syssensor.h | 1 - src/sensor/android/SDL_androidsensor.c | 2 - src/sensor/coremotion/SDL_coremotionsensor.m | 2 - src/sensor/dummy/SDL_dummysensor.c | 2 - src/sensor/vita/SDL_vitasensor.c | 2 - src/sensor/windows/SDL_windowssensor.c | 3 - src/stdlib/SDL_crc16.c | 1 - src/stdlib/SDL_crc32.c | 1 - src/stdlib/SDL_getenv.c | 1 - src/stdlib/SDL_iconv.c | 2 - src/stdlib/SDL_malloc.c | 3 - src/stdlib/SDL_qsort.c | 1 - src/stdlib/SDL_stdlib.c | 1 - src/stdlib/SDL_strtokr.c | 1 - src/test/SDL_test_assert.c | 2 +- src/test/SDL_test_common.c | 2 +- src/test/SDL_test_compare.c | 2 +- src/test/SDL_test_crc32.c | 2 +- src/test/SDL_test_font.c | 2 +- src/test/SDL_test_fuzzer.c | 2 +- src/test/SDL_test_harness.c | 2 +- src/test/SDL_test_imageBlit.c | 2 +- src/test/SDL_test_imageBlitBlend.c | 2 +- src/test/SDL_test_imageFace.c | 2 +- src/test/SDL_test_imagePrimitives.c | 2 +- src/test/SDL_test_imagePrimitivesBlend.c | 2 +- src/test/SDL_test_log.c | 3 +- src/test/SDL_test_md5.c | 2 +- src/test/SDL_test_memory.c | 6 +- src/test/SDL_test_random.c | 2 +- src/thread/SDL_systhread.h | 1 - src/thread/SDL_thread.c | 2 - src/thread/SDL_thread_c.h | 1 - src/thread/generic/SDL_syscond.c | 1 - src/thread/generic/SDL_syscond_c.h | 1 - src/thread/generic/SDL_sysmutex.c | 1 - src/thread/generic/SDL_syssem.c | 2 - src/thread/generic/SDL_systhread.c | 1 - src/thread/n3ds/SDL_sysmutex_c.h | 1 - src/thread/n3ds/SDL_syssem.c | 1 - src/thread/ngage/SDL_sysmutex.cpp | 1 - src/thread/ngage/SDL_syssem.cpp | 2 - src/thread/ngage/SDL_systhread.cpp | 2 - src/thread/ps2/SDL_syssem.c | 2 - src/thread/ps2/SDL_systhread.c | 2 - src/thread/psp/SDL_syscond.c | 1 - src/thread/psp/SDL_sysmutex.c | 1 - src/thread/psp/SDL_syssem.c | 2 - src/thread/psp/SDL_systhread.c | 2 - src/thread/pthread/SDL_syscond.c | 1 - src/thread/pthread/SDL_sysmutex.c | 1 - src/thread/pthread/SDL_syssem.c | 2 - src/thread/pthread/SDL_systhread.c | 3 - src/thread/pthread/SDL_systls.c | 1 - src/thread/stdcpp/SDL_syscond.cpp | 1 - src/thread/stdcpp/SDL_sysmutex.cpp | 1 - src/thread/stdcpp/SDL_systhread.cpp | 1 - src/thread/vita/SDL_syscond.c | 1 - src/thread/vita/SDL_sysmutex.c | 1 - src/thread/vita/SDL_syssem.c | 2 - src/thread/vita/SDL_systhread.c | 2 - src/thread/windows/SDL_syscond_cv.c | 2 - src/thread/windows/SDL_sysmutex.c | 1 - src/thread/windows/SDL_sysmutex_c.h | 1 - src/thread/windows/SDL_syssem.c | 3 - src/thread/windows/SDL_systhread.c | 2 - src/thread/windows/SDL_systls.c | 1 - src/timer/SDL_timer.c | 3 - src/timer/SDL_timer_c.h | 1 - src/timer/dummy/SDL_systimer.c | 1 - src/timer/haiku/SDL_systimer.c | 1 - src/timer/ngage/SDL_systimer.cpp | 1 - src/timer/ps2/SDL_systimer.c | 3 - src/timer/psp/SDL_systimer.c | 3 - src/timer/unix/SDL_systimer.c | 2 - src/timer/vita/SDL_systimer.c | 3 - src/timer/windows/SDL_systimer.c | 2 - src/video/SDL_RLEaccel.c | 1 - src/video/SDL_blit.c | 1 - src/video/SDL_blit.h | 3 - src/video/SDL_blit_0.c | 1 - src/video/SDL_blit_1.c | 2 - src/video/SDL_blit_A.c | 1 - src/video/SDL_blit_N.c | 3 - src/video/SDL_blit_auto.c | 1 - src/video/SDL_blit_copy.c | 1 - src/video/SDL_blit_slow.c | 1 - src/video/SDL_bmp.c | 3 - src/video/SDL_clipboard.c | 1 - src/video/SDL_egl.c | 4 +- src/video/SDL_egl_c.h | 2 +- src/video/SDL_fillrect.c | 2 - src/video/SDL_pixels.c | 2 - src/video/SDL_rect.c | 1 - src/video/SDL_shape.c | 5 - src/video/SDL_shape_internals.h | 22 +- src/video/SDL_stretch.c | 2 - src/video/SDL_surface.c | 1 - src/video/SDL_sysvideo.h | 4 - src/video/SDL_video.c | 10 +- src/video/SDL_vulkan_internal.h | 5 +- src/video/SDL_vulkan_utils.c | 1 - src/video/SDL_yuv.c | 2 - src/video/android/SDL_androidevents.c | 1 - src/video/android/SDL_androidgl.c | 1 - src/video/android/SDL_androidmessagebox.c | 1 - src/video/android/SDL_androidmouse.c | 1 - src/video/android/SDL_androidtouch.c | 2 - src/video/android/SDL_androidvideo.c | 3 - src/video/android/SDL_androidvideo.h | 2 - src/video/android/SDL_androidvulkan.c | 3 +- src/video/android/SDL_androidwindow.c | 3 +- src/video/cocoa/SDL_cocoaevents.m | 2 - src/video/cocoa/SDL_cocoamessagebox.m | 3 - src/video/cocoa/SDL_cocoametalview.m | 3 +- src/video/cocoa/SDL_cocoamouse.m | 1 - src/video/cocoa/SDL_cocoaopengl.h | 1 - src/video/cocoa/SDL_cocoaopengl.m | 4 +- src/video/cocoa/SDL_cocoashape.h | 3 - src/video/cocoa/SDL_cocoashape.m | 1 - src/video/cocoa/SDL_cocoavideo.h | 3 +- src/video/cocoa/SDL_cocoavideo.m | 2 - src/video/cocoa/SDL_cocoavulkan.m | 3 +- src/video/cocoa/SDL_cocoawindow.m | 4 +- src/video/dummy/SDL_nullvideo.c | 3 - src/video/emscripten/SDL_emscriptenevents.c | 1 - .../emscripten/SDL_emscriptenframebuffer.c | 1 - src/video/emscripten/SDL_emscriptenmouse.h | 1 - src/video/emscripten/SDL_emscriptenopengles.c | 1 - src/video/emscripten/SDL_emscriptenvideo.c | 3 - src/video/haiku/SDL_BApp.h | 1 - src/video/haiku/SDL_BWin.h | 4 +- src/video/haiku/SDL_bclipboard.cc | 1 - src/video/haiku/SDL_bkeyboard.cc | 2 - src/video/haiku/SDL_bkeyboard.h | 2 - src/video/haiku/SDL_bmessagebox.cc | 1 - src/video/haiku/SDL_bwindow.cc | 2 +- src/video/kmsdrm/SDL_kmsdrmdyn.c | 3 +- src/video/kmsdrm/SDL_kmsdrmopengles.c | 1 - src/video/kmsdrm/SDL_kmsdrmvideo.c | 4 +- src/video/kmsdrm/SDL_kmsdrmvulkan.c | 4 +- src/video/ngage/SDL_ngagevideo.cpp | 1 - src/video/ngage/SDL_ngagewindow.h | 2 +- src/video/offscreen/SDL_offscreenvideo.c | 1 - src/video/ps2/SDL_ps2video.c | 3 - src/video/psp/SDL_pspevents.c | 2 - src/video/psp/SDL_pspgl.c | 1 - src/video/psp/SDL_pspmouse.c | 2 - src/video/psp/SDL_pspvideo.c | 5 +- src/video/raspberry/SDL_rpimouse.c | 2 - src/video/raspberry/SDL_rpiopengles.c | 1 - src/video/raspberry/SDL_rpivideo.c | 6 +- src/video/riscos/SDL_riscosevents.c | 1 - src/video/riscos/SDL_riscosmessagebox.c | 1 - src/video/riscos/SDL_riscosvideo.c | 2 - src/video/riscos/SDL_riscoswindow.c | 3 +- src/video/riscos/scancodes_riscos.h | 1 - src/video/sdlgenblit.pl | 1 - src/video/uikit/SDL_uikitappdelegate.m | 3 - src/video/uikit/SDL_uikitevents.m | 1 - src/video/uikit/SDL_uikitmessagebox.m | 1 - src/video/uikit/SDL_uikitmetalview.m | 2 +- src/video/uikit/SDL_uikitmodes.m | 1 - src/video/uikit/SDL_uikitopengles.m | 1 - src/video/uikit/SDL_uikitvideo.m | 3 - src/video/uikit/SDL_uikitview.h | 1 - src/video/uikit/SDL_uikitview.m | 1 - src/video/uikit/SDL_uikitviewcontroller.h | 1 - src/video/uikit/SDL_uikitviewcontroller.m | 2 - src/video/uikit/SDL_uikitvulkan.m | 3 +- src/video/uikit/SDL_uikitwindow.m | 6 +- src/video/vita/SDL_vitagl_pvr.c | 2 - src/video/vita/SDL_vitagles.c | 2 - src/video/vita/SDL_vitagles_pvr.c | 2 - src/video/vita/SDL_vitakeyboard.c | 2 - src/video/vita/SDL_vitamouse.c | 3 - src/video/vita/SDL_vitatouch.c | 2 - src/video/vita/SDL_vitavideo.c | 5 +- src/video/vivante/SDL_vivantevideo.c | 5 +- src/video/vivante/SDL_vivantevideo.h | 2 +- src/video/vivante/SDL_vivantevulkan.c | 3 +- src/video/wayland/SDL_waylanddatamanager.c | 1 - src/video/wayland/SDL_waylanddyn.c | 3 +- src/video/wayland/SDL_waylandevents.c | 3 - src/video/wayland/SDL_waylandmessagebox.c | 1 - src/video/wayland/SDL_waylandmouse.c | 2 - src/video/wayland/SDL_waylandmouse.h | 1 - src/video/wayland/SDL_waylandopengles.c | 1 - src/video/wayland/SDL_waylandtouch.c | 2 - src/video/wayland/SDL_waylandvideo.c | 4 - src/video/wayland/SDL_waylandvideo.h | 1 - src/video/wayland/SDL_waylandvulkan.c | 3 +- src/video/wayland/SDL_waylandwindow.c | 2 - src/video/wayland/SDL_waylandwindow.h | 2 +- src/video/windows/SDL_windowsevents.c | 8 +- src/video/windows/SDL_windowskeyboard.c | 1 - src/video/windows/SDL_windowsopengl.c | 4 +- src/video/windows/SDL_windowsopengles.c | 1 - src/video/windows/SDL_windowsshape.h | 2 - src/video/windows/SDL_windowsvideo.c | 5 - src/video/windows/SDL_windowsvideo.h | 2 - src/video/windows/SDL_windowsvulkan.c | 3 +- src/video/windows/SDL_windowswindow.c | 6 +- src/video/winrt/SDL_winrtevents.cpp | 1 - src/video/winrt/SDL_winrtgamebar.cpp | 1 - src/video/winrt/SDL_winrtkeyboard.cpp | 1 - src/video/winrt/SDL_winrtmessagebox.cpp | 1 - src/video/winrt/SDL_winrtmouse.cpp | 1 - src/video/winrt/SDL_winrtopengles.cpp | 1 - src/video/winrt/SDL_winrtpointerinput.cpp | 1 - src/video/winrt/SDL_winrtvideo.cpp | 7 +- src/video/winrt/SDL_winrtvideo_cpp.h | 2 - src/video/x11/SDL_x11clipboard.c | 2 - src/video/x11/SDL_x11dyn.c | 3 +- src/video/x11/SDL_x11events.c | 4 +- src/video/x11/SDL_x11keyboard.c | 2 - src/video/x11/SDL_x11messagebox.c | 1 - src/video/x11/SDL_x11modes.c | 2 - src/video/x11/SDL_x11opengl.c | 2 - src/video/x11/SDL_x11opengl.h | 2 +- src/video/x11/SDL_x11opengles.c | 1 - src/video/x11/SDL_x11shape.h | 2 - src/video/x11/SDL_x11video.c | 4 - src/video/x11/SDL_x11video.h | 1 - src/video/x11/SDL_x11vulkan.c | 1 - src/video/x11/SDL_x11window.c | 4 +- src/video/x11/edid-parse.c | 1 - src/video/yuv2rgb/yuv_rgb.c | 1 - src/video/yuv2rgb/yuv_rgb.h | 1 - test/checkkeys.c | 4 +- test/checkkeysthreads.c | 2 +- test/controllermap.c | 2 +- test/loopwave.c | 2 +- test/loopwavequeue.c | 2 +- test/testatomic.c | 2 +- test/testaudiocapture.c | 2 +- test/testaudiohotplug.c | 2 +- test/testaudioinfo.c | 2 +- test/testautomation.c | 4 +- test/testautomation_audio.c | 4 +- test/testautomation_clipboard.c | 4 +- test/testautomation_events.c | 4 +- test/testautomation_guid.c | 4 +- test/testautomation_hints.c | 4 +- test/testautomation_joystick.c | 4 +- test/testautomation_keyboard.c | 4 +- test/testautomation_main.c | 4 +- test/testautomation_math.c | 4 +- test/testautomation_mouse.c | 4 +- test/testautomation_pixels.c | 4 +- test/testautomation_platform.c | 4 +- test/testautomation_rect.c | 4 +- test/testautomation_render.c | 4 +- test/testautomation_rwops.c | 4 +- test/testautomation_sdltest.c | 4 +- test/testautomation_stdlib.c | 4 +- test/testautomation_suites.h | 2 +- test/testautomation_surface.c | 4 +- test/testautomation_syswm.c | 6 +- test/testautomation_timer.c | 4 +- test/testautomation_video.c | 4 +- test/testbounds.c | 2 +- test/testcustomcursor.c | 2 +- test/testdisplayinfo.c | 2 +- test/testdraw2.c | 2 +- test/testdrawchessboard.c | 2 +- test/testdropfile.c | 2 +- test/testerror.c | 2 +- test/testevdev.c | 2 - test/testfile.c | 2 +- test/testfilesystem.c | 2 +- test/testgamecontroller.c | 2 +- test/testgeometry.c | 2 +- test/testgesture.c | 6 +- test/testgl2.c | 4 +- test/testgles.c | 4 +- test/testgles2.c | 4 +- test/testgles2_sdf.c | 4 +- test/testhaptic.c | 2 +- test/testhittesting.c | 2 +- test/testhotplug.c | 2 +- test/testiconv.c | 2 +- test/testime.c | 4 +- test/testintersections.c | 2 +- test/testjoystick.c | 2 +- test/testkeys.c | 2 +- test/testloadso.c | 2 +- test/testlocale.c | 2 +- test/testlock.c | 2 +- test/testmessage.c | 2 +- test/testmouse.c | 2 +- test/testmultiaudio.c | 2 +- test/testnative.h | 2 +- test/testoffscreen.c | 5 +- test/testoverlay2.c | 2 +- test/testplatform.c | 2 +- test/testpower.c | 2 +- test/testqsort.c | 2 +- test/testrelative.c | 2 +- test/testrendercopyex.c | 2 +- test/testrendertarget.c | 2 +- test/testresample.c | 2 +- test/testrumble.c | 2 +- test/testscale.c | 2 +- test/testsem.c | 2 +- test/testsensor.c | 2 +- test/testshader.c | 4 +- test/testshape.c | 3 +- test/testsprite2.c | 4 +- test/testspriteminimal.c | 2 +- test/teststreaming.c | 2 +- test/testsurround.c | 2 +- test/testthread.c | 2 +- test/testtimer.c | 2 +- test/testurl.c | 2 +- test/testutils.h | 2 +- test/testver.c | 3 +- test/testviewport.c | 4 +- test/testvulkan.c | 4 +- test/testwm2.c | 4 +- test/testyuv.c | 4 +- test/testyuv_cvt.c | 2 +- test/torturethread.c | 2 +- 661 files changed, 1623 insertions(+), 2833 deletions(-) rename include/{ => SDL3}/SDL.h (83%) rename include/{ => SDL3}/SDL_assert.h (99%) rename include/{ => SDL3}/SDL_atomic.h (99%) rename include/{ => SDL3}/SDL_audio.h (99%) rename include/{ => SDL3}/SDL_bits.h (97%) rename include/{ => SDL3}/SDL_blendmode.h (99%) rename include/{ => SDL3}/SDL_clipboard.h (97%) rename include/{ => SDL3}/SDL_copying.h (100%) rename include/{ => SDL3}/SDL_cpuinfo.h (99%) rename include/{ => SDL3}/SDL_egl.h (100%) rename include/{ => SDL3}/SDL_endian.h (99%) rename include/{ => SDL3}/SDL_error.h (98%) rename include/{ => SDL3}/SDL_events.h (99%) rename include/{ => SDL3}/SDL_filesystem.h (98%) rename include/{ => SDL3}/SDL_gamecontroller.h (99%) rename include/{ => SDL3}/SDL_gesture.h (95%) rename include/{ => SDL3}/SDL_guid.h (96%) rename include/{ => SDL3}/SDL_haptic.h (99%) rename include/{ => SDL3}/SDL_hidapi.h (99%) rename include/{ => SDL3}/SDL_hints.h (99%) rename include/{ => SDL3}/SDL_joystick.h (99%) rename include/{ => SDL3}/SDL_keyboard.h (98%) rename include/{ => SDL3}/SDL_keycode.h (99%) rename include/{ => SDL3}/SDL_loadso.h (97%) rename include/{ => SDL3}/SDL_locale.h (96%) rename include/{ => SDL3}/SDL_log.h (99%) rename include/{ => SDL3}/SDL_main.h (98%) rename include/{ => SDL3}/SDL_messagebox.h (97%) rename include/{ => SDL3}/SDL_metal.h (97%) rename include/{ => SDL3}/SDL_misc.h (96%) rename include/{ => SDL3}/SDL_mouse.h (99%) rename include/{ => SDL3}/SDL_mutex.h (99%) rename include/{ => SDL3}/SDL_name.h (100%) rename include/{ => SDL3}/SDL_opengl.h (99%) rename include/{ => SDL3}/SDL_opengl_glext.h (100%) rename include/{ => SDL3}/SDL_opengles.h (97%) rename include/{ => SDL3}/SDL_opengles2.h (88%) rename include/{ => SDL3}/SDL_opengles2_gl2.h (100%) rename include/{ => SDL3}/SDL_opengles2_gl2ext.h (100%) rename include/{ => SDL3}/SDL_opengles2_gl2platform.h (100%) rename include/{ => SDL3}/SDL_opengles2_khrplatform.h (100%) rename include/{ => SDL3}/SDL_pixels.h (99%) rename include/{ => SDL3}/SDL_platform.h (99%) rename include/{ => SDL3}/SDL_power.h (97%) rename include/{ => SDL3}/SDL_quit.h (97%) rename include/{ => SDL3}/SDL_rect.h (98%) rename include/{ => SDL3}/SDL_render.h (99%) rename include/{ => SDL3}/SDL_revision.h (100%) rename include/{ => SDL3}/SDL_rwops.h (99%) rename include/{ => SDL3}/SDL_scancode.h (99%) rename include/{ => SDL3}/SDL_sensor.h (98%) rename include/{ => SDL3}/SDL_shape.h (96%) rename include/{ => SDL3}/SDL_stdinc.h (99%) rename include/{ => SDL3}/SDL_surface.h (99%) rename include/{ => SDL3}/SDL_system.h (99%) rename include/{ => SDL3}/SDL_syswm.h (98%) rename include/{ => SDL3}/SDL_test.h (76%) rename include/{ => SDL3}/SDL_test_assert.h (98%) rename include/{ => SDL3}/SDL_test_common.h (98%) rename include/{ => SDL3}/SDL_test_compare.h (94%) rename include/{ => SDL3}/SDL_test_crc32.h (98%) rename include/{ => SDL3}/SDL_test_font.h (98%) rename include/{ => SDL3}/SDL_test_fuzzer.h (99%) rename include/{ => SDL3}/SDL_test_harness.h (98%) rename include/{ => SDL3}/SDL_test_images.h (96%) rename include/{ => SDL3}/SDL_test_log.h (97%) rename include/{ => SDL3}/SDL_test_md5.h (98%) rename include/{ => SDL3}/SDL_test_memory.h (96%) rename include/{ => SDL3}/SDL_test_random.h (98%) rename include/{ => SDL3}/SDL_thread.h (98%) rename include/{ => SDL3}/SDL_timer.h (98%) rename include/{ => SDL3}/SDL_touch.h (96%) rename include/{ => SDL3}/SDL_version.h (98%) rename include/{ => SDL3}/SDL_video.h (99%) rename include/{ => SDL3}/SDL_vulkan.h (98%) rename include/{ => SDL3}/begin_code.h (100%) rename include/{ => SDL3}/close_code.h (100%) delete mode 100644 include/SDL_types.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 125e0da9c..528b4b9a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2922,7 +2922,7 @@ endif() listtostr(EXTRA_CFLAGS _EXTRA_CFLAGS) set(EXTRA_CFLAGS ${_EXTRA_CFLAGS}) -file(GLOB SDL3_INCLUDE_FILES ${SDL3_SOURCE_DIR}/include/*.h) +file(GLOB SDL3_INCLUDE_FILES ${SDL3_SOURCE_DIR}/include/SDL3/*.h) foreach(_hdr IN LISTS SDL3_INCLUDE_FILES) if(_hdr MATCHES ".*SDL_revision.h") list(REMOVE_ITEM SDL3_INCLUDE_FILES "${_hdr}") @@ -2963,8 +2963,9 @@ else() set(SDL_REVISION "SDL-${SDL_VERSION}-no-vcs") endif() +execute_process(COMMAND "${CMAKE_COMMAND}" -E make_directory "${SDL3_BINARY_DIR}/include/SDL3") configure_file("${SDL3_SOURCE_DIR}/include/build_config/SDL_revision.h.cmake" - "${SDL3_BINARY_DIR}/include/SDL_revision.h") + "${SDL3_BINARY_DIR}/include/SDL3/SDL_revision.h") if(CMAKE_STATIC_LIBRARY_PREFIX STREQUAL "" AND CMAKE_STATIC_LIBRARY_SUFFIX STREQUAL ".lib") # Avoid conflict between the dll import library and the static library @@ -3454,7 +3455,7 @@ if(NOT SDL3_DISABLE_INSTALL) install( FILES ${SDL3_INCLUDE_FILES} - "${SDL3_BINARY_DIR}/include/SDL_revision.h" + "${SDL3_BINARY_DIR}/include/SDL3/SDL_revision.h" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/SDL3) install(FILES "LICENSE.txt" DESTINATION "${LICENSES_PREFIX}") diff --git a/VisualC-GDK/SDL/SDL.vcxproj b/VisualC-GDK/SDL/SDL.vcxproj index 5ec01d103..3a9d5e959 100644 --- a/VisualC-GDK/SDL/SDL.vcxproj +++ b/VisualC-GDK/SDL/SDL.vcxproj @@ -290,84 +290,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC-GDK/SDL/SDL.vcxproj.filters b/VisualC-GDK/SDL/SDL.vcxproj.filters index 8a47d06a7..a66cd12b7 100644 --- a/VisualC-GDK/SDL/SDL.vcxproj.filters +++ b/VisualC-GDK/SDL/SDL.vcxproj.filters @@ -174,241 +174,241 @@ - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers diff --git a/VisualC-WinRT/SDL-UWP.vcxproj b/VisualC-WinRT/SDL-UWP.vcxproj index 084e6ea63..93a8cc2a4 100644 --- a/VisualC-WinRT/SDL-UWP.vcxproj +++ b/VisualC-WinRT/SDL-UWP.vcxproj @@ -35,59 +35,59 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC-WinRT/SDL-UWP.vcxproj.filters b/VisualC-WinRT/SDL-UWP.vcxproj.filters index cf0b7fa78..744fbe77a 100644 --- a/VisualC-WinRT/SDL-UWP.vcxproj.filters +++ b/VisualC-WinRT/SDL-UWP.vcxproj.filters @@ -9,157 +9,157 @@ - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files - + Header Files @@ -426,7 +426,7 @@ Source Files - + Header Files @@ -441,7 +441,7 @@ Source Files - + Header Files diff --git a/VisualC/SDL/SDL.vcxproj b/VisualC/SDL/SDL.vcxproj index b1697cf1f..e3cbbb27e 100644 --- a/VisualC/SDL/SDL.vcxproj +++ b/VisualC/SDL/SDL.vcxproj @@ -214,84 +214,83 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/SDL/SDL.vcxproj.filters b/VisualC/SDL/SDL.vcxproj.filters index 1d6b53663..10658aff1 100644 --- a/VisualC/SDL/SDL.vcxproj.filters +++ b/VisualC/SDL/SDL.vcxproj.filters @@ -171,241 +171,238 @@ - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - + API Headers - - API Headers - - + API Headers - + API Headers - + API Headers - + API Headers diff --git a/WhatsNew.txt b/WhatsNew.txt index 858ca8b08..5d10b6bdc 100644 --- a/WhatsNew.txt +++ b/WhatsNew.txt @@ -6,6 +6,7 @@ This is a list of major changes in SDL's version history. --------------------------------------------------------------------------- General: +* SDL headers should now be included as `#include ` * M_PI is no longer defined in SDL_stdinc.h, now the symbols SDL_PI_D (double) and SDL_PI_F (float) are available * SDL_GetWindowWMInfo() returns a standard int result code instead of SDL_bool, and takes SDL_SYSWM_CURRENT_VERSION as a new third parameter * The preprocessor symbol __MACOSX__ has been renamed __MACOS__ diff --git a/Xcode/SDL/SDL.xcodeproj/project.pbxproj b/Xcode/SDL/SDL.xcodeproj/project.pbxproj index 44ea0ad59..71cb4192b 100644 --- a/Xcode/SDL/SDL.xcodeproj/project.pbxproj +++ b/Xcode/SDL/SDL.xcodeproj/project.pbxproj @@ -43,7 +43,6 @@ 5616CA4C252BB2A6005D5928 /* SDL_url.c in Sources */ = {isa = PBXBuildFile; fileRef = 5616CA49252BB2A5005D5928 /* SDL_url.c */; }; 5616CA4D252BB2A6005D5928 /* SDL_sysurl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4A252BB2A6005D5928 /* SDL_sysurl.h */; }; 5616CA4E252BB2A6005D5928 /* SDL_sysurl.m in Sources */ = {isa = PBXBuildFile; fileRef = 5616CA4B252BB2A6005D5928 /* SDL_sysurl.m */; }; - 5616CA50252BB2BE005D5928 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4F252BB2BE005D5928 /* SDL_misc.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5616CA51252BB35A005D5928 /* SDL_sysurl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4A252BB2A6005D5928 /* SDL_sysurl.h */; }; 5616CA52252BB35A005D5928 /* SDL_url.c in Sources */ = {isa = PBXBuildFile; fileRef = 5616CA49252BB2A5005D5928 /* SDL_url.c */; }; 5616CA54252BB35B005D5928 /* SDL_sysurl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4A252BB2A6005D5928 /* SDL_sysurl.h */; }; @@ -67,14 +66,11 @@ 564624381FF821DA0074AC87 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564624371FF821CB0074AC87 /* Metal.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 5646243B1FF822100074AC87 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564624351FF821B80074AC87 /* QuartzCore.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 5646243C1FF822170074AC87 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564624371FF821CB0074AC87 /* Metal.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; - 566E267A2462701100718109 /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 566E26792462701100718109 /* SDL_locale.h */; settings = {ATTRIBUTES = (Public, ); }; }; 566E26CF246274CC00718109 /* SDL_syslocale.m in Sources */ = {isa = PBXBuildFile; fileRef = 566E26CC246274CB00718109 /* SDL_syslocale.m */; }; 566E26D8246274CC00718109 /* SDL_locale.c in Sources */ = {isa = PBXBuildFile; fileRef = 566E26CD246274CB00718109 /* SDL_locale.c */; }; 566E26E1246274CC00718109 /* SDL_syslocale.h in Headers */ = {isa = PBXBuildFile; fileRef = 566E26CE246274CC00718109 /* SDL_syslocale.h */; }; - 567E2F2117C44C35005F1892 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; 56C5237F1D8F4985001F2F30 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E951D8B69D600B177DD /* CoreAudio.framework */; }; 56C523811D8F498C001F2F30 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; - 5C2EF7011FC9EF10003F5197 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2EF7001FC9EF0F003F5197 /* SDL_egl.h */; }; 75E0915A241EA924004729E1 /* SDL_virtualjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 75E09158241EA924004729E1 /* SDL_virtualjoystick.c */; }; 75E0915B241EA924004729E1 /* SDL_virtualjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 75E09158241EA924004729E1 /* SDL_virtualjoystick.c */; }; 75E0915C241EA924004729E1 /* SDL_virtualjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 75E09158241EA924004729E1 /* SDL_virtualjoystick.c */; }; @@ -141,73 +137,50 @@ A7381E961D8B69D600B177DD /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E951D8B69D600B177DD /* CoreAudio.framework */; }; A7381E971D8B6A0300B177DD /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E931D8B69C300B177DD /* AudioToolbox.framework */; }; A75FCCFD23E25AB700529352 /* SDL_shaders_metal_tvos.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8E323E2514000DCD162 /* SDL_shaders_metal_tvos.h */; }; - A75FCCFE23E25AB700529352 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD0023E25AB700529352 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD0123E25AB700529352 /* SDL_uikitopengles.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63123E2513D00DCD162 /* SDL_uikitopengles.h */; }; - A75FCD0223E25AB700529352 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD0323E25AB700529352 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD0423E25AB700529352 /* SDL_uikitmetalview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61D23E2513D00DCD162 /* SDL_uikitmetalview.h */; }; - A75FCD0523E25AB700529352 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD0623E25AB700529352 /* SDL_shape_internals.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60D23E2513D00DCD162 /* SDL_shape_internals.h */; }; A75FCD0723E25AB700529352 /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90E23E2514000DCD162 /* SDL_glfuncs.h */; }; - A75FCD0823E25AB700529352 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD0923E25AB700529352 /* SDL_rect_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60C23E2513D00DCD162 /* SDL_rect_c.h */; }; A75FCD0B23E25AB700529352 /* SDL_shaders_metal_macos.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8E223E2514000DCD162 /* SDL_shaders_metal_macos.h */; }; A75FCD0C23E25AB700529352 /* SDL_shaders_metal_ios.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8DF23E2514000DCD162 /* SDL_shaders_metal_ios.h */; }; A75FCD0D23E25AB700529352 /* SDL_offscreenwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5F523E2513D00DCD162 /* SDL_offscreenwindow.h */; }; - A75FCD0E23E25AB700529352 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD0F23E25AB700529352 /* SDL_coremotionsensor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57B23E2513D00DCD162 /* SDL_coremotionsensor.h */; }; A75FCD1023E25AB700529352 /* SDL_uikitview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61923E2513D00DCD162 /* SDL_uikitview.h */; }; - A75FCD1123E25AB700529352 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD1223E25AB700529352 /* SDL_uikitappdelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62F23E2513D00DCD162 /* SDL_uikitappdelegate.h */; }; A75FCD1323E25AB700529352 /* keyinfotable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62823E2513D00DCD162 /* keyinfotable.h */; }; - A75FCD1423E25AB700529352 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD1523E25AB700529352 /* SDL_dropevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92E23E2514000DCD162 /* SDL_dropevents_c.h */; }; A75FCD1623E25AB700529352 /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5C623E2513D00DCD162 /* SDL_haptic_c.h */; }; - A75FCD1723E25AB700529352 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD1823E25AB700529352 /* SDL_dataqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57023E2513D00DCD162 /* SDL_dataqueue.h */; }; A75FCD1923E25AB700529352 /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57523E2513D00DCD162 /* SDL_error_c.h */; }; A75FCD1C23E25AB700529352 /* SDL_d3dmath.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8DC23E2514000DCD162 /* SDL_d3dmath.h */; }; A75FCD1F23E25AB700529352 /* SDL_egl_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60423E2513D00DCD162 /* SDL_egl_c.h */; }; - A75FCD2023E25AB700529352 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD2123E25AB700529352 /* yuv_rgb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77223E2513E00DCD162 /* yuv_rgb.h */; }; A75FCD2223E25AB700529352 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A87123E2513F00DCD162 /* SDL_dummyaudio.h */; }; A75FCD2323E25AB700529352 /* SDL_uikitmessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62623E2513D00DCD162 /* SDL_uikitmessagebox.h */; }; A75FCD2523E25AB700529352 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77823E2513E00DCD162 /* SDL_thread_c.h */; }; A75FCD2623E25AB700529352 /* SDL_cocoamessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69423E2513E00DCD162 /* SDL_cocoamessagebox.h */; }; - A75FCD2823E25AB700529352 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD2923E25AB700529352 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD2A23E25AB700529352 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD2B23E25AB700529352 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD2C23E25AB700529352 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F623E2514000DCD162 /* SDL_blendfillrect.h */; }; - A75FCD2D23E25AB700529352 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD2E23E25AB700529352 /* SDL_hidapijoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7C723E2513E00DCD162 /* SDL_hidapijoystick_c.h */; }; A75FCD3023E25AB700529352 /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A74023E2513E00DCD162 /* SDL_pixels_c.h */; }; A75FCD3223E25AB700529352 /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7D023E2513E00DCD162 /* SDL_joystick_c.h */; }; A75FCD3323E25AB700529352 /* vk_sdk_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73D23E2513E00DCD162 /* vk_sdk_platform.h */; }; A75FCD3423E25AB700529352 /* blank_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93223E2514000DCD162 /* blank_cursor.h */; }; - A75FCD3523E25AB700529352 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD3623E25AB700529352 /* SDL_sysaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A89F23E2513F00DCD162 /* SDL_sysaudio.h */; }; - A75FCD3723E25AB700529352 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD3923E25AB700529352 /* math_libm.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92623E2514000DCD162 /* math_libm.h */; }; A75FCD3A23E25AB700529352 /* SDL_uikitvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62223E2513D00DCD162 /* SDL_uikitvideo.h */; }; A75FCD3B23E25AB700529352 /* SDL_cocoamouse.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69823E2513E00DCD162 /* SDL_cocoamouse.h */; }; - A75FCD3C23E25AB700529352 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD3D23E25AB700529352 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A66323E2513E00DCD162 /* SDL_blit_slow.h */; }; A75FCD3E23E25AB700529352 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8EC23E2514000DCD162 /* SDL_yuv_sw_c.h */; }; A75FCD4023E25AB700529352 /* SDL_windowevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94323E2514000DCD162 /* SDL_windowevents_c.h */; }; - A75FCD4123E25AB700529352 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD4223E25AB700529352 /* SDL_cocoavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69323E2513E00DCD162 /* SDL_cocoavideo.h */; }; - A75FCD4323E25AB700529352 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD4423E25AB700529352 /* SDL_uikitevents.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62D23E2513D00DCD162 /* SDL_uikitevents.h */; }; A75FCD4523E25AB700529352 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93023E2514000DCD162 /* SDL_gesture_c.h */; }; A75FCD4623E25AB700529352 /* SDL_shaders_gl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90D23E2514000DCD162 /* SDL_shaders_gl.h */; }; A75FCD4723E25AB700529352 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A78423E2513E00DCD162 /* SDL_systhread_c.h */; }; - A75FCD4823E25AB700529352 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD4A23E25AB700529352 /* SDL_cocoakeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68023E2513E00DCD162 /* SDL_cocoakeyboard.h */; }; A75FCD4B23E25AB700529352 /* SDL_uikitvulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63323E2513D00DCD162 /* SDL_uikitvulkan.h */; }; A75FCD4E23E25AB700529352 /* vulkan.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73223E2513E00DCD162 /* vulkan.hpp */; }; - A75FCD4F23E25AB700529352 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD5023E25AB700529352 /* gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72323E2513E00DCD162 /* gl2ext.h */; }; A75FCD5123E25AB700529352 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93923E2514000DCD162 /* SDL_clipboardevents_c.h */; }; A75FCD5323E25AB700529352 /* SDL_syshaptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5CF23E2513D00DCD162 /* SDL_syshaptic_c.h */; }; @@ -217,7 +190,6 @@ A75FCD5723E25AB700529352 /* SDL_uikitmodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61F23E2513D00DCD162 /* SDL_uikitmodes.h */; }; A75FCD5823E25AB700529352 /* egl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72923E2513E00DCD162 /* egl.h */; }; A75FCD5923E25AB700529352 /* khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72723E2513E00DCD162 /* khrplatform.h */; }; - A75FCD5A23E25AB700529352 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD5B23E25AB700529352 /* SDL_uikitviewcontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62423E2513D00DCD162 /* SDL_uikitviewcontroller.h */; }; A75FCD5C23E25AB700529352 /* SDL_dummysensor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57823E2513D00DCD162 /* SDL_dummysensor.h */; }; A75FCD5D23E25AB700529352 /* vulkan_android.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73E23E2513E00DCD162 /* vulkan_android.h */; }; @@ -227,9 +199,7 @@ A75FCD6123E25AB700529352 /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5D823E2513D00DCD162 /* SDL_dynapi.h */; }; A75FCD6223E25AB700529352 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7F523E2513F00DCD162 /* SDL_assert_c.h */; }; A75FCD6323E25AB700529352 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8B023E2513F00DCD162 /* SDL_diskaudio.h */; }; - A75FCD6423E25AB700529352 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD6523E25AB700529352 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F323E2514000DCD162 /* SDL_drawpoint.h */; }; - A75FCD6623E25AB700529352 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD6723E25AB700529352 /* SDL_wave.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8A223E2513F00DCD162 /* SDL_wave.h */; }; A75FCD6823E25AB700529352 /* SDL_cocoaopengl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68D23E2513E00DCD162 /* SDL_cocoaopengl.h */; }; A75FCD6923E25AB700529352 /* yuv_rgb_sse_func.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77023E2513E00DCD162 /* yuv_rgb_sse_func.h */; }; @@ -237,22 +207,15 @@ A75FCD6D23E25AB700529352 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8BA23E2513F00DCD162 /* SDL_coreaudio.h */; }; A75FCD6E23E25AB700529352 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8FA23E2514000DCD162 /* SDL_draw.h */; }; A75FCD6F23E25AB700529352 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F723E2514000DCD162 /* SDL_drawline.h */; }; - A75FCD7023E25AB700529352 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD7123E25AB700529352 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD7223E25AB700529352 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD7323E25AB700529352 /* SDL_yuv_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76A23E2513E00DCD162 /* SDL_yuv_c.h */; }; A75FCD7423E25AB700529352 /* scancodes_xfree86.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94123E2514000DCD162 /* scancodes_xfree86.h */; }; A75FCD7523E25AB700529352 /* SDL_syspower.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7E223E2513F00DCD162 /* SDL_syspower.h */; }; - A75FCD7723E25AB700529352 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD7823E25AB700529352 /* eglext.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72A23E2513E00DCD162 /* eglext.h */; }; A75FCD7923E25AB700529352 /* SDL_events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94223E2514000DCD162 /* SDL_events_c.h */; }; A75FCD7A23E25AB700529352 /* math_private.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A91B23E2514000DCD162 /* math_private.h */; }; A75FCD7C23E25AB700529352 /* vulkan_wayland.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73423E2513E00DCD162 /* vulkan_wayland.h */; }; - A75FCD7D23E25AB700529352 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD7E23E25AB700529352 /* SDL_cocoashape.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A67E23E2513E00DCD162 /* SDL_cocoashape.h */; }; - A75FCD7F23E25AB700529352 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD8023E25AB700529352 /* SDL_shaders_gles2.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90523E2514000DCD162 /* SDL_shaders_gles2.h */; }; - A75FCD8123E25AB700529352 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD8223E25AB700529352 /* SDL_glesfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90223E2514000DCD162 /* SDL_glesfuncs.h */; }; A75FCD8323E25AB700529352 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F823E2514000DCD162 /* SDL_blendpoint.h */; }; A75FCD8423E25AB700529352 /* SDL_offscreenvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5F123E2513D00DCD162 /* SDL_offscreenvideo.h */; }; @@ -264,7 +227,6 @@ A75FCD8B23E25AB700529352 /* SDL_gamecontrollerdb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A79E23E2513E00DCD162 /* SDL_gamecontrollerdb.h */; }; A75FCD8C23E25AB700529352 /* SDL_cocoavulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68F23E2513E00DCD162 /* SDL_cocoavulkan.h */; }; A75FCD8D23E25AB700529352 /* gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72523E2513E00DCD162 /* gl2platform.h */; }; - A75FCD8E23E25AB700529352 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD8F23E25AB700529352 /* vk_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72D23E2513E00DCD162 /* vk_layer.h */; }; A75FCD9123E25AB700529352 /* vk_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73123E2513E00DCD162 /* vk_platform.h */; }; A75FCD9223E25AB700529352 /* SDL_cocoametalview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68623E2513E00DCD162 /* SDL_cocoametalview.h */; }; @@ -274,8 +236,6 @@ A75FCD9623E25AB700529352 /* SDL_sensor_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A58123E2513D00DCD162 /* SDL_sensor_c.h */; }; A75FCD9723E25AB700529352 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8EE23E2514000DCD162 /* SDL_sysrender.h */; }; A75FCD9823E25AB700529352 /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8FE23E2514000DCD162 /* SDL_rotate.h */; }; - A75FCD9923E25AB700529352 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCD9A23E25AB700529352 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCD9D23E25AB700529352 /* scancodes_darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93423E2514000DCD162 /* scancodes_darwin.h */; }; A75FCD9E23E25AB700529352 /* controller_type.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7D923E2513E00DCD162 /* controller_type.h */; }; A75FCDA023E25AB700529352 /* SDL_uikitclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62123E2513D00DCD162 /* SDL_uikitclipboard.h */; }; @@ -283,19 +243,13 @@ A75FCDA223E25AB700529352 /* SDL_uikitwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62723E2513D00DCD162 /* SDL_uikitwindow.h */; }; A75FCDA323E25AB700529352 /* vulkan_vi.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72F23E2513E00DCD162 /* vulkan_vi.h */; }; A75FCDA423E25AB700529352 /* vulkan_mir.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73923E2513E00DCD162 /* vulkan_mir.h */; }; - A75FCDA523E25AB700529352 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDA623E25AB700529352 /* default_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93323E2514000DCD162 /* default_cursor.h */; }; A75FCDA723E25AB700529352 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F523E2514000DCD162 /* SDL_render_sw_c.h */; }; - A75FCDA823E25AB700529352 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDA923E25AB700529352 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDAA23E25AB700529352 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60A23E2513D00DCD162 /* SDL_nullvideo.h */; }; A75FCDAB23E25AB700529352 /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76623E2513E00DCD162 /* SDL_blit_copy.h */; }; A75FCDAC23E25AB700529352 /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76723E2513E00DCD162 /* SDL_RLEaccel_c.h */; }; A75FCDAD23E25AB700529352 /* eglplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72B23E2513E00DCD162 /* eglplatform.h */; }; - A75FCDAF23E25AB700529352 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDB023E25AB700529352 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77723E2513E00DCD162 /* SDL_systhread.h */; }; - A75FCDB123E25AB700529352 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDB223E25AB700529352 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDB323E25AB700529352 /* SDL_cocoaclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68A23E2513E00DCD162 /* SDL_cocoaclipboard.h */; }; A75FCDB423E25AB700529352 /* SDL_cocoamodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69123E2513E00DCD162 /* SDL_cocoamodes.h */; }; A75FCDB523E25AB700529352 /* SDL_uikitopenglview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62B23E2513D00DCD162 /* SDL_uikitopenglview.h */; }; @@ -312,37 +266,21 @@ A75FCDC123E25AB700529352 /* vulkan_xcb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73823E2513E00DCD162 /* vulkan_xcb.h */; }; A75FCDC223E25AB700529352 /* vulkan_ios.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73B23E2513E00DCD162 /* vulkan_ios.h */; }; A75FCDC323E25AB700529352 /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A58323E2513D00DCD162 /* SDL_internal.h */; }; - A75FCDC423E25AB700529352 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDC523E25AB700529352 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDC623E25AB700529352 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDC723E25AB700529352 /* vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73023E2513E00DCD162 /* vulkan.h */; }; A75FCDC823E25AB700529352 /* SDL_keyboard_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93D23E2514000DCD162 /* SDL_keyboard_c.h */; }; - A75FCDC923E25AB700529352 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDCA23E25AB700529352 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDCB23E25AB700529352 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDCC23E25AB700529352 /* SDL_mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92B23E2514000DCD162 /* SDL_mouse_c.h */; }; A75FCDCD23E25AB700529352 /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73F23E2513E00DCD162 /* SDL_blit_auto.h */; }; A75FCDCE23E25AB700529352 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F223E2514000DCD162 /* SDL_blendline.h */; }; A75FCDCF23E25AB700529352 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5CC23E2513D00DCD162 /* SDL_syshaptic.h */; }; A75FCDD023E25AB700529352 /* SDL_vulkan_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63E23E2513D00DCD162 /* SDL_vulkan_internal.h */; }; - A75FCDD123E25AB700529352 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDD223E25AB700529352 /* SDL_cocoaevents.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69623E2513E00DCD162 /* SDL_cocoaevents.h */; }; A75FCDD323E25AB700529352 /* vk_icd.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72E23E2513E00DCD162 /* vk_icd.h */; }; A75FCDD423E25AB700529352 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60723E2513D00DCD162 /* SDL_nullframebuffer_c.h */; }; - A75FCDD523E25AB700529352 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDD623E25AB700529352 /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5DB23E2513D00DCD162 /* SDL_dynapi_procs.h */; }; A75FCDD723E25AB700529352 /* vulkan_fuchsia.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73323E2513E00DCD162 /* vulkan_fuchsia.h */; }; - A75FCDD823E25AB700529352 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDD923E25AB700529352 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDDA23E25AB700529352 /* usb_ids.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7CB23E2513E00DCD162 /* usb_ids.h */; }; A75FCDDB23E25AB700529352 /* SDL_gles2funcs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90623E2514000DCD162 /* SDL_gles2funcs.h */; }; - A75FCDDD23E25AB700529352 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDDE23E25AB700529352 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDDF23E25AB700529352 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDE023E25AB700529352 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDE123E25AB700529352 /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61723E2513D00DCD162 /* SDL_sysvideo.h */; }; - A75FCDE223E25AB700529352 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCDE323E25AB700529352 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCDE523E25AB700529352 /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5D923E2513D00DCD162 /* SDL_dynapi_overrides.h */; }; A75FCDE623E25AB700529352 /* SDL_cocoawindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69223E2513E00DCD162 /* SDL_cocoawindow.h */; }; A75FCDE923E25AB700529352 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A8F123E2514000DCD162 /* SDL_drawline.c */; }; @@ -516,73 +454,50 @@ A75FCEAB23E25AB700529352 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; A75FCEAE23E25AB700529352 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E931D8B69C300B177DD /* AudioToolbox.framework */; }; A75FCEB623E25AC700529352 /* SDL_shaders_metal_tvos.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8E323E2514000DCD162 /* SDL_shaders_metal_tvos.h */; }; - A75FCEB723E25AC700529352 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCEB923E25AC700529352 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEBA23E25AC700529352 /* SDL_uikitopengles.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63123E2513D00DCD162 /* SDL_uikitopengles.h */; }; - A75FCEBB23E25AC700529352 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCEBC23E25AC700529352 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEBD23E25AC700529352 /* SDL_uikitmetalview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61D23E2513D00DCD162 /* SDL_uikitmetalview.h */; }; - A75FCEBE23E25AC700529352 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEBF23E25AC700529352 /* SDL_shape_internals.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60D23E2513D00DCD162 /* SDL_shape_internals.h */; }; A75FCEC023E25AC700529352 /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90E23E2514000DCD162 /* SDL_glfuncs.h */; }; - A75FCEC123E25AC700529352 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEC223E25AC700529352 /* SDL_rect_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60C23E2513D00DCD162 /* SDL_rect_c.h */; }; A75FCEC423E25AC700529352 /* SDL_shaders_metal_macos.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8E223E2514000DCD162 /* SDL_shaders_metal_macos.h */; }; A75FCEC523E25AC700529352 /* SDL_shaders_metal_ios.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8DF23E2514000DCD162 /* SDL_shaders_metal_ios.h */; }; A75FCEC623E25AC700529352 /* SDL_offscreenwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5F523E2513D00DCD162 /* SDL_offscreenwindow.h */; }; - A75FCEC723E25AC700529352 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEC823E25AC700529352 /* SDL_coremotionsensor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57B23E2513D00DCD162 /* SDL_coremotionsensor.h */; }; A75FCEC923E25AC700529352 /* SDL_uikitview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61923E2513D00DCD162 /* SDL_uikitview.h */; }; - A75FCECA23E25AC700529352 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCECB23E25AC700529352 /* SDL_uikitappdelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62F23E2513D00DCD162 /* SDL_uikitappdelegate.h */; }; A75FCECC23E25AC700529352 /* keyinfotable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62823E2513D00DCD162 /* keyinfotable.h */; }; - A75FCECD23E25AC700529352 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCECE23E25AC700529352 /* SDL_dropevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92E23E2514000DCD162 /* SDL_dropevents_c.h */; }; A75FCECF23E25AC700529352 /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5C623E2513D00DCD162 /* SDL_haptic_c.h */; }; - A75FCED023E25AC700529352 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCED123E25AC700529352 /* SDL_dataqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57023E2513D00DCD162 /* SDL_dataqueue.h */; }; A75FCED223E25AC700529352 /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57523E2513D00DCD162 /* SDL_error_c.h */; }; A75FCED523E25AC700529352 /* SDL_d3dmath.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8DC23E2514000DCD162 /* SDL_d3dmath.h */; }; A75FCED823E25AC700529352 /* SDL_egl_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60423E2513D00DCD162 /* SDL_egl_c.h */; }; - A75FCED923E25AC700529352 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEDA23E25AC700529352 /* yuv_rgb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77223E2513E00DCD162 /* yuv_rgb.h */; }; A75FCEDB23E25AC700529352 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A87123E2513F00DCD162 /* SDL_dummyaudio.h */; }; A75FCEDC23E25AC700529352 /* SDL_uikitmessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62623E2513D00DCD162 /* SDL_uikitmessagebox.h */; }; A75FCEDE23E25AC700529352 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77823E2513E00DCD162 /* SDL_thread_c.h */; }; A75FCEDF23E25AC700529352 /* SDL_cocoamessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69423E2513E00DCD162 /* SDL_cocoamessagebox.h */; }; - A75FCEE123E25AC700529352 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCEE223E25AC700529352 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCEE323E25AC700529352 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCEE423E25AC700529352 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEE523E25AC700529352 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F623E2514000DCD162 /* SDL_blendfillrect.h */; }; - A75FCEE623E25AC700529352 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEE723E25AC700529352 /* SDL_hidapijoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7C723E2513E00DCD162 /* SDL_hidapijoystick_c.h */; }; A75FCEE923E25AC700529352 /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A74023E2513E00DCD162 /* SDL_pixels_c.h */; }; A75FCEEB23E25AC700529352 /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7D023E2513E00DCD162 /* SDL_joystick_c.h */; }; A75FCEEC23E25AC700529352 /* vk_sdk_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73D23E2513E00DCD162 /* vk_sdk_platform.h */; }; A75FCEED23E25AC700529352 /* blank_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93223E2514000DCD162 /* blank_cursor.h */; }; - A75FCEEE23E25AC700529352 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEEF23E25AC700529352 /* SDL_sysaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A89F23E2513F00DCD162 /* SDL_sysaudio.h */; }; - A75FCEF023E25AC700529352 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEF223E25AC700529352 /* math_libm.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92623E2514000DCD162 /* math_libm.h */; }; A75FCEF323E25AC700529352 /* SDL_uikitvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62223E2513D00DCD162 /* SDL_uikitvideo.h */; }; A75FCEF423E25AC700529352 /* SDL_cocoamouse.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69823E2513E00DCD162 /* SDL_cocoamouse.h */; }; - A75FCEF523E25AC700529352 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEF623E25AC700529352 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A66323E2513E00DCD162 /* SDL_blit_slow.h */; }; A75FCEF723E25AC700529352 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8EC23E2514000DCD162 /* SDL_yuv_sw_c.h */; }; A75FCEF923E25AC700529352 /* SDL_windowevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94323E2514000DCD162 /* SDL_windowevents_c.h */; }; - A75FCEFA23E25AC700529352 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEFB23E25AC700529352 /* SDL_cocoavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69323E2513E00DCD162 /* SDL_cocoavideo.h */; }; - A75FCEFC23E25AC700529352 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCEFD23E25AC700529352 /* SDL_uikitevents.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62D23E2513D00DCD162 /* SDL_uikitevents.h */; }; A75FCEFE23E25AC700529352 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93023E2514000DCD162 /* SDL_gesture_c.h */; }; A75FCEFF23E25AC700529352 /* SDL_shaders_gl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90D23E2514000DCD162 /* SDL_shaders_gl.h */; }; A75FCF0023E25AC700529352 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A78423E2513E00DCD162 /* SDL_systhread_c.h */; }; - A75FCF0123E25AC700529352 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF0323E25AC700529352 /* SDL_cocoakeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68023E2513E00DCD162 /* SDL_cocoakeyboard.h */; }; A75FCF0423E25AC700529352 /* SDL_uikitvulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63323E2513D00DCD162 /* SDL_uikitvulkan.h */; }; A75FCF0723E25AC700529352 /* vulkan.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73223E2513E00DCD162 /* vulkan.hpp */; }; - A75FCF0823E25AC700529352 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF0923E25AC700529352 /* gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72323E2513E00DCD162 /* gl2ext.h */; }; A75FCF0A23E25AC700529352 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93923E2514000DCD162 /* SDL_clipboardevents_c.h */; }; A75FCF0C23E25AC700529352 /* SDL_syshaptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5CF23E2513D00DCD162 /* SDL_syshaptic_c.h */; }; @@ -592,7 +507,6 @@ A75FCF1023E25AC700529352 /* SDL_uikitmodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61F23E2513D00DCD162 /* SDL_uikitmodes.h */; }; A75FCF1123E25AC700529352 /* egl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72923E2513E00DCD162 /* egl.h */; }; A75FCF1223E25AC700529352 /* khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72723E2513E00DCD162 /* khrplatform.h */; }; - A75FCF1323E25AC700529352 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF1423E25AC700529352 /* SDL_uikitviewcontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62423E2513D00DCD162 /* SDL_uikitviewcontroller.h */; }; A75FCF1523E25AC700529352 /* SDL_dummysensor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A57823E2513D00DCD162 /* SDL_dummysensor.h */; }; A75FCF1623E25AC700529352 /* vulkan_android.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73E23E2513E00DCD162 /* vulkan_android.h */; }; @@ -602,9 +516,7 @@ A75FCF1A23E25AC700529352 /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5D823E2513D00DCD162 /* SDL_dynapi.h */; }; A75FCF1B23E25AC700529352 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7F523E2513F00DCD162 /* SDL_assert_c.h */; }; A75FCF1C23E25AC700529352 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8B023E2513F00DCD162 /* SDL_diskaudio.h */; }; - A75FCF1D23E25AC700529352 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF1E23E25AC700529352 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F323E2514000DCD162 /* SDL_drawpoint.h */; }; - A75FCF1F23E25AC700529352 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF2023E25AC700529352 /* SDL_wave.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8A223E2513F00DCD162 /* SDL_wave.h */; }; A75FCF2123E25AC700529352 /* SDL_cocoaopengl.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68D23E2513E00DCD162 /* SDL_cocoaopengl.h */; }; A75FCF2223E25AC700529352 /* yuv_rgb_sse_func.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77023E2513E00DCD162 /* yuv_rgb_sse_func.h */; }; @@ -612,22 +524,15 @@ A75FCF2623E25AC700529352 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8BA23E2513F00DCD162 /* SDL_coreaudio.h */; }; A75FCF2723E25AC700529352 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8FA23E2514000DCD162 /* SDL_draw.h */; }; A75FCF2823E25AC700529352 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F723E2514000DCD162 /* SDL_drawline.h */; }; - A75FCF2923E25AC700529352 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF2A23E25AC700529352 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF2B23E25AC700529352 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF2C23E25AC700529352 /* SDL_yuv_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76A23E2513E00DCD162 /* SDL_yuv_c.h */; }; A75FCF2D23E25AC700529352 /* scancodes_xfree86.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94123E2514000DCD162 /* scancodes_xfree86.h */; }; A75FCF2E23E25AC700529352 /* SDL_syspower.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7E223E2513F00DCD162 /* SDL_syspower.h */; }; - A75FCF3023E25AC700529352 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF3123E25AC700529352 /* eglext.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72A23E2513E00DCD162 /* eglext.h */; }; A75FCF3223E25AC700529352 /* SDL_events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A94223E2514000DCD162 /* SDL_events_c.h */; }; A75FCF3323E25AC700529352 /* math_private.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A91B23E2514000DCD162 /* math_private.h */; }; A75FCF3523E25AC700529352 /* vulkan_wayland.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73423E2513E00DCD162 /* vulkan_wayland.h */; }; - A75FCF3623E25AC700529352 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF3723E25AC700529352 /* SDL_cocoashape.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A67E23E2513E00DCD162 /* SDL_cocoashape.h */; }; - A75FCF3823E25AC700529352 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF3923E25AC700529352 /* SDL_shaders_gles2.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90523E2514000DCD162 /* SDL_shaders_gles2.h */; }; - A75FCF3A23E25AC700529352 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF3B23E25AC700529352 /* SDL_glesfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90223E2514000DCD162 /* SDL_glesfuncs.h */; }; A75FCF3C23E25AC700529352 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F823E2514000DCD162 /* SDL_blendpoint.h */; }; A75FCF3D23E25AC700529352 /* SDL_offscreenvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5F123E2513D00DCD162 /* SDL_offscreenvideo.h */; }; @@ -639,7 +544,6 @@ A75FCF4423E25AC700529352 /* SDL_gamecontrollerdb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A79E23E2513E00DCD162 /* SDL_gamecontrollerdb.h */; }; A75FCF4523E25AC700529352 /* SDL_cocoavulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68F23E2513E00DCD162 /* SDL_cocoavulkan.h */; }; A75FCF4623E25AC700529352 /* gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72523E2513E00DCD162 /* gl2platform.h */; }; - A75FCF4723E25AC700529352 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF4823E25AC700529352 /* vk_layer.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72D23E2513E00DCD162 /* vk_layer.h */; }; A75FCF4A23E25AC700529352 /* vk_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73123E2513E00DCD162 /* vk_platform.h */; }; A75FCF4B23E25AC700529352 /* SDL_cocoametalview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68623E2513E00DCD162 /* SDL_cocoametalview.h */; }; @@ -649,8 +553,6 @@ A75FCF4F23E25AC700529352 /* SDL_sensor_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A58123E2513D00DCD162 /* SDL_sensor_c.h */; }; A75FCF5023E25AC700529352 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8EE23E2514000DCD162 /* SDL_sysrender.h */; }; A75FCF5123E25AC700529352 /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8FE23E2514000DCD162 /* SDL_rotate.h */; }; - A75FCF5223E25AC700529352 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF5323E25AC700529352 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF5623E25AC700529352 /* scancodes_darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93423E2514000DCD162 /* scancodes_darwin.h */; }; A75FCF5723E25AC700529352 /* controller_type.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7D923E2513E00DCD162 /* controller_type.h */; }; A75FCF5923E25AC700529352 /* SDL_uikitclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62123E2513D00DCD162 /* SDL_uikitclipboard.h */; }; @@ -658,19 +560,13 @@ A75FCF5B23E25AC700529352 /* SDL_uikitwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62723E2513D00DCD162 /* SDL_uikitwindow.h */; }; A75FCF5C23E25AC700529352 /* vulkan_vi.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72F23E2513E00DCD162 /* vulkan_vi.h */; }; A75FCF5D23E25AC700529352 /* vulkan_mir.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73923E2513E00DCD162 /* vulkan_mir.h */; }; - A75FCF5E23E25AC700529352 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF5F23E25AC700529352 /* default_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93323E2514000DCD162 /* default_cursor.h */; }; A75FCF6023E25AC700529352 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F523E2514000DCD162 /* SDL_render_sw_c.h */; }; - A75FCF6123E25AC700529352 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF6223E25AC700529352 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF6323E25AC700529352 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60A23E2513D00DCD162 /* SDL_nullvideo.h */; }; A75FCF6423E25AC700529352 /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76623E2513E00DCD162 /* SDL_blit_copy.h */; }; A75FCF6523E25AC700529352 /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A76723E2513E00DCD162 /* SDL_RLEaccel_c.h */; }; A75FCF6623E25AC700529352 /* eglplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72B23E2513E00DCD162 /* eglplatform.h */; }; - A75FCF6823E25AC700529352 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF6923E25AC700529352 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A77723E2513E00DCD162 /* SDL_systhread.h */; }; - A75FCF6A23E25AC700529352 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF6B23E25AC700529352 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF6C23E25AC700529352 /* SDL_cocoaclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A68A23E2513E00DCD162 /* SDL_cocoaclipboard.h */; }; A75FCF6D23E25AC700529352 /* SDL_cocoamodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69123E2513E00DCD162 /* SDL_cocoamodes.h */; }; A75FCF6E23E25AC700529352 /* SDL_uikitopenglview.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62B23E2513D00DCD162 /* SDL_uikitopenglview.h */; }; @@ -687,37 +583,21 @@ A75FCF7A23E25AC700529352 /* vulkan_xcb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73823E2513E00DCD162 /* vulkan_xcb.h */; }; A75FCF7B23E25AC700529352 /* vulkan_ios.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73B23E2513E00DCD162 /* vulkan_ios.h */; }; A75FCF7C23E25AC700529352 /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A58323E2513D00DCD162 /* SDL_internal.h */; }; - A75FCF7D23E25AC700529352 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF7E23E25AC700529352 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF7F23E25AC700529352 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF8023E25AC700529352 /* vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73023E2513E00DCD162 /* vulkan.h */; }; A75FCF8123E25AC700529352 /* SDL_keyboard_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A93D23E2514000DCD162 /* SDL_keyboard_c.h */; }; - A75FCF8223E25AC700529352 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF8323E25AC700529352 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF8423E25AC700529352 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF8523E25AC700529352 /* SDL_mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A92B23E2514000DCD162 /* SDL_mouse_c.h */; }; A75FCF8623E25AC700529352 /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73F23E2513E00DCD162 /* SDL_blit_auto.h */; }; A75FCF8723E25AC700529352 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A8F223E2514000DCD162 /* SDL_blendline.h */; }; A75FCF8823E25AC700529352 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5CC23E2513D00DCD162 /* SDL_syshaptic.h */; }; A75FCF8923E25AC700529352 /* SDL_vulkan_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A63E23E2513D00DCD162 /* SDL_vulkan_internal.h */; }; - A75FCF8A23E25AC700529352 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF8B23E25AC700529352 /* SDL_cocoaevents.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69623E2513E00DCD162 /* SDL_cocoaevents.h */; }; A75FCF8C23E25AC700529352 /* vk_icd.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A72E23E2513E00DCD162 /* vk_icd.h */; }; A75FCF8D23E25AC700529352 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A60723E2513D00DCD162 /* SDL_nullframebuffer_c.h */; }; - A75FCF8E23E25AC700529352 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF8F23E25AC700529352 /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5DB23E2513D00DCD162 /* SDL_dynapi_procs.h */; }; A75FCF9023E25AC700529352 /* vulkan_fuchsia.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A73323E2513E00DCD162 /* vulkan_fuchsia.h */; }; - A75FCF9123E25AC700529352 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF9223E25AC700529352 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF9323E25AC700529352 /* usb_ids.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A7CB23E2513E00DCD162 /* usb_ids.h */; }; A75FCF9423E25AC700529352 /* SDL_gles2funcs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A90623E2514000DCD162 /* SDL_gles2funcs.h */; }; - A75FCF9623E25AC700529352 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF9723E25AC700529352 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF9823E25AC700529352 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF9923E25AC700529352 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF9A23E25AC700529352 /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A61723E2513D00DCD162 /* SDL_sysvideo.h */; }; - A75FCF9B23E25AC700529352 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A75FCF9C23E25AC700529352 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; A75FCF9E23E25AC700529352 /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A5D923E2513D00DCD162 /* SDL_dynapi_overrides.h */; }; A75FCF9F23E25AC700529352 /* SDL_cocoawindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A69223E2513E00DCD162 /* SDL_cocoawindow.h */; }; A75FCFA223E25AC700529352 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A8F123E2514000DCD162 /* SDL_drawline.c */; }; @@ -1238,135 +1118,12 @@ A769B22B23E259AE00872273 /* SDL_cocoavulkan.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A68323E2513E00DCD162 /* SDL_cocoavulkan.m */; }; A769B22C23E259AE00872273 /* SDL_uikitappdelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A61E23E2513D00DCD162 /* SDL_uikitappdelegate.m */; }; A769B22D23E259AE00872273 /* SDL_offscreenwindow.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A5EF23E2513D00DCD162 /* SDL_offscreenwindow.c */; }; - A77E6EB4167AB0A90010E40B /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1623E2437C00DCD162 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1823E2437C00DCD162 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1923E2437C00DCD162 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1A23E2437C00DCD162 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1B23E2437C00DCD162 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1D23E2437C00DCD162 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1E23E2437C00DCD162 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A1F23E2437C00DCD162 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2023E2437C00DCD162 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2EF7001FC9EF0F003F5197 /* SDL_egl.h */; }; - A7D88A2123E2437C00DCD162 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2523E2437C00DCD162 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2623E2437C00DCD162 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2723E2437C00DCD162 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2823E2437C00DCD162 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2923E2437C00DCD162 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2A23E2437C00DCD162 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2B23E2437C00DCD162 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2C23E2437C00DCD162 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2D23E2437C00DCD162 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2E23E2437C00DCD162 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A2F23E2437C00DCD162 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3023E2437C00DCD162 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3123E2437C00DCD162 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3223E2437C00DCD162 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24348A21D41FFB00B8918A /* SDL_metal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3323E2437C00DCD162 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3523E2437C00DCD162 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3623E2437C00DCD162 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3823E2437C00DCD162 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3923E2437C00DCD162 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3A23E2437C00DCD162 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3B23E2437C00DCD162 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3C23E2437C00DCD162 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3D23E2437C00DCD162 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3E23E2437C00DCD162 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A3F23E2437C00DCD162 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4023E2437C00DCD162 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4123E2437C00DCD162 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4223E2437C00DCD162 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4323E2437C00DCD162 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4423E2437C00DCD162 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4523E2437C00DCD162 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4623E2437C00DCD162 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4723E2437C00DCD162 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4823E2437C00DCD162 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4923E2437C00DCD162 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4B23E2437C00DCD162 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4C23E2437C00DCD162 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4D23E2437C00DCD162 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A4E23E2437C00DCD162 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5023E2437C00DCD162 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5123E2437C00DCD162 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5223E2437C00DCD162 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5323E2437C00DCD162 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5423E2437C00DCD162 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5523E2437C00DCD162 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5623E2437C00DCD162 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5723E2437C00DCD162 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5823E2437C00DCD162 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5923E2437C00DCD162 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5A23E2437C00DCD162 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88A5C23E2437C00DCD162 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4820431F0F10B400EDC31C /* SDL_vulkan.h */; settings = {ATTRIBUTES = (Public, ); }; }; A7D88B4723E2437C00DCD162 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564624371FF821CB0074AC87 /* Metal.framework */; }; A7D88B4823E2437C00DCD162 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564624351FF821B80074AC87 /* QuartzCore.framework */; }; A7D88B4C23E2437C00DCD162 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E951D8B69D600B177DD /* CoreAudio.framework */; }; A7D88B4D23E2437C00DCD162 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; A7D88B4E23E2437C00DCD162 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; A7D88B5023E2437C00DCD162 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; - A7D88BCC23E24BED00DCD162 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BCE23E24BED00DCD162 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BCF23E24BED00DCD162 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD023E24BED00DCD162 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD123E24BED00DCD162 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD423E24BED00DCD162 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD523E24BED00DCD162 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD623E24BED00DCD162 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BD723E24BED00DCD162 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2EF7001FC9EF0F003F5197 /* SDL_egl.h */; }; - A7D88BD823E24BED00DCD162 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BDC23E24BED00DCD162 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BDD23E24BED00DCD162 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BDE23E24BED00DCD162 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BDF23E24BED00DCD162 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE023E24BED00DCD162 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE123E24BED00DCD162 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE223E24BED00DCD162 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE323E24BED00DCD162 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE423E24BED00DCD162 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE523E24BED00DCD162 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE623E24BED00DCD162 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE723E24BED00DCD162 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BE923E24BED00DCD162 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BEA23E24BED00DCD162 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24348A21D41FFB00B8918A /* SDL_metal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BEB23E24BED00DCD162 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BED23E24BED00DCD162 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BEF23E24BED00DCD162 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF123E24BED00DCD162 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF223E24BED00DCD162 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF323E24BED00DCD162 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF423E24BED00DCD162 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF523E24BED00DCD162 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF623E24BED00DCD162 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF723E24BED00DCD162 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF823E24BED00DCD162 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BF923E24BED00DCD162 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFA23E24BED00DCD162 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFB23E24BED00DCD162 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFC23E24BED00DCD162 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFD23E24BED00DCD162 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFE23E24BED00DCD162 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88BFF23E24BED00DCD162 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0023E24BED00DCD162 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0123E24BED00DCD162 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0223E24BED00DCD162 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0423E24BED00DCD162 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0523E24BED00DCD162 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0723E24BED00DCD162 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0823E24BED00DCD162 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0A23E24BED00DCD162 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0C23E24BED00DCD162 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0D23E24BED00DCD162 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0E23E24BED00DCD162 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C0F23E24BED00DCD162 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1123E24BED00DCD162 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1223E24BED00DCD162 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1423E24BED00DCD162 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1523E24BED00DCD162 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1623E24BED00DCD162 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1723E24BED00DCD162 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D88C1923E24BED00DCD162 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4820431F0F10B400EDC31C /* SDL_vulkan.h */; settings = {ATTRIBUTES = (Public, ); }; }; A7D88D0723E24BED00DCD162 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7381E951D8B69D600B177DD /* CoreAudio.framework */; }; A7D88D0823E24BED00DCD162 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; A7D88D0B23E24BED00DCD162 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; @@ -3233,119 +2990,6 @@ A7D8BC0523E2574800DCD162 /* SDL_uikitwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D8A62723E2513D00DCD162 /* SDL_uikitwindow.h */; }; A7D8BC0623E2574800DCD162 /* SDL_uikitwindow.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A61A23E2513D00DCD162 /* SDL_uikitwindow.m */; }; A7D8BC0723E2590800DCD162 /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A5B023E2513D00DCD162 /* SDL_uikit_main.c */; }; - AA7557FA1595D4D800BBD41B /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7557FC1595D4D800BBD41B /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7557FE1595D4D800BBD41B /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558001595D4D800BBD41B /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558021595D4D800BBD41B /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558041595D4D800BBD41B /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558061595D4D800BBD41B /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75580C1595D4D800BBD41B /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75580E1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558101595D4D800BBD41B /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558121595D4D800BBD41B /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558141595D4D800BBD41B /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558161595D4D800BBD41B /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558181595D4D800BBD41B /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75581A1595D4D800BBD41B /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75581E1595D4D800BBD41B /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558201595D4D800BBD41B /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558221595D4D800BBD41B /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558241595D4D800BBD41B /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558261595D4D800BBD41B /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558281595D4D800BBD41B /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75582A1595D4D800BBD41B /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75582C1595D4D800BBD41B /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75582E1595D4D800BBD41B /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558301595D4D800BBD41B /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558321595D4D800BBD41B /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558341595D4D800BBD41B /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558361595D4D800BBD41B /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558381595D4D800BBD41B /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75583A1595D4D800BBD41B /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75583C1595D4D800BBD41B /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75583E1595D4D800BBD41B /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558401595D4D800BBD41B /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558421595D4D800BBD41B /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558441595D4D800BBD41B /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558461595D4D800BBD41B /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558481595D4D800BBD41B /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75584A1595D4D800BBD41B /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75584C1595D4D800BBD41B /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75584E1595D4D800BBD41B /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558501595D4D800BBD41B /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558521595D4D800BBD41B /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558541595D4D800BBD41B /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558561595D4D800BBD41B /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA7558581595D4D800BBD41B /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75585A1595D4D800BBD41B /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75585C1595D4D800BBD41B /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA75585E1595D4D800BBD41B /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA8167541F5E727800518735 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4820431F0F10B400EDC31C /* SDL_vulkan.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA9FF95A1637CBF9000DF050 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC070F9195606770073DCDF /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC070FB195606770073DCDF /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC070FC195606770073DCDF /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC070FE195606770073DCDF /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC070FF195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC07101195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC07102195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC07104195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC07105195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAC07107195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AADA5B8716CCAB3000107CF7 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB0F489317C400E6008798C5 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB0F490C17CA57ED008798C5 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FC817554B71006C0E22 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FC917554B71006C0E22 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FCA17554B71006C0E22 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FCB17554B71006C0E22 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FCC17554B71006C0E22 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FCD17554B71006C0E22 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FCE17554B71006C0E22 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD117554B71006C0E22 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD217554B71006C0E22 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD317554B71006C0E22 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD417554B71006C0E22 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD517554B71006C0E22 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD617554B71006C0E22 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD717554B71006C0E22 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD817554B71006C0E22 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FD917554B71006C0E22 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDA17554B71006C0E22 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDB17554B71006C0E22 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDC17554B71006C0E22 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDD17554B71006C0E22 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDE17554B71006C0E22 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FDF17554B71006C0E22 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE017554B71006C0E22 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE117554B71006C0E22 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE217554B71006C0E22 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE317554B71006C0E22 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE417554B71006C0E22 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE517554B71006C0E22 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE617554B71006C0E22 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE717554B71006C0E22 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE817554B71006C0E22 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FE917554B71006C0E22 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FEA17554B71006C0E22 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FEB17554B71006C0E22 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FEC17554B71006C0E22 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FED17554B71006C0E22 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FEE17554B71006C0E22 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FEF17554B71006C0E22 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF017554B71006C0E22 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF117554B71006C0E22 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF217554B71006C0E22 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF317554B71006C0E22 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF417554B71006C0E22 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF517554B71006C0E22 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF617554B71006C0E22 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF717554B71006C0E22 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF817554B71006C0E22 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FF917554B71006C0E22 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FFB17554B71006C0E22 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB313FFC17554B71006C0E22 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; DB31406E17554B71006C0E22 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; DB31407017554B71006C0E22 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; DB31407217554B71006C0E22 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; @@ -3382,8 +3026,6 @@ F34B9895291DEFF500AAC96E /* SDL_hidapi_steam.c in Sources */ = {isa = PBXBuildFile; fileRef = A75FDAAC23E2795C00529352 /* SDL_hidapi_steam.c */; }; F34B9896291DEFF700AAC96E /* SDL_hidapi_steam.c in Sources */ = {isa = PBXBuildFile; fileRef = A75FDAAC23E2795C00529352 /* SDL_hidapi_steam.c */; }; F34B9897291DEFFA00AAC96E /* SDL_hidapi_steam.c in Sources */ = {isa = PBXBuildFile; fileRef = A75FDAAC23E2795C00529352 /* SDL_hidapi_steam.c */; }; - F3631C6424884ACF004F28EA /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 566E26792462701100718109 /* SDL_locale.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3631C652488534E004F28EA /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 566E26792462701100718109 /* SDL_locale.h */; settings = {ATTRIBUTES = (Public, ); }; }; F376F6192559B29300CFC0BC /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F376F6182559B29300CFC0BC /* OpenGLES.framework */; platformFilter = ios; }; F376F61B2559B2AF00CFC0BC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F376F61A2559B2AF00CFC0BC /* UIKit.framework */; }; F376F6322559B31D00CFC0BC /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F376F6312559B31D00CFC0BC /* GameController.framework */; }; @@ -3436,21 +3078,6 @@ F3820723284F362F004DD584 /* SDL_guid.c in Sources */ = {isa = PBXBuildFile; fileRef = F382071C284F362F004DD584 /* SDL_guid.c */; }; F3820724284F362F004DD584 /* SDL_guid.c in Sources */ = {isa = PBXBuildFile; fileRef = F382071C284F362F004DD584 /* SDL_guid.c */; }; F3820725284F362F004DD584 /* SDL_guid.c in Sources */ = {isa = PBXBuildFile; fileRef = F382071C284F362F004DD584 /* SDL_guid.c */; }; - F3820727284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3820728284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3820729284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382072A284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; }; - F382072B284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; }; - F382072C284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; }; - F382072D284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382072E284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382072F284F3643004DD584 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3820726284F3643004DD584 /* SDL_guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F38233852738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F38233862738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F38233872738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382338B2738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382338C2738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F382338D2738EB8600F7F527 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F38233842738EB8600F7F527 /* SDL_hidapi.h */; settings = {ATTRIBUTES = (Public, ); }; }; F382338E2738EBEC00F7F527 /* SDL_hidapi.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A81423E2513F00DCD162 /* SDL_hidapi.c */; }; F382338F2738EBEF00F7F527 /* SDL_hidapi.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A81423E2513F00DCD162 /* SDL_hidapi.c */; }; F38233902738EBF000F7F527 /* SDL_hidapi.c in Sources */ = {isa = PBXBuildFile; fileRef = A7D8A81423E2513F00DCD162 /* SDL_hidapi.c */; }; @@ -3502,12 +3129,8 @@ F388C95B28B5F6F700661ECF /* SDL_hidapi_ps3.c in Sources */ = {isa = PBXBuildFile; fileRef = F388C95428B5F6F600661ECF /* SDL_hidapi_ps3.c */; }; F388C95C28B5F6F700661ECF /* SDL_hidapi_ps3.c in Sources */ = {isa = PBXBuildFile; fileRef = F388C95428B5F6F600661ECF /* SDL_hidapi_ps3.c */; }; F388C95D28B5F6F700661ECF /* SDL_hidapi_ps3.c in Sources */ = {isa = PBXBuildFile; fileRef = F388C95428B5F6F600661ECF /* SDL_hidapi_ps3.c */; }; - F3928194258603F1003191A7 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4F252BB2BE005D5928 /* SDL_misc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F392819F25860422003191A7 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616CA4F252BB2BE005D5928 /* SDL_misc.h */; settings = {ATTRIBUTES = (Public, ); }; }; F3942659253579B400B03694 /* CoreHaptics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F37DC5F225350EBC0002E6F7 /* CoreHaptics.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; F394265A253579D200B03694 /* CoreHaptics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F37DC5F425350ECC0002E6F7 /* CoreHaptics.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; - F3950CD8212BC88D00F51292 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3950CDA212BC88D00F51292 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3950CD7212BC88D00F51292 /* SDL_sensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; F395BF6525633B2400942BFF /* SDL_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = F395BF6425633B2400942BFF /* SDL_crc32.c */; }; F395BF6625633B2400942BFF /* SDL_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = F395BF6425633B2400942BFF /* SDL_crc32.c */; }; F395BF6725633B2400942BFF /* SDL_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = F395BF6425633B2400942BFF /* SDL_crc32.c */; }; @@ -3613,7 +3236,262 @@ F3F07D60269640160074468B /* SDL_hidapi_luna.c in Sources */ = {isa = PBXBuildFile; fileRef = F3F07D59269640160074468B /* SDL_hidapi_luna.c */; }; F3F07D61269640160074468B /* SDL_hidapi_luna.c in Sources */ = {isa = PBXBuildFile; fileRef = F3F07D59269640160074468B /* SDL_hidapi_luna.c */; }; F3F07D62269640160074468B /* SDL_hidapi_luna.c in Sources */ = {isa = PBXBuildFile; fileRef = F3F07D59269640160074468B /* SDL_hidapi_luna.c */; }; - FA24348B21D41FFB00B8918A /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24348A21D41FFB00B8918A /* SDL_metal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3F7D8E92933074E00816151 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8A92933074900816151 /* SDL_gesture.h */; }; + F3F7D8EA2933074E00816151 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8A92933074900816151 /* SDL_gesture.h */; }; + F3F7D8EB2933074E00816151 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8A92933074900816151 /* SDL_gesture.h */; }; + F3F7D8EC2933074E00816151 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8A92933074900816151 /* SDL_gesture.h */; }; + F3F7D8ED2933074E00816151 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AA2933074900816151 /* SDL_audio.h */; }; + F3F7D8EE2933074E00816151 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AA2933074900816151 /* SDL_audio.h */; }; + F3F7D8EF2933074E00816151 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AA2933074900816151 /* SDL_audio.h */; }; + F3F7D8F02933074E00816151 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AA2933074900816151 /* SDL_audio.h */; }; + F3F7D8F12933074E00816151 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AB2933074900816151 /* SDL_platform.h */; }; + F3F7D8F22933074E00816151 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AB2933074900816151 /* SDL_platform.h */; }; + F3F7D8F32933074E00816151 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AB2933074900816151 /* SDL_platform.h */; }; + F3F7D8F42933074E00816151 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AB2933074900816151 /* SDL_platform.h */; }; + F3F7D8F52933074E00816151 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AC2933074900816151 /* SDL_stdinc.h */; }; + F3F7D8F62933074E00816151 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AC2933074900816151 /* SDL_stdinc.h */; }; + F3F7D8F72933074E00816151 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AC2933074900816151 /* SDL_stdinc.h */; }; + F3F7D8F82933074E00816151 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AC2933074900816151 /* SDL_stdinc.h */; }; + F3F7D8F92933074E00816151 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AD2933074900816151 /* SDL_haptic.h */; }; + F3F7D8FA2933074E00816151 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AD2933074900816151 /* SDL_haptic.h */; }; + F3F7D8FB2933074E00816151 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AD2933074900816151 /* SDL_haptic.h */; }; + F3F7D8FC2933074E00816151 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AD2933074900816151 /* SDL_haptic.h */; }; + F3F7D8FD2933074E00816151 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */; }; + F3F7D8FE2933074E00816151 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */; }; + F3F7D8FF2933074E00816151 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */; }; + F3F7D9002933074E00816151 /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */; }; + F3F7D9012933074E00816151 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AF2933074900816151 /* SDL_touch.h */; }; + F3F7D9022933074E00816151 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AF2933074900816151 /* SDL_touch.h */; }; + F3F7D9032933074E00816151 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AF2933074900816151 /* SDL_touch.h */; }; + F3F7D9042933074E00816151 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8AF2933074900816151 /* SDL_touch.h */; }; + F3F7D9052933074E00816151 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B02933074900816151 /* SDL_main.h */; }; + F3F7D9062933074E00816151 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B02933074900816151 /* SDL_main.h */; }; + F3F7D9072933074E00816151 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B02933074900816151 /* SDL_main.h */; }; + F3F7D9082933074E00816151 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B02933074900816151 /* SDL_main.h */; }; + F3F7D9092933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */; }; + F3F7D90A2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */; }; + F3F7D90B2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */; }; + F3F7D90C2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */; }; + F3F7D90D2933074E00816151 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B22933074900816151 /* SDL_timer.h */; }; + F3F7D90E2933074E00816151 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B22933074900816151 /* SDL_timer.h */; }; + F3F7D90F2933074E00816151 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B22933074900816151 /* SDL_timer.h */; }; + F3F7D9102933074E00816151 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B22933074900816151 /* SDL_timer.h */; }; + F3F7D9112933074E00816151 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B32933074900816151 /* SDL_hints.h */; }; + F3F7D9122933074E00816151 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B32933074900816151 /* SDL_hints.h */; }; + F3F7D9132933074E00816151 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B32933074900816151 /* SDL_hints.h */; }; + F3F7D9142933074E00816151 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B32933074900816151 /* SDL_hints.h */; }; + F3F7D9152933074E00816151 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B42933074900816151 /* SDL_revision.h */; }; + F3F7D9162933074E00816151 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B42933074900816151 /* SDL_revision.h */; }; + F3F7D9172933074E00816151 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B42933074900816151 /* SDL_revision.h */; }; + F3F7D9182933074E00816151 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B42933074900816151 /* SDL_revision.h */; }; + F3F7D9192933074E00816151 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B52933074A00816151 /* SDL_pixels.h */; }; + F3F7D91A2933074E00816151 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B52933074A00816151 /* SDL_pixels.h */; }; + F3F7D91B2933074E00816151 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B52933074A00816151 /* SDL_pixels.h */; }; + F3F7D91C2933074E00816151 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B52933074A00816151 /* SDL_pixels.h */; }; + F3F7D91D2933074E00816151 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B62933074A00816151 /* SDL_messagebox.h */; }; + F3F7D91E2933074E00816151 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B62933074A00816151 /* SDL_messagebox.h */; }; + F3F7D91F2933074E00816151 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B62933074A00816151 /* SDL_messagebox.h */; }; + F3F7D9202933074E00816151 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B62933074A00816151 /* SDL_messagebox.h */; }; + F3F7D9212933074E00816151 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B72933074A00816151 /* SDL_log.h */; }; + F3F7D9222933074E00816151 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B72933074A00816151 /* SDL_log.h */; }; + F3F7D9232933074E00816151 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B72933074A00816151 /* SDL_log.h */; }; + F3F7D9242933074E00816151 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B72933074A00816151 /* SDL_log.h */; }; + F3F7D9252933074E00816151 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B82933074A00816151 /* SDL_egl.h */; }; + F3F7D9262933074E00816151 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B82933074A00816151 /* SDL_egl.h */; }; + F3F7D9272933074E00816151 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B82933074A00816151 /* SDL_egl.h */; }; + F3F7D9282933074E00816151 /* SDL_egl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B82933074A00816151 /* SDL_egl.h */; }; + F3F7D9292933074E00816151 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B92933074A00816151 /* SDL_atomic.h */; }; + F3F7D92A2933074E00816151 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B92933074A00816151 /* SDL_atomic.h */; }; + F3F7D92B2933074E00816151 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B92933074A00816151 /* SDL_atomic.h */; }; + F3F7D92C2933074E00816151 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8B92933074A00816151 /* SDL_atomic.h */; }; + F3F7D92D2933074E00816151 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BA2933074A00816151 /* SDL_shape.h */; }; + F3F7D92E2933074E00816151 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BA2933074A00816151 /* SDL_shape.h */; }; + F3F7D92F2933074E00816151 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BA2933074A00816151 /* SDL_shape.h */; }; + F3F7D9302933074E00816151 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BA2933074A00816151 /* SDL_shape.h */; }; + F3F7D9312933074E00816151 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BB2933074A00816151 /* SDL_surface.h */; }; + F3F7D9322933074E00816151 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BB2933074A00816151 /* SDL_surface.h */; }; + F3F7D9332933074E00816151 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BB2933074A00816151 /* SDL_surface.h */; }; + F3F7D9342933074E00816151 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BB2933074A00816151 /* SDL_surface.h */; }; + F3F7D9352933074E00816151 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BC2933074A00816151 /* SDL_error.h */; }; + F3F7D9362933074E00816151 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BC2933074A00816151 /* SDL_error.h */; }; + F3F7D9372933074E00816151 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BC2933074A00816151 /* SDL_error.h */; }; + F3F7D9382933074E00816151 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BC2933074A00816151 /* SDL_error.h */; }; + F3F7D9392933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */; }; + F3F7D93A2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */; }; + F3F7D93B2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */; }; + F3F7D93C2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */; }; + F3F7D93D2933074E00816151 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BE2933074A00816151 /* SDL_endian.h */; }; + F3F7D93E2933074E00816151 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BE2933074A00816151 /* SDL_endian.h */; }; + F3F7D93F2933074E00816151 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BE2933074A00816151 /* SDL_endian.h */; }; + F3F7D9402933074E00816151 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BE2933074A00816151 /* SDL_endian.h */; }; + F3F7D9412933074E00816151 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BF2933074A00816151 /* SDL_syswm.h */; }; + F3F7D9422933074E00816151 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BF2933074A00816151 /* SDL_syswm.h */; }; + F3F7D9432933074E00816151 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BF2933074A00816151 /* SDL_syswm.h */; }; + F3F7D9442933074E00816151 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8BF2933074A00816151 /* SDL_syswm.h */; }; + F3F7D9452933074E00816151 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */; }; + F3F7D9462933074E00816151 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */; }; + F3F7D9472933074E00816151 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */; }; + F3F7D9482933074E00816151 /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */; }; + F3F7D9492933074E00816151 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C12933074B00816151 /* SDL_scancode.h */; }; + F3F7D94A2933074E00816151 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C12933074B00816151 /* SDL_scancode.h */; }; + F3F7D94B2933074E00816151 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C12933074B00816151 /* SDL_scancode.h */; }; + F3F7D94C2933074E00816151 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C12933074B00816151 /* SDL_scancode.h */; }; + F3F7D94D2933074E00816151 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C22933074B00816151 /* SDL_sensor.h */; }; + F3F7D94E2933074E00816151 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C22933074B00816151 /* SDL_sensor.h */; }; + F3F7D94F2933074E00816151 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C22933074B00816151 /* SDL_sensor.h */; }; + F3F7D9502933074E00816151 /* SDL_sensor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C22933074B00816151 /* SDL_sensor.h */; }; + F3F7D9512933074E00816151 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C32933074B00816151 /* SDL_keyboard.h */; }; + F3F7D9522933074E00816151 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C32933074B00816151 /* SDL_keyboard.h */; }; + F3F7D9532933074E00816151 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C32933074B00816151 /* SDL_keyboard.h */; }; + F3F7D9542933074E00816151 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C32933074B00816151 /* SDL_keyboard.h */; }; + F3F7D9552933074E00816151 /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C42933074B00816151 /* SDL_locale.h */; }; + F3F7D9562933074E00816151 /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C42933074B00816151 /* SDL_locale.h */; }; + F3F7D9572933074E00816151 /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C42933074B00816151 /* SDL_locale.h */; }; + F3F7D9582933074E00816151 /* SDL_locale.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C42933074B00816151 /* SDL_locale.h */; }; + F3F7D9592933074E00816151 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C52933074B00816151 /* SDL_video.h */; }; + F3F7D95A2933074E00816151 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C52933074B00816151 /* SDL_video.h */; }; + F3F7D95B2933074E00816151 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C52933074B00816151 /* SDL_video.h */; }; + F3F7D95C2933074E00816151 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C52933074B00816151 /* SDL_video.h */; }; + F3F7D95D2933074E00816151 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C62933074B00816151 /* SDL_opengles.h */; }; + F3F7D95E2933074E00816151 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C62933074B00816151 /* SDL_opengles.h */; }; + F3F7D95F2933074E00816151 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C62933074B00816151 /* SDL_opengles.h */; }; + F3F7D9602933074E00816151 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C62933074B00816151 /* SDL_opengles.h */; }; + F3F7D9612933074E00816151 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C72933074B00816151 /* SDL_opengles2.h */; }; + F3F7D9622933074E00816151 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C72933074B00816151 /* SDL_opengles2.h */; }; + F3F7D9632933074E00816151 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C72933074B00816151 /* SDL_opengles2.h */; }; + F3F7D9642933074E00816151 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C72933074B00816151 /* SDL_opengles2.h */; }; + F3F7D9652933074E00816151 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C82933074B00816151 /* SDL_rwops.h */; }; + F3F7D9662933074E00816151 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C82933074B00816151 /* SDL_rwops.h */; }; + F3F7D9672933074E00816151 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C82933074B00816151 /* SDL_rwops.h */; }; + F3F7D9682933074E00816151 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C82933074B00816151 /* SDL_rwops.h */; }; + F3F7D9692933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */; }; + F3F7D96A2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */; }; + F3F7D96B2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */; }; + F3F7D96C2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */; }; + F3F7D96D2933074E00816151 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CA2933074B00816151 /* SDL_hidapi.h */; }; + F3F7D96E2933074E00816151 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CA2933074B00816151 /* SDL_hidapi.h */; }; + F3F7D96F2933074E00816151 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CA2933074B00816151 /* SDL_hidapi.h */; }; + F3F7D9702933074E00816151 /* SDL_hidapi.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CA2933074B00816151 /* SDL_hidapi.h */; }; + F3F7D9712933074E00816151 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CB2933074B00816151 /* SDL_events.h */; }; + F3F7D9722933074E00816151 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CB2933074B00816151 /* SDL_events.h */; }; + F3F7D9732933074E00816151 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CB2933074B00816151 /* SDL_events.h */; }; + F3F7D9742933074E00816151 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CB2933074B00816151 /* SDL_events.h */; }; + F3F7D9752933074E00816151 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CC2933074B00816151 /* SDL_keycode.h */; }; + F3F7D9762933074E00816151 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CC2933074B00816151 /* SDL_keycode.h */; }; + F3F7D9772933074E00816151 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CC2933074B00816151 /* SDL_keycode.h */; }; + F3F7D9782933074E00816151 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CC2933074B00816151 /* SDL_keycode.h */; }; + F3F7D9792933074E00816151 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CD2933074C00816151 /* SDL_thread.h */; }; + F3F7D97A2933074E00816151 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CD2933074C00816151 /* SDL_thread.h */; }; + F3F7D97B2933074E00816151 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CD2933074C00816151 /* SDL_thread.h */; }; + F3F7D97C2933074E00816151 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CD2933074C00816151 /* SDL_thread.h */; }; + F3F7D97D2933074E00816151 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CE2933074C00816151 /* SDL_blendmode.h */; }; + F3F7D97E2933074E00816151 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CE2933074C00816151 /* SDL_blendmode.h */; }; + F3F7D97F2933074E00816151 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CE2933074C00816151 /* SDL_blendmode.h */; }; + F3F7D9802933074E00816151 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CE2933074C00816151 /* SDL_blendmode.h */; }; + F3F7D9812933074E00816151 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CF2933074C00816151 /* SDL.h */; }; + F3F7D9822933074E00816151 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CF2933074C00816151 /* SDL.h */; }; + F3F7D9832933074E00816151 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CF2933074C00816151 /* SDL.h */; }; + F3F7D9842933074E00816151 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8CF2933074C00816151 /* SDL.h */; }; + F3F7D9852933074E00816151 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */; }; + F3F7D9862933074E00816151 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */; }; + F3F7D9872933074E00816151 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */; }; + F3F7D9882933074E00816151 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */; }; + F3F7D9892933074E00816151 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D12933074C00816151 /* SDL_guid.h */; }; + F3F7D98A2933074E00816151 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D12933074C00816151 /* SDL_guid.h */; }; + F3F7D98B2933074E00816151 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D12933074C00816151 /* SDL_guid.h */; }; + F3F7D98C2933074E00816151 /* SDL_guid.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D12933074C00816151 /* SDL_guid.h */; }; + F3F7D98D2933074E00816151 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D22933074C00816151 /* SDL_metal.h */; }; + F3F7D98E2933074E00816151 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D22933074C00816151 /* SDL_metal.h */; }; + F3F7D98F2933074E00816151 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D22933074C00816151 /* SDL_metal.h */; }; + F3F7D9902933074E00816151 /* SDL_metal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D22933074C00816151 /* SDL_metal.h */; }; + F3F7D9912933074E00816151 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D32933074C00816151 /* SDL_joystick.h */; }; + F3F7D9922933074E00816151 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D32933074C00816151 /* SDL_joystick.h */; }; + F3F7D9932933074E00816151 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D32933074C00816151 /* SDL_joystick.h */; }; + F3F7D9942933074E00816151 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D32933074C00816151 /* SDL_joystick.h */; }; + F3F7D9952933074E00816151 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D42933074C00816151 /* SDL_vulkan.h */; }; + F3F7D9962933074E00816151 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D42933074C00816151 /* SDL_vulkan.h */; }; + F3F7D9972933074E00816151 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D42933074C00816151 /* SDL_vulkan.h */; }; + F3F7D9982933074E00816151 /* SDL_vulkan.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D42933074C00816151 /* SDL_vulkan.h */; }; + F3F7D9992933074E00816151 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D52933074C00816151 /* SDL_misc.h */; }; + F3F7D99A2933074E00816151 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D52933074C00816151 /* SDL_misc.h */; }; + F3F7D99B2933074E00816151 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D52933074C00816151 /* SDL_misc.h */; }; + F3F7D99C2933074E00816151 /* SDL_misc.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D52933074C00816151 /* SDL_misc.h */; }; + F3F7D99D2933074E00816151 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D62933074C00816151 /* SDL_filesystem.h */; }; + F3F7D99E2933074E00816151 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D62933074C00816151 /* SDL_filesystem.h */; }; + F3F7D99F2933074E00816151 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D62933074C00816151 /* SDL_filesystem.h */; }; + F3F7D9A02933074E00816151 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D62933074C00816151 /* SDL_filesystem.h */; }; + F3F7D9A12933074E00816151 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D72933074C00816151 /* SDL_clipboard.h */; }; + F3F7D9A22933074E00816151 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D72933074C00816151 /* SDL_clipboard.h */; }; + F3F7D9A32933074E00816151 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D72933074C00816151 /* SDL_clipboard.h */; }; + F3F7D9A42933074E00816151 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D72933074C00816151 /* SDL_clipboard.h */; }; + F3F7D9A52933074E00816151 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D82933074C00816151 /* SDL_bits.h */; }; + F3F7D9A62933074E00816151 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D82933074C00816151 /* SDL_bits.h */; }; + F3F7D9A72933074E00816151 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D82933074C00816151 /* SDL_bits.h */; }; + F3F7D9A82933074E00816151 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D82933074C00816151 /* SDL_bits.h */; }; + F3F7D9A92933074E00816151 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D92933074C00816151 /* SDL_loadso.h */; }; + F3F7D9AA2933074E00816151 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D92933074C00816151 /* SDL_loadso.h */; }; + F3F7D9AB2933074E00816151 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D92933074C00816151 /* SDL_loadso.h */; }; + F3F7D9AC2933074E00816151 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8D92933074C00816151 /* SDL_loadso.h */; }; + F3F7D9AD2933074E00816151 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DA2933074D00816151 /* SDL_mouse.h */; }; + F3F7D9AE2933074E00816151 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DA2933074D00816151 /* SDL_mouse.h */; }; + F3F7D9AF2933074E00816151 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DA2933074D00816151 /* SDL_mouse.h */; }; + F3F7D9B02933074E00816151 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DA2933074D00816151 /* SDL_mouse.h */; }; + F3F7D9B12933074E00816151 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DB2933074D00816151 /* SDL_power.h */; }; + F3F7D9B22933074E00816151 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DB2933074D00816151 /* SDL_power.h */; }; + F3F7D9B32933074E00816151 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DB2933074D00816151 /* SDL_power.h */; }; + F3F7D9B42933074E00816151 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DB2933074D00816151 /* SDL_power.h */; }; + F3F7D9B52933074E00816151 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DC2933074D00816151 /* SDL_name.h */; }; + F3F7D9B62933074E00816151 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DC2933074D00816151 /* SDL_name.h */; }; + F3F7D9B72933074E00816151 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DC2933074D00816151 /* SDL_name.h */; }; + F3F7D9B82933074E00816151 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DC2933074D00816151 /* SDL_name.h */; }; + F3F7D9B92933074E00816151 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */; }; + F3F7D9BA2933074E00816151 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */; }; + F3F7D9BB2933074E00816151 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */; }; + F3F7D9BC2933074E00816151 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */; }; + F3F7D9BD2933074E00816151 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DE2933074D00816151 /* SDL_render.h */; }; + F3F7D9BE2933074E00816151 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DE2933074D00816151 /* SDL_render.h */; }; + F3F7D9BF2933074E00816151 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DE2933074D00816151 /* SDL_render.h */; }; + F3F7D9C02933074E00816151 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DE2933074D00816151 /* SDL_render.h */; }; + F3F7D9C12933074E00816151 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DF2933074D00816151 /* SDL_quit.h */; }; + F3F7D9C22933074E00816151 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DF2933074D00816151 /* SDL_quit.h */; }; + F3F7D9C32933074E00816151 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DF2933074D00816151 /* SDL_quit.h */; }; + F3F7D9C42933074E00816151 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8DF2933074D00816151 /* SDL_quit.h */; }; + F3F7D9C52933074E00816151 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E02933074D00816151 /* SDL_assert.h */; }; + F3F7D9C62933074E00816151 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E02933074D00816151 /* SDL_assert.h */; }; + F3F7D9C72933074E00816151 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E02933074D00816151 /* SDL_assert.h */; }; + F3F7D9C82933074E00816151 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E02933074D00816151 /* SDL_assert.h */; }; + F3F7D9C92933074E00816151 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E12933074D00816151 /* SDL_opengl.h */; }; + F3F7D9CA2933074E00816151 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E12933074D00816151 /* SDL_opengl.h */; }; + F3F7D9CB2933074E00816151 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E12933074D00816151 /* SDL_opengl.h */; }; + F3F7D9CC2933074E00816151 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E12933074D00816151 /* SDL_opengl.h */; }; + F3F7D9CD2933074E00816151 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E22933074D00816151 /* SDL_rect.h */; }; + F3F7D9CE2933074E00816151 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E22933074D00816151 /* SDL_rect.h */; }; + F3F7D9CF2933074E00816151 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E22933074D00816151 /* SDL_rect.h */; }; + F3F7D9D02933074E00816151 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E22933074D00816151 /* SDL_rect.h */; }; + F3F7D9D12933074E00816151 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E32933074D00816151 /* SDL_copying.h */; }; + F3F7D9D22933074E00816151 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E32933074D00816151 /* SDL_copying.h */; }; + F3F7D9D32933074E00816151 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E32933074D00816151 /* SDL_copying.h */; }; + F3F7D9D42933074E00816151 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E32933074D00816151 /* SDL_copying.h */; }; + F3F7D9D52933074E00816151 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E42933074D00816151 /* SDL_version.h */; }; + F3F7D9D62933074E00816151 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E42933074D00816151 /* SDL_version.h */; }; + F3F7D9D72933074E00816151 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E42933074D00816151 /* SDL_version.h */; }; + F3F7D9D82933074E00816151 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E42933074D00816151 /* SDL_version.h */; }; + F3F7D9D92933074E00816151 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E52933074D00816151 /* close_code.h */; }; + F3F7D9DA2933074E00816151 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E52933074D00816151 /* close_code.h */; }; + F3F7D9DB2933074E00816151 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E52933074D00816151 /* close_code.h */; }; + F3F7D9DC2933074E00816151 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E52933074D00816151 /* close_code.h */; }; + F3F7D9DD2933074E00816151 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E62933074E00816151 /* SDL_mutex.h */; }; + F3F7D9DE2933074E00816151 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E62933074E00816151 /* SDL_mutex.h */; }; + F3F7D9DF2933074E00816151 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E62933074E00816151 /* SDL_mutex.h */; }; + F3F7D9E02933074E00816151 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E62933074E00816151 /* SDL_mutex.h */; }; + F3F7D9E12933074E00816151 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E72933074E00816151 /* begin_code.h */; }; + F3F7D9E22933074E00816151 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E72933074E00816151 /* begin_code.h */; }; + F3F7D9E32933074E00816151 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E72933074E00816151 /* begin_code.h */; }; + F3F7D9E42933074E00816151 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E72933074E00816151 /* begin_code.h */; }; + F3F7D9E52933074E00816151 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E82933074E00816151 /* SDL_system.h */; }; + F3F7D9E62933074E00816151 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E82933074E00816151 /* SDL_system.h */; }; + F3F7D9E72933074E00816151 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E82933074E00816151 /* SDL_system.h */; }; + F3F7D9E82933074E00816151 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7D8E82933074E00816151 /* SDL_system.h */; }; FA73671D19A540EF004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; FA73671F19A54144004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; /* End PBXBuildFile section */ @@ -3668,19 +3546,14 @@ 00794D3F09D0C461003FC8A1 /* License.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = License.txt; sourceTree = ""; }; 00CFA89C106B4BA100758660 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = System/Library/Frameworks/ForceFeedback.framework; sourceTree = SDKROOT; }; 00D0D08310675DD9004B05EF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; - 4D4820431F0F10B400EDC31C /* SDL_vulkan.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_vulkan.h; sourceTree = ""; }; 5616CA49252BB2A5005D5928 /* SDL_url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_url.c; sourceTree = ""; }; 5616CA4A252BB2A6005D5928 /* SDL_sysurl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysurl.h; sourceTree = ""; }; 5616CA4B252BB2A6005D5928 /* SDL_sysurl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_sysurl.m; sourceTree = ""; }; - 5616CA4F252BB2BE005D5928 /* SDL_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_misc.h; sourceTree = ""; }; 564624351FF821B80074AC87 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; 564624371FF821CB0074AC87 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; }; - 566E26792462701100718109 /* SDL_locale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_locale.h; sourceTree = ""; }; 566E26CC246274CB00718109 /* SDL_syslocale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_syslocale.m; path = locale/macos/SDL_syslocale.m; sourceTree = ""; }; 566E26CD246274CB00718109 /* SDL_locale.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_locale.c; path = locale/SDL_locale.c; sourceTree = ""; }; 566E26CE246274CC00718109 /* SDL_syslocale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_syslocale.h; path = locale/SDL_syslocale.h; sourceTree = ""; }; - 567E2F2017C44C35005F1892 /* SDL_filesystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_filesystem.h; sourceTree = ""; }; - 5C2EF7001FC9EF0F003F5197 /* SDL_egl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_egl.h; sourceTree = ""; }; 75E09158241EA924004729E1 /* SDL_virtualjoystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_virtualjoystick.c; sourceTree = ""; }; 75E09159241EA924004729E1 /* SDL_virtualjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_virtualjoystick_c.h; sourceTree = ""; }; 9846B07B287A9020000C35C8 /* SDL_hidapi_shield.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_hidapi_shield.c; sourceTree = ""; }; @@ -3709,7 +3582,6 @@ A75FDBC323EA380300529352 /* SDL_hidapi_rumble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_hidapi_rumble.h; sourceTree = ""; }; A75FDBC423EA380300529352 /* SDL_hidapi_rumble.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_hidapi_rumble.c; sourceTree = ""; }; A769B23D23E259AE00872273 /* libSDL3.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL3.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gamecontroller.h; sourceTree = ""; }; A7D88B5423E2437C00DCD162 /* SDL3.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDL3.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A7D88D1523E24BED00DCD162 /* SDL3.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDL3.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A7D88E5423E24D3B00DCD162 /* libSDL3.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL3.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -4025,61 +3897,6 @@ A7D8A94223E2514000DCD162 /* SDL_events_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events_c.h; sourceTree = ""; }; A7D8A94323E2514000DCD162 /* SDL_windowevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_windowevents_c.h; sourceTree = ""; }; A7D8A94423E2514000DCD162 /* SDL_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_assert.c; sourceTree = ""; }; - AA7557C71595D4D800BBD41B /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = ""; }; - AA7557C81595D4D800BBD41B /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = ""; }; - AA7557C91595D4D800BBD41B /* SDL_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_assert.h; sourceTree = ""; }; - AA7557CA1595D4D800BBD41B /* SDL_atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_atomic.h; sourceTree = ""; }; - AA7557CB1595D4D800BBD41B /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = ""; }; - AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendmode.h; sourceTree = ""; }; - AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboard.h; sourceTree = ""; }; - AA7557D01595D4D800BBD41B /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_copying.h; sourceTree = ""; }; - AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cpuinfo.h; sourceTree = ""; }; - AA7557D21595D4D800BBD41B /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = ""; }; - AA7557D31595D4D800BBD41B /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = ""; }; - AA7557D41595D4D800BBD41B /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events.h; sourceTree = ""; }; - AA7557D51595D4D800BBD41B /* SDL_gesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture.h; sourceTree = ""; }; - AA7557D61595D4D800BBD41B /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = ""; }; - AA7557D71595D4D800BBD41B /* SDL_hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_hints.h; sourceTree = ""; }; - AA7557D91595D4D800BBD41B /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = ""; }; - AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard.h; sourceTree = ""; }; - AA7557DB1595D4D800BBD41B /* SDL_keycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keycode.h; sourceTree = ""; }; - AA7557DC1595D4D800BBD41B /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_loadso.h; sourceTree = ""; }; - AA7557DD1595D4D800BBD41B /* SDL_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_log.h; sourceTree = ""; }; - AA7557DE1595D4D800BBD41B /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = ""; }; - AA7557DF1595D4D800BBD41B /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse.h; sourceTree = ""; }; - AA7557E01595D4D800BBD41B /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = ""; }; - AA7557E11595D4D800BBD41B /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_name.h; sourceTree = ""; }; - AA7557E21595D4D800BBD41B /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengl.h; sourceTree = ""; }; - AA7557E31595D4D800BBD41B /* SDL_opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles.h; sourceTree = ""; }; - AA7557E41595D4D800BBD41B /* SDL_opengles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2.h; sourceTree = ""; }; - AA7557E51595D4D800BBD41B /* SDL_pixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels.h; sourceTree = ""; }; - AA7557E61595D4D800BBD41B /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = ""; }; - AA7557E71595D4D800BBD41B /* SDL_power.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_power.h; sourceTree = ""; }; - AA7557E81595D4D800BBD41B /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_quit.h; sourceTree = ""; }; - AA7557E91595D4D800BBD41B /* SDL_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rect.h; sourceTree = ""; }; - AA7557EA1595D4D800BBD41B /* SDL_render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render.h; sourceTree = ""; }; - AA7557EB1595D4D800BBD41B /* SDL_revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_revision.h; sourceTree = ""; }; - AA7557EC1595D4D800BBD41B /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = ""; }; - AA7557ED1595D4D800BBD41B /* SDL_scancode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_scancode.h; sourceTree = ""; }; - AA7557EE1595D4D800BBD41B /* SDL_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shape.h; sourceTree = ""; }; - AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = ""; }; - AA7557F01595D4D800BBD41B /* SDL_surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_surface.h; sourceTree = ""; }; - AA7557F11595D4D800BBD41B /* SDL_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_system.h; sourceTree = ""; }; - AA7557F21595D4D800BBD41B /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_syswm.h; sourceTree = ""; }; - AA7557F31595D4D800BBD41B /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = ""; }; - AA7557F41595D4D800BBD41B /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer.h; sourceTree = ""; }; - AA7557F51595D4D800BBD41B /* SDL_touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch.h; sourceTree = ""; }; - AA7557F61595D4D800BBD41B /* SDL_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_types.h; sourceTree = ""; }; - AA7557F71595D4D800BBD41B /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_version.h; sourceTree = ""; }; - AA7557F81595D4D800BBD41B /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_video.h; sourceTree = ""; }; - AA7557F91595D4D800BBD41B /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = ""; }; - AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_messagebox.h; sourceTree = ""; }; - AAC070F4195606770073DCDF /* SDL_opengl_glext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengl_glext.h; sourceTree = ""; }; - AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2.h; sourceTree = ""; }; - AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2ext.h; sourceTree = ""; }; - AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2platform.h; sourceTree = ""; }; - AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_khrplatform.h; sourceTree = ""; }; - AADA5B8616CCAB3000107CF7 /* SDL_bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_bits.h; sourceTree = ""; }; BECDF66B0761BA81005FE872 /* Info-Framework.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-Framework.plist"; sourceTree = ""; }; BECDF66C0761BA81005FE872 /* SDL3.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDL3.framework; sourceTree = BUILT_PRODUCTS_DIR; }; BECDF6B30761BA81005FE872 /* libSDL3.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL3.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -4109,14 +3926,11 @@ F37DC5F425350ECC0002E6F7 /* CoreHaptics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreHaptics.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS14.0.sdk/System/Library/Frameworks/CoreHaptics.framework; sourceTree = DEVELOPER_DIR; }; F3820712284F3609004DD584 /* controller_type.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = controller_type.c; sourceTree = ""; }; F382071C284F362F004DD584 /* SDL_guid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_guid.c; sourceTree = ""; }; - F3820726284F3643004DD584 /* SDL_guid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_guid.h; sourceTree = ""; }; - F38233842738EB8600F7F527 /* SDL_hidapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_hidapi.h; sourceTree = ""; }; F382339B2738ED6600F7F527 /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS15.0.sdk/System/Library/Frameworks/CoreBluetooth.framework; sourceTree = DEVELOPER_DIR; }; F386F6E42884663E001840AA /* SDL_log_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_log_c.h; sourceTree = ""; }; F386F6E52884663E001840AA /* SDL_utils_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_utils_c.h; sourceTree = ""; }; F386F6E62884663E001840AA /* SDL_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_utils.c; sourceTree = ""; }; F388C95428B5F6F600661ECF /* SDL_hidapi_ps3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_hidapi_ps3.c; sourceTree = ""; }; - F3950CD7212BC88D00F51292 /* SDL_sensor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sensor.h; sourceTree = ""; }; F395BF6425633B2400942BFF /* SDL_crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_crc32.c; sourceTree = ""; }; F395C1912569C68E00942BFF /* SDL_iokitjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_iokitjoystick_c.h; sourceTree = ""; }; F395C1922569C68E00942BFF /* SDL_iokitjoystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_iokitjoystick.c; sourceTree = ""; }; @@ -4129,10 +3943,73 @@ F3ADAB8D2576F0B300A6B1D9 /* SDL_sysurl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_sysurl.m; sourceTree = ""; }; F3D60A8228C16A1800788A3A /* SDL_hidapi_wii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_hidapi_wii.c; sourceTree = ""; }; F3F07D59269640160074468B /* SDL_hidapi_luna.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_hidapi_luna.c; sourceTree = ""; }; + F3F7D8A92933074900816151 /* SDL_gesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_gesture.h; path = SDL3/SDL_gesture.h; sourceTree = ""; }; + F3F7D8AA2933074900816151 /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_audio.h; path = SDL3/SDL_audio.h; sourceTree = ""; }; + F3F7D8AB2933074900816151 /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_platform.h; path = SDL3/SDL_platform.h; sourceTree = ""; }; + F3F7D8AC2933074900816151 /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_stdinc.h; path = SDL3/SDL_stdinc.h; sourceTree = ""; }; + F3F7D8AD2933074900816151 /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_haptic.h; path = SDL3/SDL_haptic.h; sourceTree = ""; }; + F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2_gl2.h; path = SDL3/SDL_opengles2_gl2.h; sourceTree = ""; }; + F3F7D8AF2933074900816151 /* SDL_touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_touch.h; path = SDL3/SDL_touch.h; sourceTree = ""; }; + F3F7D8B02933074900816151 /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_main.h; path = SDL3/SDL_main.h; sourceTree = ""; }; + F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2_khrplatform.h; path = SDL3/SDL_opengles2_khrplatform.h; sourceTree = ""; }; + F3F7D8B22933074900816151 /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_timer.h; path = SDL3/SDL_timer.h; sourceTree = ""; }; + F3F7D8B32933074900816151 /* SDL_hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_hints.h; path = SDL3/SDL_hints.h; sourceTree = ""; }; + F3F7D8B42933074900816151 /* SDL_revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_revision.h; path = SDL3/SDL_revision.h; sourceTree = ""; }; + F3F7D8B52933074A00816151 /* SDL_pixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_pixels.h; path = SDL3/SDL_pixels.h; sourceTree = ""; }; + F3F7D8B62933074A00816151 /* SDL_messagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_messagebox.h; path = SDL3/SDL_messagebox.h; sourceTree = ""; }; + F3F7D8B72933074A00816151 /* SDL_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_log.h; path = SDL3/SDL_log.h; sourceTree = ""; }; + F3F7D8B82933074A00816151 /* SDL_egl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_egl.h; path = SDL3/SDL_egl.h; sourceTree = ""; }; + F3F7D8B92933074A00816151 /* SDL_atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_atomic.h; path = SDL3/SDL_atomic.h; sourceTree = ""; }; + F3F7D8BA2933074A00816151 /* SDL_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_shape.h; path = SDL3/SDL_shape.h; sourceTree = ""; }; + F3F7D8BB2933074A00816151 /* SDL_surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_surface.h; path = SDL3/SDL_surface.h; sourceTree = ""; }; + F3F7D8BC2933074A00816151 /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_error.h; path = SDL3/SDL_error.h; sourceTree = ""; }; + F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2_gl2ext.h; path = SDL3/SDL_opengles2_gl2ext.h; sourceTree = ""; }; + F3F7D8BE2933074A00816151 /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_endian.h; path = SDL3/SDL_endian.h; sourceTree = ""; }; + F3F7D8BF2933074A00816151 /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_syswm.h; path = SDL3/SDL_syswm.h; sourceTree = ""; }; + F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengl_glext.h; path = SDL3/SDL_opengl_glext.h; sourceTree = ""; }; + F3F7D8C12933074B00816151 /* SDL_scancode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_scancode.h; path = SDL3/SDL_scancode.h; sourceTree = ""; }; + F3F7D8C22933074B00816151 /* SDL_sensor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_sensor.h; path = SDL3/SDL_sensor.h; sourceTree = ""; }; + F3F7D8C32933074B00816151 /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_keyboard.h; path = SDL3/SDL_keyboard.h; sourceTree = ""; }; + F3F7D8C42933074B00816151 /* SDL_locale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_locale.h; path = SDL3/SDL_locale.h; sourceTree = ""; }; + F3F7D8C52933074B00816151 /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_video.h; path = SDL3/SDL_video.h; sourceTree = ""; }; + F3F7D8C62933074B00816151 /* SDL_opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles.h; path = SDL3/SDL_opengles.h; sourceTree = ""; }; + F3F7D8C72933074B00816151 /* SDL_opengles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2.h; path = SDL3/SDL_opengles2.h; sourceTree = ""; }; + F3F7D8C82933074B00816151 /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_rwops.h; path = SDL3/SDL_rwops.h; sourceTree = ""; }; + F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2_gl2platform.h; path = SDL3/SDL_opengles2_gl2platform.h; sourceTree = ""; }; + F3F7D8CA2933074B00816151 /* SDL_hidapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_hidapi.h; path = SDL3/SDL_hidapi.h; sourceTree = ""; }; + F3F7D8CB2933074B00816151 /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_events.h; path = SDL3/SDL_events.h; sourceTree = ""; }; + F3F7D8CC2933074B00816151 /* SDL_keycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_keycode.h; path = SDL3/SDL_keycode.h; sourceTree = ""; }; + F3F7D8CD2933074C00816151 /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_thread.h; path = SDL3/SDL_thread.h; sourceTree = ""; }; + F3F7D8CE2933074C00816151 /* SDL_blendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_blendmode.h; path = SDL3/SDL_blendmode.h; sourceTree = ""; }; + F3F7D8CF2933074C00816151 /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL.h; path = SDL3/SDL.h; sourceTree = ""; }; + F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_gamecontroller.h; path = SDL3/SDL_gamecontroller.h; sourceTree = ""; }; + F3F7D8D12933074C00816151 /* SDL_guid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_guid.h; path = SDL3/SDL_guid.h; sourceTree = ""; }; + F3F7D8D22933074C00816151 /* SDL_metal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_metal.h; path = SDL3/SDL_metal.h; sourceTree = ""; }; + F3F7D8D32933074C00816151 /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_joystick.h; path = SDL3/SDL_joystick.h; sourceTree = ""; }; + F3F7D8D42933074C00816151 /* SDL_vulkan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_vulkan.h; path = SDL3/SDL_vulkan.h; sourceTree = ""; }; + F3F7D8D52933074C00816151 /* SDL_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_misc.h; path = SDL3/SDL_misc.h; sourceTree = ""; }; + F3F7D8D62933074C00816151 /* SDL_filesystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_filesystem.h; path = SDL3/SDL_filesystem.h; sourceTree = ""; }; + F3F7D8D72933074C00816151 /* SDL_clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_clipboard.h; path = SDL3/SDL_clipboard.h; sourceTree = ""; }; + F3F7D8D82933074C00816151 /* SDL_bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_bits.h; path = SDL3/SDL_bits.h; sourceTree = ""; }; + F3F7D8D92933074C00816151 /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_loadso.h; path = SDL3/SDL_loadso.h; sourceTree = ""; }; + F3F7D8DA2933074D00816151 /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_mouse.h; path = SDL3/SDL_mouse.h; sourceTree = ""; }; + F3F7D8DB2933074D00816151 /* SDL_power.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_power.h; path = SDL3/SDL_power.h; sourceTree = ""; }; + F3F7D8DC2933074D00816151 /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_name.h; path = SDL3/SDL_name.h; sourceTree = ""; }; + F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_cpuinfo.h; path = SDL3/SDL_cpuinfo.h; sourceTree = ""; }; + F3F7D8DE2933074D00816151 /* SDL_render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_render.h; path = SDL3/SDL_render.h; sourceTree = ""; }; + F3F7D8DF2933074D00816151 /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_quit.h; path = SDL3/SDL_quit.h; sourceTree = ""; }; + F3F7D8E02933074D00816151 /* SDL_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_assert.h; path = SDL3/SDL_assert.h; sourceTree = ""; }; + F3F7D8E12933074D00816151 /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengl.h; path = SDL3/SDL_opengl.h; sourceTree = ""; }; + F3F7D8E22933074D00816151 /* SDL_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_rect.h; path = SDL3/SDL_rect.h; sourceTree = ""; }; + F3F7D8E32933074D00816151 /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_copying.h; path = SDL3/SDL_copying.h; sourceTree = ""; }; + F3F7D8E42933074D00816151 /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_version.h; path = SDL3/SDL_version.h; sourceTree = ""; }; + F3F7D8E52933074D00816151 /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = close_code.h; path = SDL3/close_code.h; sourceTree = ""; }; + F3F7D8E62933074E00816151 /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_mutex.h; path = SDL3/SDL_mutex.h; sourceTree = ""; }; + F3F7D8E72933074E00816151 /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = begin_code.h; path = SDL3/begin_code.h; sourceTree = ""; }; + F3F7D8E82933074E00816151 /* SDL_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_system.h; path = SDL3/SDL_system.h; sourceTree = ""; }; F59C710300D5CB5801000001 /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; F59C710600D5CB5801000001 /* SDL.info */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SDL.info; sourceTree = ""; }; F5A2EF3900C6A39A01000001 /* BUGS.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = BUGS.txt; path = ../../BUGS.txt; sourceTree = SOURCE_ROOT; }; - FA24348A21D41FFB00B8918A /* SDL_metal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_metal.h; sourceTree = ""; }; FA73671C19A540EF004122E4 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; }; /* End PBXFileReference section */ @@ -4293,71 +4170,70 @@ 0153844A006D81B07F000001 /* Public Headers */ = { isa = PBXGroup; children = ( - AA7557C71595D4D800BBD41B /* begin_code.h */, - AA7557C81595D4D800BBD41B /* close_code.h */, - AA7557C91595D4D800BBD41B /* SDL_assert.h */, - AA7557CA1595D4D800BBD41B /* SDL_atomic.h */, - AA7557CB1595D4D800BBD41B /* SDL_audio.h */, - AADA5B8616CCAB3000107CF7 /* SDL_bits.h */, - AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */, - AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */, - AA7557D01595D4D800BBD41B /* SDL_copying.h */, - AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */, - 5C2EF7001FC9EF0F003F5197 /* SDL_egl.h */, - AA7557D21595D4D800BBD41B /* SDL_endian.h */, - AA7557D31595D4D800BBD41B /* SDL_error.h */, - AA7557D41595D4D800BBD41B /* SDL_events.h */, - 567E2F2017C44C35005F1892 /* SDL_filesystem.h */, - A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */, - AA7557D51595D4D800BBD41B /* SDL_gesture.h */, - F3820726284F3643004DD584 /* SDL_guid.h */, - AA7557D61595D4D800BBD41B /* SDL_haptic.h */, - F38233842738EB8600F7F527 /* SDL_hidapi.h */, - AA7557D71595D4D800BBD41B /* SDL_hints.h */, - AA7557D91595D4D800BBD41B /* SDL_joystick.h */, - AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */, - AA7557DB1595D4D800BBD41B /* SDL_keycode.h */, - AA7557DC1595D4D800BBD41B /* SDL_loadso.h */, - 566E26792462701100718109 /* SDL_locale.h */, - AA7557DD1595D4D800BBD41B /* SDL_log.h */, - AA7557DE1595D4D800BBD41B /* SDL_main.h */, - AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */, - FA24348A21D41FFB00B8918A /* SDL_metal.h */, - 5616CA4F252BB2BE005D5928 /* SDL_misc.h */, - AA7557DF1595D4D800BBD41B /* SDL_mouse.h */, - AA7557E01595D4D800BBD41B /* SDL_mutex.h */, - AA7557E11595D4D800BBD41B /* SDL_name.h */, - AAC070F4195606770073DCDF /* SDL_opengl_glext.h */, - AA7557E21595D4D800BBD41B /* SDL_opengl.h */, - AA7557E31595D4D800BBD41B /* SDL_opengles.h */, - AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */, - AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */, - AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */, - AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */, - AA7557E41595D4D800BBD41B /* SDL_opengles2.h */, - AA7557E51595D4D800BBD41B /* SDL_pixels.h */, - AA7557E61595D4D800BBD41B /* SDL_platform.h */, - AA7557E71595D4D800BBD41B /* SDL_power.h */, - AA7557E81595D4D800BBD41B /* SDL_quit.h */, - AA7557E91595D4D800BBD41B /* SDL_rect.h */, - AA7557EA1595D4D800BBD41B /* SDL_render.h */, - AA7557EB1595D4D800BBD41B /* SDL_revision.h */, - AA7557EC1595D4D800BBD41B /* SDL_rwops.h */, - AA7557ED1595D4D800BBD41B /* SDL_scancode.h */, - F3950CD7212BC88D00F51292 /* SDL_sensor.h */, - AA7557EE1595D4D800BBD41B /* SDL_shape.h */, - AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */, - AA7557F01595D4D800BBD41B /* SDL_surface.h */, - AA7557F11595D4D800BBD41B /* SDL_system.h */, - AA7557F21595D4D800BBD41B /* SDL_syswm.h */, - AA7557F31595D4D800BBD41B /* SDL_thread.h */, - AA7557F41595D4D800BBD41B /* SDL_timer.h */, - AA7557F51595D4D800BBD41B /* SDL_touch.h */, - AA7557F61595D4D800BBD41B /* SDL_types.h */, - AA7557F71595D4D800BBD41B /* SDL_version.h */, - AA7557F81595D4D800BBD41B /* SDL_video.h */, - 4D4820431F0F10B400EDC31C /* SDL_vulkan.h */, - AA7557F91595D4D800BBD41B /* SDL.h */, + F3F7D8E72933074E00816151 /* begin_code.h */, + F3F7D8E52933074D00816151 /* close_code.h */, + F3F7D8E02933074D00816151 /* SDL_assert.h */, + F3F7D8B92933074A00816151 /* SDL_atomic.h */, + F3F7D8AA2933074900816151 /* SDL_audio.h */, + F3F7D8D82933074C00816151 /* SDL_bits.h */, + F3F7D8CE2933074C00816151 /* SDL_blendmode.h */, + F3F7D8D72933074C00816151 /* SDL_clipboard.h */, + F3F7D8E32933074D00816151 /* SDL_copying.h */, + F3F7D8DD2933074D00816151 /* SDL_cpuinfo.h */, + F3F7D8B82933074A00816151 /* SDL_egl.h */, + F3F7D8BE2933074A00816151 /* SDL_endian.h */, + F3F7D8BC2933074A00816151 /* SDL_error.h */, + F3F7D8CB2933074B00816151 /* SDL_events.h */, + F3F7D8D62933074C00816151 /* SDL_filesystem.h */, + F3F7D8D02933074C00816151 /* SDL_gamecontroller.h */, + F3F7D8A92933074900816151 /* SDL_gesture.h */, + F3F7D8D12933074C00816151 /* SDL_guid.h */, + F3F7D8AD2933074900816151 /* SDL_haptic.h */, + F3F7D8CA2933074B00816151 /* SDL_hidapi.h */, + F3F7D8B32933074900816151 /* SDL_hints.h */, + F3F7D8D32933074C00816151 /* SDL_joystick.h */, + F3F7D8C32933074B00816151 /* SDL_keyboard.h */, + F3F7D8CC2933074B00816151 /* SDL_keycode.h */, + F3F7D8D92933074C00816151 /* SDL_loadso.h */, + F3F7D8C42933074B00816151 /* SDL_locale.h */, + F3F7D8B72933074A00816151 /* SDL_log.h */, + F3F7D8B02933074900816151 /* SDL_main.h */, + F3F7D8B62933074A00816151 /* SDL_messagebox.h */, + F3F7D8D22933074C00816151 /* SDL_metal.h */, + F3F7D8D52933074C00816151 /* SDL_misc.h */, + F3F7D8DA2933074D00816151 /* SDL_mouse.h */, + F3F7D8E62933074E00816151 /* SDL_mutex.h */, + F3F7D8DC2933074D00816151 /* SDL_name.h */, + F3F7D8C02933074A00816151 /* SDL_opengl_glext.h */, + F3F7D8E12933074D00816151 /* SDL_opengl.h */, + F3F7D8C62933074B00816151 /* SDL_opengles.h */, + F3F7D8AE2933074900816151 /* SDL_opengles2_gl2.h */, + F3F7D8BD2933074A00816151 /* SDL_opengles2_gl2ext.h */, + F3F7D8C92933074B00816151 /* SDL_opengles2_gl2platform.h */, + F3F7D8B12933074900816151 /* SDL_opengles2_khrplatform.h */, + F3F7D8C72933074B00816151 /* SDL_opengles2.h */, + F3F7D8B52933074A00816151 /* SDL_pixels.h */, + F3F7D8AB2933074900816151 /* SDL_platform.h */, + F3F7D8DB2933074D00816151 /* SDL_power.h */, + F3F7D8DF2933074D00816151 /* SDL_quit.h */, + F3F7D8E22933074D00816151 /* SDL_rect.h */, + F3F7D8DE2933074D00816151 /* SDL_render.h */, + F3F7D8B42933074900816151 /* SDL_revision.h */, + F3F7D8C82933074B00816151 /* SDL_rwops.h */, + F3F7D8C12933074B00816151 /* SDL_scancode.h */, + F3F7D8C22933074B00816151 /* SDL_sensor.h */, + F3F7D8BA2933074A00816151 /* SDL_shape.h */, + F3F7D8AC2933074900816151 /* SDL_stdinc.h */, + F3F7D8BB2933074A00816151 /* SDL_surface.h */, + F3F7D8E82933074E00816151 /* SDL_system.h */, + F3F7D8BF2933074A00816151 /* SDL_syswm.h */, + F3F7D8CD2933074C00816151 /* SDL_thread.h */, + F3F7D8B22933074900816151 /* SDL_timer.h */, + F3F7D8AF2933074900816151 /* SDL_touch.h */, + F3F7D8E42933074D00816151 /* SDL_version.h */, + F3F7D8C52933074B00816151 /* SDL_video.h */, + F3F7D8D42933074C00816151 /* SDL_vulkan.h */, + F3F7D8CF2933074C00816151 /* SDL.h */, ); name = "Public Headers"; path = ../../include; @@ -5367,50 +5243,32 @@ buildActionMask = 2147483647; files = ( A75FCCFD23E25AB700529352 /* SDL_shaders_metal_tvos.h in Headers */, - A75FCCFE23E25AB700529352 /* SDL_filesystem.h in Headers */, - A75FCD0023E25AB700529352 /* begin_code.h in Headers */, A75FCD0123E25AB700529352 /* SDL_uikitopengles.h in Headers */, - A75FCD0223E25AB700529352 /* close_code.h in Headers */, - A75FCD0323E25AB700529352 /* SDL.h in Headers */, A75FCD0423E25AB700529352 /* SDL_uikitmetalview.h in Headers */, - A75FCD0523E25AB700529352 /* SDL_assert.h in Headers */, A75FCD0623E25AB700529352 /* SDL_shape_internals.h in Headers */, A75FCD0723E25AB700529352 /* SDL_glfuncs.h in Headers */, - A75FCD0823E25AB700529352 /* SDL_atomic.h in Headers */, F386F6F72884663E001840AA /* SDL_utils_c.h in Headers */, A75FCD0923E25AB700529352 /* SDL_rect_c.h in Headers */, A75FCD0B23E25AB700529352 /* SDL_shaders_metal_macos.h in Headers */, - F382072E284F3643004DD584 /* SDL_guid.h in Headers */, A75FCD0C23E25AB700529352 /* SDL_shaders_metal_ios.h in Headers */, A75FCD0D23E25AB700529352 /* SDL_offscreenwindow.h in Headers */, - A75FCD0E23E25AB700529352 /* SDL_audio.h in Headers */, A75FCD0F23E25AB700529352 /* SDL_coremotionsensor.h in Headers */, A75FCD1023E25AB700529352 /* SDL_uikitview.h in Headers */, - A75FCD1123E25AB700529352 /* SDL_bits.h in Headers */, A75FCD1223E25AB700529352 /* SDL_uikitappdelegate.h in Headers */, A75FCD1323E25AB700529352 /* keyinfotable.h in Headers */, - A75FCD1423E25AB700529352 /* SDL_blendmode.h in Headers */, A75FCD1523E25AB700529352 /* SDL_dropevents_c.h in Headers */, A75FCD1623E25AB700529352 /* SDL_haptic_c.h in Headers */, - A75FCD1723E25AB700529352 /* SDL_clipboard.h in Headers */, A75FCD1823E25AB700529352 /* SDL_dataqueue.h in Headers */, A75FCD1923E25AB700529352 /* SDL_error_c.h in Headers */, A75FCD1C23E25AB700529352 /* SDL_d3dmath.h in Headers */, A75FCD1F23E25AB700529352 /* SDL_egl_c.h in Headers */, - A75FCD2023E25AB700529352 /* SDL_copying.h in Headers */, A75FCD2123E25AB700529352 /* yuv_rgb.h in Headers */, A75FCD2223E25AB700529352 /* SDL_dummyaudio.h in Headers */, - F382338C2738EB8600F7F527 /* SDL_hidapi.h in Headers */, A75FCD2323E25AB700529352 /* SDL_uikitmessagebox.h in Headers */, A75FCD2523E25AB700529352 /* SDL_thread_c.h in Headers */, A75FCD2623E25AB700529352 /* SDL_cocoamessagebox.h in Headers */, F31A92D028D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, - A75FCD2823E25AB700529352 /* SDL_cpuinfo.h in Headers */, - A75FCD2923E25AB700529352 /* SDL_endian.h in Headers */, - A75FCD2A23E25AB700529352 /* SDL_error.h in Headers */, - A75FCD2B23E25AB700529352 /* SDL_events.h in Headers */, A75FCD2C23E25AB700529352 /* SDL_blendfillrect.h in Headers */, - A75FCD2D23E25AB700529352 /* SDL_gamecontroller.h in Headers */, A75FCD2E23E25AB700529352 /* SDL_hidapijoystick_c.h in Headers */, A75FCD3023E25AB700529352 /* SDL_pixels_c.h in Headers */, A75FCD3223E25AB700529352 /* SDL_joystick_c.h in Headers */, @@ -5418,32 +5276,25 @@ A75FCD3323E25AB700529352 /* vk_sdk_platform.h in Headers */, A75FCD3423E25AB700529352 /* blank_cursor.h in Headers */, A75FDB5F23E39E6100529352 /* hidapi.h in Headers */, - A75FCD3523E25AB700529352 /* SDL_gesture.h in Headers */, A75FDBCC23EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A75FCD3623E25AB700529352 /* SDL_sysaudio.h in Headers */, - A75FCD3723E25AB700529352 /* SDL_haptic.h in Headers */, A75FCD3923E25AB700529352 /* math_libm.h in Headers */, A75FCD3A23E25AB700529352 /* SDL_uikitvideo.h in Headers */, A75FCD3B23E25AB700529352 /* SDL_cocoamouse.h in Headers */, - A75FCD3C23E25AB700529352 /* SDL_hints.h in Headers */, A75FCD3D23E25AB700529352 /* SDL_blit_slow.h in Headers */, A75FCD3E23E25AB700529352 /* SDL_yuv_sw_c.h in Headers */, A75FCD4023E25AB700529352 /* SDL_windowevents_c.h in Headers */, - A75FCD4123E25AB700529352 /* SDL_joystick.h in Headers */, A75FCD4223E25AB700529352 /* SDL_cocoavideo.h in Headers */, 5605721D2473688E00B46B66 /* SDL_syslocale.h in Headers */, - A75FCD4323E25AB700529352 /* SDL_keyboard.h in Headers */, A75FCD4423E25AB700529352 /* SDL_uikitevents.h in Headers */, A75FCD4523E25AB700529352 /* SDL_gesture_c.h in Headers */, A75FCD4623E25AB700529352 /* SDL_shaders_gl.h in Headers */, A75FCD4723E25AB700529352 /* SDL_systhread_c.h in Headers */, A1BB8B7327F6CF330057CFA8 /* SDL_list.h in Headers */, - A75FCD4823E25AB700529352 /* SDL_keycode.h in Headers */, 5616CA63252BB35F005D5928 /* SDL_sysurl.h in Headers */, A75FCD4A23E25AB700529352 /* SDL_cocoakeyboard.h in Headers */, A75FCD4B23E25AB700529352 /* SDL_uikitvulkan.h in Headers */, A75FCD4E23E25AB700529352 /* vulkan.hpp in Headers */, - A75FCD4F23E25AB700529352 /* SDL_loadso.h in Headers */, A75FCD5023E25AB700529352 /* gl2ext.h in Headers */, A75FCD5123E25AB700529352 /* SDL_clipboardevents_c.h in Headers */, A75FCD5323E25AB700529352 /* SDL_syshaptic_c.h in Headers */, @@ -5453,7 +5304,6 @@ A75FCD5723E25AB700529352 /* SDL_uikitmodes.h in Headers */, A75FCD5823E25AB700529352 /* egl.h in Headers */, A75FCD5923E25AB700529352 /* khrplatform.h in Headers */, - A75FCD5A23E25AB700529352 /* SDL_log.h in Headers */, A75FCD5B23E25AB700529352 /* SDL_uikitviewcontroller.h in Headers */, A75FCD5C23E25AB700529352 /* SDL_dummysensor.h in Headers */, A75FCD5D23E25AB700529352 /* vulkan_android.h in Headers */, @@ -5463,9 +5313,7 @@ A75FCD6123E25AB700529352 /* SDL_dynapi.h in Headers */, A75FCD6223E25AB700529352 /* SDL_assert_c.h in Headers */, A75FCD6323E25AB700529352 /* SDL_diskaudio.h in Headers */, - A75FCD6423E25AB700529352 /* SDL_main.h in Headers */, A75FCD6523E25AB700529352 /* SDL_drawpoint.h in Headers */, - A75FCD6623E25AB700529352 /* SDL_opengles2_khrplatform.h in Headers */, A75FCD6723E25AB700529352 /* SDL_wave.h in Headers */, A75FCD6823E25AB700529352 /* SDL_cocoaopengl.h in Headers */, A75FCD6923E25AB700529352 /* yuv_rgb_sse_func.h in Headers */, @@ -5475,22 +5323,15 @@ A75FCD6D23E25AB700529352 /* SDL_coreaudio.h in Headers */, A75FCD6E23E25AB700529352 /* SDL_draw.h in Headers */, A75FCD6F23E25AB700529352 /* SDL_drawline.h in Headers */, - A75FCD7023E25AB700529352 /* SDL_messagebox.h in Headers */, - A75FCD7123E25AB700529352 /* SDL_mouse.h in Headers */, - A75FCD7223E25AB700529352 /* SDL_mutex.h in Headers */, A75FCD7323E25AB700529352 /* SDL_yuv_c.h in Headers */, A75FCD7423E25AB700529352 /* scancodes_xfree86.h in Headers */, A75FCD7523E25AB700529352 /* SDL_syspower.h in Headers */, - A75FCD7723E25AB700529352 /* SDL_name.h in Headers */, A75FCD7823E25AB700529352 /* eglext.h in Headers */, A75FCD7923E25AB700529352 /* SDL_events_c.h in Headers */, A75FCD7A23E25AB700529352 /* math_private.h in Headers */, A75FCD7C23E25AB700529352 /* vulkan_wayland.h in Headers */, - A75FCD7D23E25AB700529352 /* SDL_opengl.h in Headers */, A75FCD7E23E25AB700529352 /* SDL_cocoashape.h in Headers */, - A75FCD7F23E25AB700529352 /* SDL_opengles.h in Headers */, A75FCD8023E25AB700529352 /* SDL_shaders_gles2.h in Headers */, - A75FCD8123E25AB700529352 /* SDL_opengles2.h in Headers */, A75FCD8223E25AB700529352 /* SDL_glesfuncs.h in Headers */, A75FCD8323E25AB700529352 /* SDL_blendpoint.h in Headers */, A75FCD8423E25AB700529352 /* SDL_offscreenvideo.h in Headers */, @@ -5502,7 +5343,6 @@ A75FCD8B23E25AB700529352 /* SDL_gamecontrollerdb.h in Headers */, A75FCD8C23E25AB700529352 /* SDL_cocoavulkan.h in Headers */, A75FCD8D23E25AB700529352 /* gl2platform.h in Headers */, - A75FCD8E23E25AB700529352 /* SDL_pixels.h in Headers */, A75FCD8F23E25AB700529352 /* vk_layer.h in Headers */, A75FCD9123E25AB700529352 /* vk_platform.h in Headers */, A75FCD9223E25AB700529352 /* SDL_cocoametalview.h in Headers */, @@ -5512,8 +5352,6 @@ A75FCD9623E25AB700529352 /* SDL_sensor_c.h in Headers */, A75FCD9723E25AB700529352 /* SDL_sysrender.h in Headers */, A75FCD9823E25AB700529352 /* SDL_rotate.h in Headers */, - A75FCD9923E25AB700529352 /* SDL_platform.h in Headers */, - A75FCD9A23E25AB700529352 /* SDL_power.h in Headers */, A75FCD9D23E25AB700529352 /* scancodes_darwin.h in Headers */, A75FCD9E23E25AB700529352 /* controller_type.h in Headers */, A75FCDA023E25AB700529352 /* SDL_uikitclipboard.h in Headers */, @@ -5521,20 +5359,14 @@ A75FCDA223E25AB700529352 /* SDL_uikitwindow.h in Headers */, A75FCDA323E25AB700529352 /* vulkan_vi.h in Headers */, A75FCDA423E25AB700529352 /* vulkan_mir.h in Headers */, - A75FCDA523E25AB700529352 /* SDL_quit.h in Headers */, A75FCDA623E25AB700529352 /* default_cursor.h in Headers */, A75FCDA723E25AB700529352 /* SDL_render_sw_c.h in Headers */, - A75FCDA823E25AB700529352 /* SDL_rect.h in Headers */, - A75FCDA923E25AB700529352 /* SDL_render.h in Headers */, A75FCDAA23E25AB700529352 /* SDL_nullvideo.h in Headers */, A75FCDAB23E25AB700529352 /* SDL_blit_copy.h in Headers */, 75E0916A241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, A75FCDAC23E25AB700529352 /* SDL_RLEaccel_c.h in Headers */, A75FCDAD23E25AB700529352 /* eglplatform.h in Headers */, - A75FCDAF23E25AB700529352 /* SDL_revision.h in Headers */, A75FCDB023E25AB700529352 /* SDL_systhread.h in Headers */, - A75FCDB123E25AB700529352 /* SDL_rwops.h in Headers */, - A75FCDB223E25AB700529352 /* SDL_scancode.h in Headers */, A75FCDB323E25AB700529352 /* SDL_cocoaclipboard.h in Headers */, A75FCDB423E25AB700529352 /* SDL_cocoamodes.h in Headers */, A75FCDB523E25AB700529352 /* SDL_uikitopenglview.h in Headers */, @@ -5551,39 +5383,23 @@ A75FCDC123E25AB700529352 /* vulkan_xcb.h in Headers */, A75FCDC223E25AB700529352 /* vulkan_ios.h in Headers */, A75FCDC323E25AB700529352 /* SDL_internal.h in Headers */, - A75FCDC423E25AB700529352 /* SDL_shape.h in Headers */, - A75FCDC523E25AB700529352 /* SDL_stdinc.h in Headers */, - A75FCDC623E25AB700529352 /* SDL_surface.h in Headers */, A75FCDC723E25AB700529352 /* vulkan.h in Headers */, A75FCDC823E25AB700529352 /* SDL_keyboard_c.h in Headers */, - A75FCDC923E25AB700529352 /* SDL_system.h in Headers */, - A75FCDCA23E25AB700529352 /* SDL_syswm.h in Headers */, - A75FCDCB23E25AB700529352 /* SDL_opengl_glext.h in Headers */, A75FCDCC23E25AB700529352 /* SDL_mouse_c.h in Headers */, F395C1C12569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, A75FCDCD23E25AB700529352 /* SDL_blit_auto.h in Headers */, A75FCDCE23E25AB700529352 /* SDL_blendline.h in Headers */, A75FCDCF23E25AB700529352 /* SDL_syshaptic.h in Headers */, A75FCDD023E25AB700529352 /* SDL_vulkan_internal.h in Headers */, - A75FCDD123E25AB700529352 /* SDL_thread.h in Headers */, A75FCDD223E25AB700529352 /* SDL_cocoaevents.h in Headers */, A75FCDD323E25AB700529352 /* vk_icd.h in Headers */, A75FCDD423E25AB700529352 /* SDL_nullframebuffer_c.h in Headers */, - A75FCDD523E25AB700529352 /* SDL_timer.h in Headers */, A75FCDD623E25AB700529352 /* SDL_dynapi_procs.h in Headers */, A75FCDD723E25AB700529352 /* vulkan_fuchsia.h in Headers */, - A75FCDD823E25AB700529352 /* SDL_touch.h in Headers */, - A75FCDD923E25AB700529352 /* SDL_types.h in Headers */, A75FCDDA23E25AB700529352 /* usb_ids.h in Headers */, A75FCDDB23E25AB700529352 /* SDL_gles2funcs.h in Headers */, - A75FCDDD23E25AB700529352 /* SDL_version.h in Headers */, - A75FCDDE23E25AB700529352 /* SDL_video.h in Headers */, - A75FCDDF23E25AB700529352 /* SDL_opengles2_gl2.h in Headers */, - A75FCDE023E25AB700529352 /* SDL_sensor.h in Headers */, A75FCDE123E25AB700529352 /* SDL_sysvideo.h in Headers */, F386F6EE2884663E001840AA /* SDL_log_c.h in Headers */, - A75FCDE223E25AB700529352 /* SDL_opengles2_gl2platform.h in Headers */, - A75FCDE323E25AB700529352 /* SDL_opengles2_gl2ext.h in Headers */, A75FCDE523E25AB700529352 /* SDL_dynapi_overrides.h in Headers */, A75FCDE623E25AB700529352 /* SDL_cocoawindow.h in Headers */, ); @@ -5594,50 +5410,32 @@ buildActionMask = 2147483647; files = ( A75FCEB623E25AC700529352 /* SDL_shaders_metal_tvos.h in Headers */, - A75FCEB723E25AC700529352 /* SDL_filesystem.h in Headers */, - A75FCEB923E25AC700529352 /* begin_code.h in Headers */, A75FCEBA23E25AC700529352 /* SDL_uikitopengles.h in Headers */, - A75FCEBB23E25AC700529352 /* close_code.h in Headers */, - A75FCEBC23E25AC700529352 /* SDL.h in Headers */, A75FCEBD23E25AC700529352 /* SDL_uikitmetalview.h in Headers */, - A75FCEBE23E25AC700529352 /* SDL_assert.h in Headers */, A75FCEBF23E25AC700529352 /* SDL_shape_internals.h in Headers */, A75FCEC023E25AC700529352 /* SDL_glfuncs.h in Headers */, - A75FCEC123E25AC700529352 /* SDL_atomic.h in Headers */, F386F6F82884663E001840AA /* SDL_utils_c.h in Headers */, A75FCEC223E25AC700529352 /* SDL_rect_c.h in Headers */, A75FCEC423E25AC700529352 /* SDL_shaders_metal_macos.h in Headers */, A75FCEC523E25AC700529352 /* SDL_shaders_metal_ios.h in Headers */, A75FCEC623E25AC700529352 /* SDL_offscreenwindow.h in Headers */, - A75FCEC723E25AC700529352 /* SDL_audio.h in Headers */, - F382072F284F3643004DD584 /* SDL_guid.h in Headers */, A75FCEC823E25AC700529352 /* SDL_coremotionsensor.h in Headers */, A75FCEC923E25AC700529352 /* SDL_uikitview.h in Headers */, - A75FCECA23E25AC700529352 /* SDL_bits.h in Headers */, A75FCECB23E25AC700529352 /* SDL_uikitappdelegate.h in Headers */, A75FCECC23E25AC700529352 /* keyinfotable.h in Headers */, - A75FCECD23E25AC700529352 /* SDL_blendmode.h in Headers */, A75FCECE23E25AC700529352 /* SDL_dropevents_c.h in Headers */, A75FCECF23E25AC700529352 /* SDL_haptic_c.h in Headers */, - A75FCED023E25AC700529352 /* SDL_clipboard.h in Headers */, A75FCED123E25AC700529352 /* SDL_dataqueue.h in Headers */, A75FCED223E25AC700529352 /* SDL_error_c.h in Headers */, A75FCED523E25AC700529352 /* SDL_d3dmath.h in Headers */, A75FCED823E25AC700529352 /* SDL_egl_c.h in Headers */, - A75FCED923E25AC700529352 /* SDL_copying.h in Headers */, A75FCEDA23E25AC700529352 /* yuv_rgb.h in Headers */, A75FCEDB23E25AC700529352 /* SDL_dummyaudio.h in Headers */, - F382338D2738EB8600F7F527 /* SDL_hidapi.h in Headers */, A75FCEDC23E25AC700529352 /* SDL_uikitmessagebox.h in Headers */, A75FCEDE23E25AC700529352 /* SDL_thread_c.h in Headers */, A75FCEDF23E25AC700529352 /* SDL_cocoamessagebox.h in Headers */, F31A92D128D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, - A75FCEE123E25AC700529352 /* SDL_cpuinfo.h in Headers */, - A75FCEE223E25AC700529352 /* SDL_endian.h in Headers */, - A75FCEE323E25AC700529352 /* SDL_error.h in Headers */, - A75FCEE423E25AC700529352 /* SDL_events.h in Headers */, A75FCEE523E25AC700529352 /* SDL_blendfillrect.h in Headers */, - A75FCEE623E25AC700529352 /* SDL_gamecontroller.h in Headers */, A75FCEE723E25AC700529352 /* SDL_hidapijoystick_c.h in Headers */, A75FCEE923E25AC700529352 /* SDL_pixels_c.h in Headers */, A75FCEEB23E25AC700529352 /* SDL_joystick_c.h in Headers */, @@ -5645,32 +5443,25 @@ A75FCEEC23E25AC700529352 /* vk_sdk_platform.h in Headers */, A75FCEED23E25AC700529352 /* blank_cursor.h in Headers */, A75FDB6023E39E6100529352 /* hidapi.h in Headers */, - A75FCEEE23E25AC700529352 /* SDL_gesture.h in Headers */, A75FDBCD23EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A75FCEEF23E25AC700529352 /* SDL_sysaudio.h in Headers */, - A75FCEF023E25AC700529352 /* SDL_haptic.h in Headers */, A75FCEF223E25AC700529352 /* math_libm.h in Headers */, A75FCEF323E25AC700529352 /* SDL_uikitvideo.h in Headers */, A75FCEF423E25AC700529352 /* SDL_cocoamouse.h in Headers */, - A75FCEF523E25AC700529352 /* SDL_hints.h in Headers */, A75FCEF623E25AC700529352 /* SDL_blit_slow.h in Headers */, A75FCEF723E25AC700529352 /* SDL_yuv_sw_c.h in Headers */, A75FCEF923E25AC700529352 /* SDL_windowevents_c.h in Headers */, - A75FCEFA23E25AC700529352 /* SDL_joystick.h in Headers */, A75FCEFB23E25AC700529352 /* SDL_cocoavideo.h in Headers */, 5605721E2473688F00B46B66 /* SDL_syslocale.h in Headers */, - A75FCEFC23E25AC700529352 /* SDL_keyboard.h in Headers */, A75FCEFD23E25AC700529352 /* SDL_uikitevents.h in Headers */, A75FCEFE23E25AC700529352 /* SDL_gesture_c.h in Headers */, A75FCEFF23E25AC700529352 /* SDL_shaders_gl.h in Headers */, A75FCF0023E25AC700529352 /* SDL_systhread_c.h in Headers */, A1BB8B7427F6CF330057CFA8 /* SDL_list.h in Headers */, - A75FCF0123E25AC700529352 /* SDL_keycode.h in Headers */, 5616CA66252BB361005D5928 /* SDL_sysurl.h in Headers */, A75FCF0323E25AC700529352 /* SDL_cocoakeyboard.h in Headers */, A75FCF0423E25AC700529352 /* SDL_uikitvulkan.h in Headers */, A75FCF0723E25AC700529352 /* vulkan.hpp in Headers */, - A75FCF0823E25AC700529352 /* SDL_loadso.h in Headers */, A75FCF0923E25AC700529352 /* gl2ext.h in Headers */, A75FCF0A23E25AC700529352 /* SDL_clipboardevents_c.h in Headers */, A75FCF0C23E25AC700529352 /* SDL_syshaptic_c.h in Headers */, @@ -5680,7 +5471,6 @@ A75FCF1023E25AC700529352 /* SDL_uikitmodes.h in Headers */, A75FCF1123E25AC700529352 /* egl.h in Headers */, A75FCF1223E25AC700529352 /* khrplatform.h in Headers */, - A75FCF1323E25AC700529352 /* SDL_log.h in Headers */, A75FCF1423E25AC700529352 /* SDL_uikitviewcontroller.h in Headers */, A75FCF1523E25AC700529352 /* SDL_dummysensor.h in Headers */, A75FCF1623E25AC700529352 /* vulkan_android.h in Headers */, @@ -5690,9 +5480,7 @@ A75FCF1A23E25AC700529352 /* SDL_dynapi.h in Headers */, A75FCF1B23E25AC700529352 /* SDL_assert_c.h in Headers */, A75FCF1C23E25AC700529352 /* SDL_diskaudio.h in Headers */, - A75FCF1D23E25AC700529352 /* SDL_main.h in Headers */, A75FCF1E23E25AC700529352 /* SDL_drawpoint.h in Headers */, - A75FCF1F23E25AC700529352 /* SDL_opengles2_khrplatform.h in Headers */, A75FCF2023E25AC700529352 /* SDL_wave.h in Headers */, A75FCF2123E25AC700529352 /* SDL_cocoaopengl.h in Headers */, A75FCF2223E25AC700529352 /* yuv_rgb_sse_func.h in Headers */, @@ -5702,22 +5490,15 @@ A75FCF2623E25AC700529352 /* SDL_coreaudio.h in Headers */, A75FCF2723E25AC700529352 /* SDL_draw.h in Headers */, A75FCF2823E25AC700529352 /* SDL_drawline.h in Headers */, - A75FCF2923E25AC700529352 /* SDL_messagebox.h in Headers */, - A75FCF2A23E25AC700529352 /* SDL_mouse.h in Headers */, - A75FCF2B23E25AC700529352 /* SDL_mutex.h in Headers */, A75FCF2C23E25AC700529352 /* SDL_yuv_c.h in Headers */, A75FCF2D23E25AC700529352 /* scancodes_xfree86.h in Headers */, A75FCF2E23E25AC700529352 /* SDL_syspower.h in Headers */, - A75FCF3023E25AC700529352 /* SDL_name.h in Headers */, A75FCF3123E25AC700529352 /* eglext.h in Headers */, A75FCF3223E25AC700529352 /* SDL_events_c.h in Headers */, A75FCF3323E25AC700529352 /* math_private.h in Headers */, A75FCF3523E25AC700529352 /* vulkan_wayland.h in Headers */, - A75FCF3623E25AC700529352 /* SDL_opengl.h in Headers */, A75FCF3723E25AC700529352 /* SDL_cocoashape.h in Headers */, - A75FCF3823E25AC700529352 /* SDL_opengles.h in Headers */, A75FCF3923E25AC700529352 /* SDL_shaders_gles2.h in Headers */, - A75FCF3A23E25AC700529352 /* SDL_opengles2.h in Headers */, A75FCF3B23E25AC700529352 /* SDL_glesfuncs.h in Headers */, A75FCF3C23E25AC700529352 /* SDL_blendpoint.h in Headers */, A75FCF3D23E25AC700529352 /* SDL_offscreenvideo.h in Headers */, @@ -5729,7 +5510,6 @@ A75FCF4423E25AC700529352 /* SDL_gamecontrollerdb.h in Headers */, A75FCF4523E25AC700529352 /* SDL_cocoavulkan.h in Headers */, A75FCF4623E25AC700529352 /* gl2platform.h in Headers */, - A75FCF4723E25AC700529352 /* SDL_pixels.h in Headers */, A75FCF4823E25AC700529352 /* vk_layer.h in Headers */, A75FCF4A23E25AC700529352 /* vk_platform.h in Headers */, A75FCF4B23E25AC700529352 /* SDL_cocoametalview.h in Headers */, @@ -5739,8 +5519,6 @@ A75FCF4F23E25AC700529352 /* SDL_sensor_c.h in Headers */, A75FCF5023E25AC700529352 /* SDL_sysrender.h in Headers */, A75FCF5123E25AC700529352 /* SDL_rotate.h in Headers */, - A75FCF5223E25AC700529352 /* SDL_platform.h in Headers */, - A75FCF5323E25AC700529352 /* SDL_power.h in Headers */, A75FCF5623E25AC700529352 /* scancodes_darwin.h in Headers */, A75FCF5723E25AC700529352 /* controller_type.h in Headers */, A75FCF5923E25AC700529352 /* SDL_uikitclipboard.h in Headers */, @@ -5748,20 +5526,14 @@ A75FCF5B23E25AC700529352 /* SDL_uikitwindow.h in Headers */, A75FCF5C23E25AC700529352 /* vulkan_vi.h in Headers */, A75FCF5D23E25AC700529352 /* vulkan_mir.h in Headers */, - A75FCF5E23E25AC700529352 /* SDL_quit.h in Headers */, A75FCF5F23E25AC700529352 /* default_cursor.h in Headers */, A75FCF6023E25AC700529352 /* SDL_render_sw_c.h in Headers */, - A75FCF6123E25AC700529352 /* SDL_rect.h in Headers */, - A75FCF6223E25AC700529352 /* SDL_render.h in Headers */, A75FCF6323E25AC700529352 /* SDL_nullvideo.h in Headers */, A75FCF6423E25AC700529352 /* SDL_blit_copy.h in Headers */, 75E0916B241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, A75FCF6523E25AC700529352 /* SDL_RLEaccel_c.h in Headers */, A75FCF6623E25AC700529352 /* eglplatform.h in Headers */, - A75FCF6823E25AC700529352 /* SDL_revision.h in Headers */, A75FCF6923E25AC700529352 /* SDL_systhread.h in Headers */, - A75FCF6A23E25AC700529352 /* SDL_rwops.h in Headers */, - A75FCF6B23E25AC700529352 /* SDL_scancode.h in Headers */, A75FCF6C23E25AC700529352 /* SDL_cocoaclipboard.h in Headers */, A75FCF6D23E25AC700529352 /* SDL_cocoamodes.h in Headers */, A75FCF6E23E25AC700529352 /* SDL_uikitopenglview.h in Headers */, @@ -5778,39 +5550,23 @@ A75FCF7A23E25AC700529352 /* vulkan_xcb.h in Headers */, A75FCF7B23E25AC700529352 /* vulkan_ios.h in Headers */, A75FCF7C23E25AC700529352 /* SDL_internal.h in Headers */, - A75FCF7D23E25AC700529352 /* SDL_shape.h in Headers */, - A75FCF7E23E25AC700529352 /* SDL_stdinc.h in Headers */, - A75FCF7F23E25AC700529352 /* SDL_surface.h in Headers */, A75FCF8023E25AC700529352 /* vulkan.h in Headers */, A75FCF8123E25AC700529352 /* SDL_keyboard_c.h in Headers */, - A75FCF8223E25AC700529352 /* SDL_system.h in Headers */, - A75FCF8323E25AC700529352 /* SDL_syswm.h in Headers */, - A75FCF8423E25AC700529352 /* SDL_opengl_glext.h in Headers */, A75FCF8523E25AC700529352 /* SDL_mouse_c.h in Headers */, F395C1C22569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, A75FCF8623E25AC700529352 /* SDL_blit_auto.h in Headers */, A75FCF8723E25AC700529352 /* SDL_blendline.h in Headers */, A75FCF8823E25AC700529352 /* SDL_syshaptic.h in Headers */, A75FCF8923E25AC700529352 /* SDL_vulkan_internal.h in Headers */, - A75FCF8A23E25AC700529352 /* SDL_thread.h in Headers */, A75FCF8B23E25AC700529352 /* SDL_cocoaevents.h in Headers */, A75FCF8C23E25AC700529352 /* vk_icd.h in Headers */, A75FCF8D23E25AC700529352 /* SDL_nullframebuffer_c.h in Headers */, - A75FCF8E23E25AC700529352 /* SDL_timer.h in Headers */, A75FCF8F23E25AC700529352 /* SDL_dynapi_procs.h in Headers */, A75FCF9023E25AC700529352 /* vulkan_fuchsia.h in Headers */, - A75FCF9123E25AC700529352 /* SDL_touch.h in Headers */, - A75FCF9223E25AC700529352 /* SDL_types.h in Headers */, A75FCF9323E25AC700529352 /* usb_ids.h in Headers */, A75FCF9423E25AC700529352 /* SDL_gles2funcs.h in Headers */, - A75FCF9623E25AC700529352 /* SDL_version.h in Headers */, - A75FCF9723E25AC700529352 /* SDL_video.h in Headers */, - A75FCF9823E25AC700529352 /* SDL_opengles2_gl2.h in Headers */, - A75FCF9923E25AC700529352 /* SDL_sensor.h in Headers */, A75FCF9A23E25AC700529352 /* SDL_sysvideo.h in Headers */, F386F6EF2884663E001840AA /* SDL_log_c.h in Headers */, - A75FCF9B23E25AC700529352 /* SDL_opengles2_gl2platform.h in Headers */, - A75FCF9C23E25AC700529352 /* SDL_opengles2_gl2ext.h in Headers */, A75FCF9E23E25AC700529352 /* SDL_dynapi_overrides.h in Headers */, A75FCF9F23E25AC700529352 /* SDL_cocoawindow.h in Headers */, ); @@ -5960,7 +5716,6 @@ A769B14623E259AE00872273 /* SDL_syspower.h in Headers */, A769B14723E259AE00872273 /* vulkan_macos.h in Headers */, A769B14823E259AE00872273 /* vulkan_xcb.h in Headers */, - F382072C284F3643004DD584 /* SDL_guid.h in Headers */, A769B14923E259AE00872273 /* vulkan_ios.h in Headers */, A769B14A23E259AE00872273 /* SDL_internal.h in Headers */, A769B14E23E259AE00872273 /* vulkan.h in Headers */, @@ -5988,25 +5743,28 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A7D88A1923E2437C00DCD162 /* SDL.h in Headers */, A7D8B39F23E2514200DCD162 /* SDL_RLEaccel_c.h in Headers */, - A7D88A1A23E2437C00DCD162 /* SDL_assert.h in Headers */, + F3F7D9A22933074E00816151 /* SDL_clipboard.h in Headers */, + F3F7D9122933074E00816151 /* SDL_hints.h in Headers */, A7D8B61823E2514300DCD162 /* SDL_assert_c.h in Headers */, - A7D88A1B23E2437C00DCD162 /* SDL_atomic.h in Headers */, - A7D88A1D23E2437C00DCD162 /* SDL_audio.h in Headers */, A7D8B7A123E2514400DCD162 /* SDL_audio_c.h in Headers */, A7D8B7B323E2514400DCD162 /* SDL_audiodev_c.h in Headers */, - A7D88A1E23E2437C00DCD162 /* SDL_bits.h in Headers */, + F3F7D9C62933074E00816151 /* SDL_assert.h in Headers */, + F3F7D95E2933074E00816151 /* SDL_opengles.h in Headers */, A7D8BA0223E2514400DCD162 /* SDL_blendfillrect.h in Headers */, A7D8B9EA23E2514400DCD162 /* SDL_blendline.h in Headers */, - A7D88A1F23E2437C00DCD162 /* SDL_blendmode.h in Headers */, + F3F7D9322933074E00816151 /* SDL_surface.h in Headers */, + F3F7D9B22933074E00816151 /* SDL_power.h in Headers */, A7D8BA0E23E2514400DCD162 /* SDL_blendpoint.h in Headers */, + F3F7D97A2933074E00816151 /* SDL_thread.h in Headers */, + F3F7D98A2933074E00816151 /* SDL_guid.h in Headers */, A7D8B3B723E2514200DCD162 /* SDL_blit.h in Headers */, + F3F7D9262933074E00816151 /* SDL_egl.h in Headers */, + F3F7D9DA2933074E00816151 /* close_code.h in Headers */, A7D8B2BB23E2514200DCD162 /* SDL_blit_auto.h in Headers */, - F3820728284F3643004DD584 /* SDL_guid.h in Headers */, A7D8B39923E2514200DCD162 /* SDL_blit_copy.h in Headers */, + F3F7D9362933074E00816151 /* SDL_error.h in Headers */, A7D8ADED23E2514100DCD162 /* SDL_blit_slow.h in Headers */, - A7D88A2123E2437C00DCD162 /* SDL_clipboard.h in Headers */, A7D8BB7023E2514500DCD162 /* SDL_clipboardevents_c.h in Headers */, A7D8AECB23E2514100DCD162 /* SDL_cocoaclipboard.h in Headers */, A7D8AF1323E2514100DCD162 /* SDL_cocoaevents.h in Headers */, @@ -6014,21 +5772,27 @@ A7D8AF0723E2514100DCD162 /* SDL_cocoamessagebox.h in Headers */, A7D8AEB323E2514100DCD162 /* SDL_cocoametalview.h in Headers */, A7D8AEF523E2514100DCD162 /* SDL_cocoamodes.h in Headers */, + F3F7D9CA2933074E00816151 /* SDL_opengl.h in Headers */, A7D8AF1F23E2514100DCD162 /* SDL_cocoamouse.h in Headers */, A7D8AEDD23E2514100DCD162 /* SDL_cocoaopengl.h in Headers */, + F3F7D90E2933074E00816151 /* SDL_timer.h in Headers */, A7D8AEEF23E2514100DCD162 /* SDL_cocoaopengles.h in Headers */, + F3F7D9522933074E00816151 /* SDL_keyboard.h in Headers */, A7D8AE8323E2514100DCD162 /* SDL_cocoashape.h in Headers */, A7D8AF0123E2514100DCD162 /* SDL_cocoavideo.h in Headers */, + F3F7D9662933074E00816151 /* SDL_rwops.h in Headers */, A7D8AEE923E2514100DCD162 /* SDL_cocoavulkan.h in Headers */, A7D8AEFB23E2514100DCD162 /* SDL_cocoawindow.h in Headers */, - A7D88A2523E2437C00DCD162 /* SDL_copying.h in Headers */, A7D8B8CD23E2514400DCD162 /* SDL_coreaudio.h in Headers */, A7D8A97023E2514000DCD162 /* SDL_coremotionsensor.h in Headers */, - A7D88A2623E2437C00DCD162 /* SDL_cpuinfo.h in Headers */, F31A92C928D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, A7D8B98123E2514400DCD162 /* SDL_d3dmath.h in Headers */, A7D8A94623E2514000DCD162 /* SDL_dataqueue.h in Headers */, A7D8B8A323E2514400DCD162 /* SDL_diskaudio.h in Headers */, + F3F7D94E2933074E00816151 /* SDL_sensor.h in Headers */, + F3F7D8EE2933074E00816151 /* SDL_audio.h in Headers */, + F3F7D9722933074E00816151 /* SDL_events.h in Headers */, + F3F7D96E2933074E00816151 /* SDL_hidapi.h in Headers */, A7D8BB4023E2514500DCD162 /* SDL_displayevents_c.h in Headers */, A7D8BA1A23E2514400DCD162 /* SDL_draw.h in Headers */, A7D8BA0823E2514400DCD162 /* SDL_drawline.h in Headers */, @@ -6037,151 +5801,127 @@ A7D8B79523E2514400DCD162 /* SDL_dummyaudio.h in Headers */, A7D8A96423E2514000DCD162 /* SDL_dummysensor.h in Headers */, A7D8AB0B23E2514100DCD162 /* SDL_dynapi.h in Headers */, + F3F7D93E2933074E00816151 /* SDL_endian.h in Headers */, A7D8AB1123E2514100DCD162 /* SDL_dynapi_overrides.h in Headers */, A7D8AB1D23E2514100DCD162 /* SDL_dynapi_procs.h in Headers */, - A7D88A2023E2437C00DCD162 /* SDL_egl.h in Headers */, + F3F7D8EA2933074E00816151 /* SDL_gesture.h in Headers */, A7D8ABDA23E2514100DCD162 /* SDL_egl_c.h in Headers */, - A7D88A2723E2437C00DCD162 /* SDL_endian.h in Headers */, - A7D88A2823E2437C00DCD162 /* SDL_error.h in Headers */, A7D8A95E23E2514000DCD162 /* SDL_error_c.h in Headers */, - A7D88A2923E2437C00DCD162 /* SDL_events.h in Headers */, + F3F7D92E2933074E00816151 /* SDL_shape.h in Headers */, A7D8BBA623E2514500DCD162 /* SDL_events_c.h in Headers */, - A7D88A2A23E2437C00DCD162 /* SDL_filesystem.h in Headers */, - A7D88A2B23E2437C00DCD162 /* SDL_gamecontroller.h in Headers */, + F3F7D9962933074E00816151 /* SDL_vulkan.h in Headers */, A7D8B4AD23E2514300DCD162 /* SDL_gamecontrollerdb.h in Headers */, - A7D88A2C23E2437C00DCD162 /* SDL_gesture.h in Headers */, A7D8BB3A23E2514500DCD162 /* SDL_gesture_c.h in Headers */, + F3F7D9BA2933074E00816151 /* SDL_cpuinfo.h in Headers */, A7D8BA5623E2514400DCD162 /* SDL_gles2funcs.h in Headers */, A7D8BA4423E2514400DCD162 /* SDL_glesfuncs.h in Headers */, A7D8BA7A23E2514400DCD162 /* SDL_glfuncs.h in Headers */, - A7D88A2D23E2437C00DCD162 /* SDL_haptic.h in Headers */, A7D8AABD23E2514100DCD162 /* SDL_haptic_c.h in Headers */, A75FDBC623EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A7D8B55823E2514300DCD162 /* SDL_hidapijoystick_c.h in Headers */, - A7D88A2E23E2437C00DCD162 /* SDL_hints.h in Headers */, A7D8B94B23E2514400DCD162 /* SDL_hints_c.h in Headers */, A7D8A99A23E2514000DCD162 /* SDL_internal.h in Headers */, F395C1942569C68F00942BFF /* SDL_iokitjoystick_c.h in Headers */, - A7D88A2F23E2437C00DCD162 /* SDL_joystick.h in Headers */, A7D8B58823E2514300DCD162 /* SDL_joystick_c.h in Headers */, - A7D88A3023E2437C00DCD162 /* SDL_keyboard.h in Headers */, A7D8BB8823E2514500DCD162 /* SDL_keyboard_c.h in Headers */, - A7D88A3323E2437C00DCD162 /* SDL_keycode.h in Headers */, - A7D88A3523E2437C00DCD162 /* SDL_loadso.h in Headers */, - F3631C6424884ACF004F28EA /* SDL_locale.h in Headers */, - A7D88A3623E2437C00DCD162 /* SDL_log.h in Headers */, - A7D88A3823E2437C00DCD162 /* SDL_main.h in Headers */, - A7D88A3923E2437C00DCD162 /* SDL_messagebox.h in Headers */, F386F6E82884663E001840AA /* SDL_log_c.h in Headers */, - A7D88A3223E2437C00DCD162 /* SDL_metal.h in Headers */, F395C1BB2569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, - F3928194258603F1003191A7 /* SDL_misc.h in Headers */, - A7D88A3A23E2437C00DCD162 /* SDL_mouse.h in Headers */, A7D8BB1C23E2514500DCD162 /* SDL_mouse_c.h in Headers */, - F38233862738EB8600F7F527 /* SDL_hidapi.h in Headers */, - A7D88A3B23E2437C00DCD162 /* SDL_mutex.h in Headers */, - A7D88A3C23E2437C00DCD162 /* SDL_name.h in Headers */, A7D8ABFE23E2514100DCD162 /* SDL_nullevents_c.h in Headers */, + F3F7D98E2933074E00816151 /* SDL_metal.h in Headers */, A7D8ABE623E2514100DCD162 /* SDL_nullframebuffer_c.h in Headers */, A7D8ABF823E2514100DCD162 /* SDL_nullvideo.h in Headers */, A7D8AB5C23E2514100DCD162 /* SDL_offscreenevents_c.h in Headers */, + F3F7D8FA2933074E00816151 /* SDL_haptic.h in Headers */, A7D8AB8023E2514100DCD162 /* SDL_offscreenframebuffer_c.h in Headers */, A7D8AB6E23E2514100DCD162 /* SDL_offscreenvideo.h in Headers */, + F3F7D9E22933074E00816151 /* begin_code.h in Headers */, + F3F7D9C22933074E00816151 /* SDL_quit.h in Headers */, A7D8AB8623E2514100DCD162 /* SDL_offscreenwindow.h in Headers */, - A7D88A3D23E2437C00DCD162 /* SDL_opengl.h in Headers */, - A7D88A3E23E2437C00DCD162 /* SDL_opengl_glext.h in Headers */, - A7D88A3F23E2437C00DCD162 /* SDL_opengles.h in Headers */, - A7D88A4023E2437C00DCD162 /* SDL_opengles2.h in Headers */, - A7D88A4123E2437C00DCD162 /* SDL_opengles2_gl2.h in Headers */, - A7D88A4223E2437C00DCD162 /* SDL_opengles2_gl2ext.h in Headers */, - A7D88A4323E2437C00DCD162 /* SDL_opengles2_gl2platform.h in Headers */, - A7D88A4423E2437C00DCD162 /* SDL_opengles2_khrplatform.h in Headers */, - A7D88A4523E2437C00DCD162 /* SDL_pixels.h in Headers */, A7D8B2C123E2514200DCD162 /* SDL_pixels_c.h in Headers */, - A7D88A4623E2437C00DCD162 /* SDL_platform.h in Headers */, - A7D88A4723E2437C00DCD162 /* SDL_power.h in Headers */, - A7D88A4823E2437C00DCD162 /* SDL_quit.h in Headers */, - A7D88A4923E2437C00DCD162 /* SDL_rect.h in Headers */, + F3F7D9AA2933074E00816151 /* SDL_loadso.h in Headers */, A7D8AC0423E2514100DCD162 /* SDL_rect_c.h in Headers */, - A7D88A4B23E2437C00DCD162 /* SDL_render.h in Headers */, + F3F7D99E2933074E00816151 /* SDL_filesystem.h in Headers */, A7D8B9FC23E2514400DCD162 /* SDL_render_sw_c.h in Headers */, - A7D88A4C23E2437C00DCD162 /* SDL_revision.h in Headers */, A7D8BA3223E2514400DCD162 /* SDL_rotate.h in Headers */, + F3F7D92A2933074E00816151 /* SDL_atomic.h in Headers */, F3973FA328A59BDD00B84553 /* SDL_vacopy.h in Headers */, - A7D88A4D23E2437C00DCD162 /* SDL_rwops.h in Headers */, A7D8B5C423E2514300DCD162 /* SDL_rwopsbundlesupport.h in Headers */, - A7D88A4E23E2437C00DCD162 /* SDL_scancode.h in Headers */, - A7D88A3123E2437C00DCD162 /* SDL_sensor.h in Headers */, + F3F7D9422933074E00816151 /* SDL_syswm.h in Headers */, A7D8A98E23E2514000DCD162 /* SDL_sensor_c.h in Headers */, F386F6F12884663E001840AA /* SDL_utils_c.h in Headers */, A7D8BA7423E2514400DCD162 /* SDL_shaders_gl.h in Headers */, + F3F7D9A62933074E00816151 /* SDL_bits.h in Headers */, A7D8BA5023E2514400DCD162 /* SDL_shaders_gles2.h in Headers */, + F3F7D93A2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */, + F3F7D9462933074E00816151 /* SDL_opengl_glext.h in Headers */, A1BB8B6D27F6CF330057CFA8 /* SDL_list.h in Headers */, + F3F7D9D62933074E00816151 /* SDL_version.h in Headers */, A7D8B98D23E2514400DCD162 /* SDL_shaders_metal_ios.h in Headers */, A7D8B99C23E2514400DCD162 /* SDL_shaders_metal_macos.h in Headers */, A7D8B9A223E2514400DCD162 /* SDL_shaders_metal_tvos.h in Headers */, - A7D88A5023E2437C00DCD162 /* SDL_shape.h in Headers */, A7D8AC0A23E2514100DCD162 /* SDL_shape_internals.h in Headers */, - A7D88A5123E2437C00DCD162 /* SDL_stdinc.h in Headers */, A7D8B4C523E2514300DCD162 /* SDL_steamcontroller.h in Headers */, - A7D88A5223E2437C00DCD162 /* SDL_surface.h in Headers */, A7D8B85B23E2514400DCD162 /* SDL_sysaudio.h in Headers */, + F3F7D9062933074E00816151 /* SDL_main.h in Headers */, A7D8AAD523E2514100DCD162 /* SDL_syshaptic.h in Headers */, A7D8AAE123E2514100DCD162 /* SDL_syshaptic_c.h in Headers */, A7D8B58223E2514300DCD162 /* SDL_sysjoystick.h in Headers */, + F3F7D9922933074E00816151 /* SDL_joystick.h in Headers */, 560572172473688A00B46B66 /* SDL_syslocale.h in Headers */, A7D8B44123E2514300DCD162 /* SDL_sysmutex_c.h in Headers */, A7D8B5D623E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B61223E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B9D823E2514400DCD162 /* SDL_sysrender.h in Headers */, A7D8A97C23E2514000DCD162 /* SDL_syssensor.h in Headers */, - A7D88A5323E2437C00DCD162 /* SDL_system.h in Headers */, A7D8B3E723E2514300DCD162 /* SDL_systhread.h in Headers */, + F3F7D9BE2933074E00816151 /* SDL_render.h in Headers */, + F3F7D95A2933074E00816151 /* SDL_video.h in Headers */, A7D8B42923E2514300DCD162 /* SDL_systhread_c.h in Headers */, 5616CA51252BB35A005D5928 /* SDL_sysurl.h in Headers */, A7D8AC4023E2514100DCD162 /* SDL_sysvideo.h in Headers */, - A7D88A5423E2437C00DCD162 /* SDL_syswm.h in Headers */, - A7D88A5523E2437C00DCD162 /* SDL_thread.h in Headers */, A7D8B3ED23E2514300DCD162 /* SDL_thread_c.h in Headers */, - A7D88A5623E2437C00DCD162 /* SDL_timer.h in Headers */, A7D8AB3223E2514100DCD162 /* SDL_timer_c.h in Headers */, - A7D88A5723E2437C00DCD162 /* SDL_touch.h in Headers */, A7D8BB6423E2514500DCD162 /* SDL_touch_c.h in Headers */, - A7D88A5823E2437C00DCD162 /* SDL_types.h in Headers */, A7D8ACCA23E2514100DCD162 /* SDL_uikitappdelegate.h in Headers */, A7D8AC7623E2514100DCD162 /* SDL_uikitclipboard.h in Headers */, A7D8ACBE23E2514100DCD162 /* SDL_uikitevents.h in Headers */, A7D8AC9423E2514100DCD162 /* SDL_uikitmessagebox.h in Headers */, + F3F7D9D22933074E00816151 /* SDL_copying.h in Headers */, A7D8AC5E23E2514100DCD162 /* SDL_uikitmetalview.h in Headers */, A7D8AC6A23E2514100DCD162 /* SDL_uikitmodes.h in Headers */, A7D8ACD623E2514100DCD162 /* SDL_uikitopengles.h in Headers */, + F3F7D99A2933074E00816151 /* SDL_misc.h in Headers */, A7D8ACB223E2514100DCD162 /* SDL_uikitopenglview.h in Headers */, A7D8AC7C23E2514100DCD162 /* SDL_uikitvideo.h in Headers */, A7D8AC4623E2514100DCD162 /* SDL_uikitview.h in Headers */, A7D8AC8823E2514100DCD162 /* SDL_uikitviewcontroller.h in Headers */, A7D8ACE223E2514100DCD162 /* SDL_uikitvulkan.h in Headers */, A7D8AC9A23E2514100DCD162 /* SDL_uikitwindow.h in Headers */, - A7D88A5923E2437C00DCD162 /* SDL_version.h in Headers */, - A7D88A5A23E2437C00DCD162 /* SDL_video.h in Headers */, 75E09164241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, - A7D88A5C23E2437C00DCD162 /* SDL_vulkan.h in Headers */, A7D8AD1E23E2514100DCD162 /* SDL_vulkan_internal.h in Headers */, + F3F7D9862933074E00816151 /* SDL_gamecontroller.h in Headers */, + F3F7D91A2933074E00816151 /* SDL_pixels.h in Headers */, A7D8B86D23E2514400DCD162 /* SDL_wave.h in Headers */, A7D8BBAC23E2514500DCD162 /* SDL_windowevents_c.h in Headers */, A7D8B3B123E2514200DCD162 /* SDL_yuv_c.h in Headers */, A7D8B9CC23E2514400DCD162 /* SDL_yuv_sw_c.h in Headers */, - A7D88A1623E2437C00DCD162 /* begin_code.h in Headers */, A7D8BB4623E2514500DCD162 /* blank_cursor.h in Headers */, - A7D88A1823E2437C00DCD162 /* close_code.h in Headers */, A7D8B5B823E2514300DCD162 /* controller_type.h in Headers */, A7D8BB4C23E2514500DCD162 /* default_cursor.h in Headers */, A7D8B23D23E2514200DCD162 /* egl.h in Headers */, + F3F7D94A2933074E00816151 /* SDL_scancode.h in Headers */, A7D8B24323E2514200DCD162 /* eglext.h in Headers */, A7D8B24923E2514200DCD162 /* eglplatform.h in Headers */, A7D8B22B23E2514200DCD162 /* gl2.h in Headers */, A7D8B22523E2514200DCD162 /* gl2ext.h in Headers */, A7D8B23123E2514200DCD162 /* gl2platform.h in Headers */, + F3F7D90A2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */, A75FDB5923E39E6100529352 /* hidapi.h in Headers */, + F3F7D96A2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */, + F3F7D9022933074E00816151 /* SDL_touch.h in Headers */, + F3F7D91E2933074E00816151 /* SDL_messagebox.h in Headers */, + F3F7D8FE2933074E00816151 /* SDL_opengles2_gl2.h in Headers */, A7D8ACA023E2514100DCD162 /* keyinfotable.h in Headers */, A7D8B23723E2514200DCD162 /* khrplatform.h in Headers */, A7D8BB0423E2514500DCD162 /* math_libm.h in Headers */, @@ -6189,23 +5929,37 @@ A7D8BB5223E2514500DCD162 /* scancodes_darwin.h in Headers */, A7D8BB5E23E2514500DCD162 /* scancodes_linux.h in Headers */, A7D8BB2223E2514500DCD162 /* scancodes_windows.h in Headers */, + F3F7D9622933074E00816151 /* SDL_opengles2.h in Headers */, + F3F7D9162933074E00816151 /* SDL_revision.h in Headers */, A7D8BBA023E2514500DCD162 /* scancodes_xfree86.h in Headers */, A7D8B57023E2514300DCD162 /* usb_ids.h in Headers */, A1626A532617008D003F1973 /* SDL_triangle.h in Headers */, + F3F7D9DE2933074E00816151 /* SDL_mutex.h in Headers */, A7D8B25523E2514200DCD162 /* vk_icd.h in Headers */, A7D8B24F23E2514200DCD162 /* vk_layer.h in Headers */, A7D8B26723E2514200DCD162 /* vk_platform.h in Headers */, + F3F7D9AE2933074E00816151 /* SDL_mouse.h in Headers */, + F3F7D9762933074E00816151 /* SDL_keycode.h in Headers */, + F3F7D9822933074E00816151 /* SDL.h in Headers */, A7D8B2AF23E2514200DCD162 /* vk_sdk_platform.h in Headers */, A7D8B26123E2514200DCD162 /* vulkan.h in Headers */, A7D8B26D23E2514200DCD162 /* vulkan.hpp in Headers */, + F3F7D9E62933074E00816151 /* SDL_system.h in Headers */, A7D8B2B523E2514200DCD162 /* vulkan_android.h in Headers */, A7D8B2A923E2514200DCD162 /* vulkan_core.h in Headers */, + F3F7D8F62933074E00816151 /* SDL_stdinc.h in Headers */, + F3F7D97E2933074E00816151 /* SDL_blendmode.h in Headers */, A7D8B27323E2514200DCD162 /* vulkan_fuchsia.h in Headers */, A7D8B2A323E2514200DCD162 /* vulkan_ios.h in Headers */, A7D8B28523E2514200DCD162 /* vulkan_macos.h in Headers */, + F3F7D8F22933074E00816151 /* SDL_platform.h in Headers */, A7D8B29723E2514200DCD162 /* vulkan_mir.h in Headers */, A7D8B25B23E2514200DCD162 /* vulkan_vi.h in Headers */, A7D8B27923E2514200DCD162 /* vulkan_wayland.h in Headers */, + F3F7D9222933074E00816151 /* SDL_log.h in Headers */, + F3F7D9CE2933074E00816151 /* SDL_rect.h in Headers */, + F3F7D9B62933074E00816151 /* SDL_name.h in Headers */, + F3F7D9562933074E00816151 /* SDL_locale.h in Headers */, A7D8B27F23E2514200DCD162 /* vulkan_win32.h in Headers */, A7D8B29123E2514200DCD162 /* vulkan_xcb.h in Headers */, A7D8B29D23E2514200DCD162 /* vulkan_xlib.h in Headers */, @@ -6220,25 +5974,28 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A7D88BCF23E24BED00DCD162 /* SDL.h in Headers */, A7D8B3A023E2514200DCD162 /* SDL_RLEaccel_c.h in Headers */, - A7D88BD023E24BED00DCD162 /* SDL_assert.h in Headers */, + F3F7D9A32933074E00816151 /* SDL_clipboard.h in Headers */, + F3F7D9132933074E00816151 /* SDL_hints.h in Headers */, A7D8B61923E2514300DCD162 /* SDL_assert_c.h in Headers */, - A7D88BD123E24BED00DCD162 /* SDL_atomic.h in Headers */, - A7D88BD423E24BED00DCD162 /* SDL_audio.h in Headers */, A7D8B7A223E2514400DCD162 /* SDL_audio_c.h in Headers */, A7D8B7B423E2514400DCD162 /* SDL_audiodev_c.h in Headers */, - A7D88BD523E24BED00DCD162 /* SDL_bits.h in Headers */, + F3F7D9C72933074E00816151 /* SDL_assert.h in Headers */, + F3F7D95F2933074E00816151 /* SDL_opengles.h in Headers */, A7D8BA0323E2514400DCD162 /* SDL_blendfillrect.h in Headers */, A7D8B9EB23E2514400DCD162 /* SDL_blendline.h in Headers */, - A7D88BD623E24BED00DCD162 /* SDL_blendmode.h in Headers */, + F3F7D9332933074E00816151 /* SDL_surface.h in Headers */, + F3F7D9B32933074E00816151 /* SDL_power.h in Headers */, A7D8BA0F23E2514400DCD162 /* SDL_blendpoint.h in Headers */, + F3F7D97B2933074E00816151 /* SDL_thread.h in Headers */, + F3F7D98B2933074E00816151 /* SDL_guid.h in Headers */, A7D8B3B823E2514200DCD162 /* SDL_blit.h in Headers */, + F3F7D9272933074E00816151 /* SDL_egl.h in Headers */, + F3F7D9DB2933074E00816151 /* close_code.h in Headers */, A7D8B2BC23E2514200DCD162 /* SDL_blit_auto.h in Headers */, A7D8B39A23E2514200DCD162 /* SDL_blit_copy.h in Headers */, - F3820729284F3643004DD584 /* SDL_guid.h in Headers */, + F3F7D9372933074E00816151 /* SDL_error.h in Headers */, A7D8ADEE23E2514100DCD162 /* SDL_blit_slow.h in Headers */, - A7D88BD823E24BED00DCD162 /* SDL_clipboard.h in Headers */, A7D8BB7123E2514500DCD162 /* SDL_clipboardevents_c.h in Headers */, A7D8AECC23E2514100DCD162 /* SDL_cocoaclipboard.h in Headers */, A7D8AF1423E2514100DCD162 /* SDL_cocoaevents.h in Headers */, @@ -6246,21 +6003,27 @@ A7D8AF0823E2514100DCD162 /* SDL_cocoamessagebox.h in Headers */, A7D8AEB423E2514100DCD162 /* SDL_cocoametalview.h in Headers */, A7D8AEF623E2514100DCD162 /* SDL_cocoamodes.h in Headers */, + F3F7D9CB2933074E00816151 /* SDL_opengl.h in Headers */, A7D8AF2023E2514100DCD162 /* SDL_cocoamouse.h in Headers */, A7D8AEDE23E2514100DCD162 /* SDL_cocoaopengl.h in Headers */, + F3F7D90F2933074E00816151 /* SDL_timer.h in Headers */, A7D8AEF023E2514100DCD162 /* SDL_cocoaopengles.h in Headers */, + F3F7D9532933074E00816151 /* SDL_keyboard.h in Headers */, A7D8AE8423E2514100DCD162 /* SDL_cocoashape.h in Headers */, A7D8AF0223E2514100DCD162 /* SDL_cocoavideo.h in Headers */, + F3F7D9672933074E00816151 /* SDL_rwops.h in Headers */, A7D8AEEA23E2514100DCD162 /* SDL_cocoavulkan.h in Headers */, A7D8AEFC23E2514100DCD162 /* SDL_cocoawindow.h in Headers */, - A7D88BDC23E24BED00DCD162 /* SDL_copying.h in Headers */, A7D8B8CE23E2514400DCD162 /* SDL_coreaudio.h in Headers */, A7D8A97123E2514000DCD162 /* SDL_coremotionsensor.h in Headers */, - A7D88BDD23E24BED00DCD162 /* SDL_cpuinfo.h in Headers */, F31A92CA28D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, A7D8B98223E2514400DCD162 /* SDL_d3dmath.h in Headers */, A7D8A94723E2514000DCD162 /* SDL_dataqueue.h in Headers */, A7D8B8A423E2514400DCD162 /* SDL_diskaudio.h in Headers */, + F3F7D94F2933074E00816151 /* SDL_sensor.h in Headers */, + F3F7D8EF2933074E00816151 /* SDL_audio.h in Headers */, + F3F7D9732933074E00816151 /* SDL_events.h in Headers */, + F3F7D96F2933074E00816151 /* SDL_hidapi.h in Headers */, A7D8BB4123E2514500DCD162 /* SDL_displayevents_c.h in Headers */, A7D8BA1B23E2514400DCD162 /* SDL_draw.h in Headers */, A7D8BA0923E2514400DCD162 /* SDL_drawline.h in Headers */, @@ -6269,151 +6032,127 @@ A7D8B79623E2514400DCD162 /* SDL_dummyaudio.h in Headers */, A7D8A96523E2514000DCD162 /* SDL_dummysensor.h in Headers */, A7D8AB0C23E2514100DCD162 /* SDL_dynapi.h in Headers */, + F3F7D93F2933074E00816151 /* SDL_endian.h in Headers */, A7D8AB1223E2514100DCD162 /* SDL_dynapi_overrides.h in Headers */, A7D8AB1E23E2514100DCD162 /* SDL_dynapi_procs.h in Headers */, - A7D88BD723E24BED00DCD162 /* SDL_egl.h in Headers */, + F3F7D8EB2933074E00816151 /* SDL_gesture.h in Headers */, A7D8ABDB23E2514100DCD162 /* SDL_egl_c.h in Headers */, - A7D88BDE23E24BED00DCD162 /* SDL_endian.h in Headers */, - A7D88BDF23E24BED00DCD162 /* SDL_error.h in Headers */, A7D8A95F23E2514000DCD162 /* SDL_error_c.h in Headers */, - A7D88BE023E24BED00DCD162 /* SDL_events.h in Headers */, + F3F7D92F2933074E00816151 /* SDL_shape.h in Headers */, A7D8BBA723E2514500DCD162 /* SDL_events_c.h in Headers */, - A7D88BE123E24BED00DCD162 /* SDL_filesystem.h in Headers */, - A7D88BE223E24BED00DCD162 /* SDL_gamecontroller.h in Headers */, + F3F7D9972933074E00816151 /* SDL_vulkan.h in Headers */, A7D8B4AE23E2514300DCD162 /* SDL_gamecontrollerdb.h in Headers */, - A7D88BE323E24BED00DCD162 /* SDL_gesture.h in Headers */, A7D8BB3B23E2514500DCD162 /* SDL_gesture_c.h in Headers */, + F3F7D9BB2933074E00816151 /* SDL_cpuinfo.h in Headers */, A7D8BA5723E2514400DCD162 /* SDL_gles2funcs.h in Headers */, A7D8BA4523E2514400DCD162 /* SDL_glesfuncs.h in Headers */, A7D8BA7B23E2514400DCD162 /* SDL_glfuncs.h in Headers */, - A7D88BE423E24BED00DCD162 /* SDL_haptic.h in Headers */, A7D8AABE23E2514100DCD162 /* SDL_haptic_c.h in Headers */, A75FDBC723EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A7D8B55923E2514300DCD162 /* SDL_hidapijoystick_c.h in Headers */, - A7D88BE523E24BED00DCD162 /* SDL_hints.h in Headers */, A7D8B94C23E2514400DCD162 /* SDL_hints_c.h in Headers */, A7D8A99B23E2514000DCD162 /* SDL_internal.h in Headers */, F395C1952569C68F00942BFF /* SDL_iokitjoystick_c.h in Headers */, - A7D88BE623E24BED00DCD162 /* SDL_joystick.h in Headers */, A7D8B58923E2514300DCD162 /* SDL_joystick_c.h in Headers */, - A7D88BE723E24BED00DCD162 /* SDL_keyboard.h in Headers */, A7D8BB8923E2514500DCD162 /* SDL_keyboard_c.h in Headers */, - A7D88BEB23E24BED00DCD162 /* SDL_keycode.h in Headers */, - A7D88BED23E24BED00DCD162 /* SDL_loadso.h in Headers */, - F3631C652488534E004F28EA /* SDL_locale.h in Headers */, - A7D88BEF23E24BED00DCD162 /* SDL_log.h in Headers */, - A7D88BF123E24BED00DCD162 /* SDL_main.h in Headers */, - A7D88BF223E24BED00DCD162 /* SDL_messagebox.h in Headers */, F386F6E92884663E001840AA /* SDL_log_c.h in Headers */, - A7D88BEA23E24BED00DCD162 /* SDL_metal.h in Headers */, F395C1BC2569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, - F392819F25860422003191A7 /* SDL_misc.h in Headers */, - A7D88BF323E24BED00DCD162 /* SDL_mouse.h in Headers */, A7D8BB1D23E2514500DCD162 /* SDL_mouse_c.h in Headers */, - F38233872738EB8600F7F527 /* SDL_hidapi.h in Headers */, - A7D88BF423E24BED00DCD162 /* SDL_mutex.h in Headers */, - A7D88BF523E24BED00DCD162 /* SDL_name.h in Headers */, A7D8ABFF23E2514100DCD162 /* SDL_nullevents_c.h in Headers */, + F3F7D98F2933074E00816151 /* SDL_metal.h in Headers */, A7D8ABE723E2514100DCD162 /* SDL_nullframebuffer_c.h in Headers */, A7D8ABF923E2514100DCD162 /* SDL_nullvideo.h in Headers */, A7D8AB5D23E2514100DCD162 /* SDL_offscreenevents_c.h in Headers */, + F3F7D8FB2933074E00816151 /* SDL_haptic.h in Headers */, A7D8AB8123E2514100DCD162 /* SDL_offscreenframebuffer_c.h in Headers */, A7D8AB6F23E2514100DCD162 /* SDL_offscreenvideo.h in Headers */, + F3F7D9E32933074E00816151 /* begin_code.h in Headers */, + F3F7D9C32933074E00816151 /* SDL_quit.h in Headers */, A7D8AB8723E2514100DCD162 /* SDL_offscreenwindow.h in Headers */, - A7D88BF623E24BED00DCD162 /* SDL_opengl.h in Headers */, - A7D88BF723E24BED00DCD162 /* SDL_opengl_glext.h in Headers */, - A7D88BF823E24BED00DCD162 /* SDL_opengles.h in Headers */, - A7D88BF923E24BED00DCD162 /* SDL_opengles2.h in Headers */, - A7D88BFA23E24BED00DCD162 /* SDL_opengles2_gl2.h in Headers */, - A7D88BFB23E24BED00DCD162 /* SDL_opengles2_gl2ext.h in Headers */, - A7D88BFC23E24BED00DCD162 /* SDL_opengles2_gl2platform.h in Headers */, - A7D88BFD23E24BED00DCD162 /* SDL_opengles2_khrplatform.h in Headers */, - A7D88BFE23E24BED00DCD162 /* SDL_pixels.h in Headers */, A7D8B2C223E2514200DCD162 /* SDL_pixels_c.h in Headers */, - A7D88BFF23E24BED00DCD162 /* SDL_platform.h in Headers */, - A7D88C0023E24BED00DCD162 /* SDL_power.h in Headers */, - A7D88C0123E24BED00DCD162 /* SDL_quit.h in Headers */, - A7D88C0223E24BED00DCD162 /* SDL_rect.h in Headers */, + F3F7D9AB2933074E00816151 /* SDL_loadso.h in Headers */, A7D8AC0523E2514100DCD162 /* SDL_rect_c.h in Headers */, - A7D88C0423E24BED00DCD162 /* SDL_render.h in Headers */, + F3F7D99F2933074E00816151 /* SDL_filesystem.h in Headers */, A7D8B9FD23E2514400DCD162 /* SDL_render_sw_c.h in Headers */, - A7D88C0523E24BED00DCD162 /* SDL_revision.h in Headers */, A7D8BA3323E2514400DCD162 /* SDL_rotate.h in Headers */, + F3F7D92B2933074E00816151 /* SDL_atomic.h in Headers */, F3973FA428A59BDD00B84553 /* SDL_vacopy.h in Headers */, - A7D88C0723E24BED00DCD162 /* SDL_rwops.h in Headers */, A7D8B5C523E2514300DCD162 /* SDL_rwopsbundlesupport.h in Headers */, - A7D88C0823E24BED00DCD162 /* SDL_scancode.h in Headers */, - A7D88BE923E24BED00DCD162 /* SDL_sensor.h in Headers */, + F3F7D9432933074E00816151 /* SDL_syswm.h in Headers */, A7D8A98F23E2514000DCD162 /* SDL_sensor_c.h in Headers */, F386F6F22884663E001840AA /* SDL_utils_c.h in Headers */, A7D8BA7523E2514400DCD162 /* SDL_shaders_gl.h in Headers */, + F3F7D9A72933074E00816151 /* SDL_bits.h in Headers */, A7D8BA5123E2514400DCD162 /* SDL_shaders_gles2.h in Headers */, + F3F7D93B2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */, + F3F7D9472933074E00816151 /* SDL_opengl_glext.h in Headers */, A1BB8B6E27F6CF330057CFA8 /* SDL_list.h in Headers */, + F3F7D9D72933074E00816151 /* SDL_version.h in Headers */, A7D8B98E23E2514400DCD162 /* SDL_shaders_metal_ios.h in Headers */, A7D8B99D23E2514400DCD162 /* SDL_shaders_metal_macos.h in Headers */, A7D8B9A323E2514400DCD162 /* SDL_shaders_metal_tvos.h in Headers */, - A7D88C0A23E24BED00DCD162 /* SDL_shape.h in Headers */, A7D8AC0B23E2514100DCD162 /* SDL_shape_internals.h in Headers */, - A7D88C0C23E24BED00DCD162 /* SDL_stdinc.h in Headers */, A7D8B4C623E2514300DCD162 /* SDL_steamcontroller.h in Headers */, - A7D88C0D23E24BED00DCD162 /* SDL_surface.h in Headers */, A7D8B85C23E2514400DCD162 /* SDL_sysaudio.h in Headers */, + F3F7D9072933074E00816151 /* SDL_main.h in Headers */, A7D8AAD623E2514100DCD162 /* SDL_syshaptic.h in Headers */, A7D8AAE223E2514100DCD162 /* SDL_syshaptic_c.h in Headers */, A7D8B58323E2514300DCD162 /* SDL_sysjoystick.h in Headers */, + F3F7D9932933074E00816151 /* SDL_joystick.h in Headers */, 560572182473688B00B46B66 /* SDL_syslocale.h in Headers */, A7D8B44223E2514300DCD162 /* SDL_sysmutex_c.h in Headers */, A7D8B5D723E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B61323E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B9D923E2514400DCD162 /* SDL_sysrender.h in Headers */, A7D8A97D23E2514000DCD162 /* SDL_syssensor.h in Headers */, - A7D88C0E23E24BED00DCD162 /* SDL_system.h in Headers */, A7D8B3E823E2514300DCD162 /* SDL_systhread.h in Headers */, + F3F7D9BF2933074E00816151 /* SDL_render.h in Headers */, + F3F7D95B2933074E00816151 /* SDL_video.h in Headers */, A7D8B42A23E2514300DCD162 /* SDL_systhread_c.h in Headers */, 5616CA54252BB35B005D5928 /* SDL_sysurl.h in Headers */, A7D8AC4123E2514100DCD162 /* SDL_sysvideo.h in Headers */, - A7D88C0F23E24BED00DCD162 /* SDL_syswm.h in Headers */, - A7D88C1123E24BED00DCD162 /* SDL_thread.h in Headers */, A7D8B3EE23E2514300DCD162 /* SDL_thread_c.h in Headers */, - A7D88C1223E24BED00DCD162 /* SDL_timer.h in Headers */, A7D8AB3323E2514100DCD162 /* SDL_timer_c.h in Headers */, - A7D88C1423E24BED00DCD162 /* SDL_touch.h in Headers */, A7D8BB6523E2514500DCD162 /* SDL_touch_c.h in Headers */, - A7D88C1523E24BED00DCD162 /* SDL_types.h in Headers */, A7D8ACCB23E2514100DCD162 /* SDL_uikitappdelegate.h in Headers */, A7D8AC7723E2514100DCD162 /* SDL_uikitclipboard.h in Headers */, A7D8ACBF23E2514100DCD162 /* SDL_uikitevents.h in Headers */, A7D8AC9523E2514100DCD162 /* SDL_uikitmessagebox.h in Headers */, + F3F7D9D32933074E00816151 /* SDL_copying.h in Headers */, A7D8AC5F23E2514100DCD162 /* SDL_uikitmetalview.h in Headers */, A7D8AC6B23E2514100DCD162 /* SDL_uikitmodes.h in Headers */, A7D8ACD723E2514100DCD162 /* SDL_uikitopengles.h in Headers */, + F3F7D99B2933074E00816151 /* SDL_misc.h in Headers */, A7D8ACB323E2514100DCD162 /* SDL_uikitopenglview.h in Headers */, A7D8AC7D23E2514100DCD162 /* SDL_uikitvideo.h in Headers */, A7D8AC4723E2514100DCD162 /* SDL_uikitview.h in Headers */, A7D8AC8923E2514100DCD162 /* SDL_uikitviewcontroller.h in Headers */, A7D8ACE323E2514100DCD162 /* SDL_uikitvulkan.h in Headers */, A7D8AC9B23E2514100DCD162 /* SDL_uikitwindow.h in Headers */, - A7D88C1623E24BED00DCD162 /* SDL_version.h in Headers */, - A7D88C1723E24BED00DCD162 /* SDL_video.h in Headers */, 75E09165241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, - A7D88C1923E24BED00DCD162 /* SDL_vulkan.h in Headers */, A7D8AD1F23E2514100DCD162 /* SDL_vulkan_internal.h in Headers */, + F3F7D9872933074E00816151 /* SDL_gamecontroller.h in Headers */, + F3F7D91B2933074E00816151 /* SDL_pixels.h in Headers */, A7D8B86E23E2514400DCD162 /* SDL_wave.h in Headers */, A7D8BBAD23E2514500DCD162 /* SDL_windowevents_c.h in Headers */, A7D8B3B223E2514200DCD162 /* SDL_yuv_c.h in Headers */, A7D8B9CD23E2514400DCD162 /* SDL_yuv_sw_c.h in Headers */, - A7D88BCC23E24BED00DCD162 /* begin_code.h in Headers */, A7D8BB4723E2514500DCD162 /* blank_cursor.h in Headers */, - A7D88BCE23E24BED00DCD162 /* close_code.h in Headers */, A7D8B5B923E2514300DCD162 /* controller_type.h in Headers */, A7D8BB4D23E2514500DCD162 /* default_cursor.h in Headers */, A7D8B23E23E2514200DCD162 /* egl.h in Headers */, + F3F7D94B2933074E00816151 /* SDL_scancode.h in Headers */, A7D8B24423E2514200DCD162 /* eglext.h in Headers */, A7D8B24A23E2514200DCD162 /* eglplatform.h in Headers */, A7D8B22C23E2514200DCD162 /* gl2.h in Headers */, A7D8B22623E2514200DCD162 /* gl2ext.h in Headers */, A7D8B23223E2514200DCD162 /* gl2platform.h in Headers */, + F3F7D90B2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */, A75FDB5A23E39E6100529352 /* hidapi.h in Headers */, + F3F7D96B2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */, + F3F7D9032933074E00816151 /* SDL_touch.h in Headers */, + F3F7D91F2933074E00816151 /* SDL_messagebox.h in Headers */, + F3F7D8FF2933074E00816151 /* SDL_opengles2_gl2.h in Headers */, A7D8ACA123E2514100DCD162 /* keyinfotable.h in Headers */, A7D8B23823E2514200DCD162 /* khrplatform.h in Headers */, A7D8BB0523E2514500DCD162 /* math_libm.h in Headers */, @@ -6421,23 +6160,37 @@ A7D8BB5323E2514500DCD162 /* scancodes_darwin.h in Headers */, A7D8BB5F23E2514500DCD162 /* scancodes_linux.h in Headers */, A7D8BB2323E2514500DCD162 /* scancodes_windows.h in Headers */, + F3F7D9632933074E00816151 /* SDL_opengles2.h in Headers */, + F3F7D9172933074E00816151 /* SDL_revision.h in Headers */, A7D8BBA123E2514500DCD162 /* scancodes_xfree86.h in Headers */, A7D8B57123E2514300DCD162 /* usb_ids.h in Headers */, A1626A542617008D003F1973 /* SDL_triangle.h in Headers */, + F3F7D9DF2933074E00816151 /* SDL_mutex.h in Headers */, A7D8B25623E2514200DCD162 /* vk_icd.h in Headers */, A7D8B25023E2514200DCD162 /* vk_layer.h in Headers */, A7D8B26823E2514200DCD162 /* vk_platform.h in Headers */, + F3F7D9AF2933074E00816151 /* SDL_mouse.h in Headers */, + F3F7D9772933074E00816151 /* SDL_keycode.h in Headers */, + F3F7D9832933074E00816151 /* SDL.h in Headers */, A7D8B2B023E2514200DCD162 /* vk_sdk_platform.h in Headers */, A7D8B26223E2514200DCD162 /* vulkan.h in Headers */, A7D8B26E23E2514200DCD162 /* vulkan.hpp in Headers */, + F3F7D9E72933074E00816151 /* SDL_system.h in Headers */, A7D8B2B623E2514200DCD162 /* vulkan_android.h in Headers */, A7D8B2AA23E2514200DCD162 /* vulkan_core.h in Headers */, + F3F7D8F72933074E00816151 /* SDL_stdinc.h in Headers */, + F3F7D97F2933074E00816151 /* SDL_blendmode.h in Headers */, A7D8B27423E2514200DCD162 /* vulkan_fuchsia.h in Headers */, A7D8B2A423E2514200DCD162 /* vulkan_ios.h in Headers */, A7D8B28623E2514200DCD162 /* vulkan_macos.h in Headers */, + F3F7D8F32933074E00816151 /* SDL_platform.h in Headers */, A7D8B29823E2514200DCD162 /* vulkan_mir.h in Headers */, A7D8B25C23E2514200DCD162 /* vulkan_vi.h in Headers */, A7D8B27A23E2514200DCD162 /* vulkan_wayland.h in Headers */, + F3F7D9232933074E00816151 /* SDL_log.h in Headers */, + F3F7D9CF2933074E00816151 /* SDL_rect.h in Headers */, + F3F7D9B72933074E00816151 /* SDL_name.h in Headers */, + F3F7D9572933074E00816151 /* SDL_locale.h in Headers */, A7D8B28023E2514200DCD162 /* vulkan_win32.h in Headers */, A7D8B29223E2514200DCD162 /* vulkan_xcb.h in Headers */, A7D8B29E23E2514200DCD162 /* vulkan_xlib.h in Headers */, @@ -6592,7 +6345,6 @@ A7D8B61523E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B28823E2514200DCD162 /* vulkan_macos.h in Headers */, A7D8B29423E2514200DCD162 /* vulkan_xcb.h in Headers */, - F382072B284F3643004DD584 /* SDL_guid.h in Headers */, A7D8B2A623E2514200DCD162 /* vulkan_ios.h in Headers */, A7D8A99D23E2514000DCD162 /* SDL_internal.h in Headers */, A7D8B26423E2514200DCD162 /* vulkan.h in Headers */, @@ -6620,25 +6372,28 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - AA75585E1595D4D800BBD41B /* SDL.h in Headers */, A7D8B39E23E2514200DCD162 /* SDL_RLEaccel_c.h in Headers */, - AA7557FE1595D4D800BBD41B /* SDL_assert.h in Headers */, + F3F7D9A12933074E00816151 /* SDL_clipboard.h in Headers */, + F3F7D9112933074E00816151 /* SDL_hints.h in Headers */, A7D8B61723E2514300DCD162 /* SDL_assert_c.h in Headers */, - AA7558001595D4D800BBD41B /* SDL_atomic.h in Headers */, - AA7558021595D4D800BBD41B /* SDL_audio.h in Headers */, A7D8B7A023E2514400DCD162 /* SDL_audio_c.h in Headers */, A7D8B7B223E2514400DCD162 /* SDL_audiodev_c.h in Headers */, - AADA5B8716CCAB3000107CF7 /* SDL_bits.h in Headers */, + F3F7D9C52933074E00816151 /* SDL_assert.h in Headers */, + F3F7D95D2933074E00816151 /* SDL_opengles.h in Headers */, A7D8BA0123E2514400DCD162 /* SDL_blendfillrect.h in Headers */, A7D8B9E923E2514400DCD162 /* SDL_blendline.h in Headers */, - AA7558041595D4D800BBD41B /* SDL_blendmode.h in Headers */, + F3F7D9312933074E00816151 /* SDL_surface.h in Headers */, + F3F7D9B12933074E00816151 /* SDL_power.h in Headers */, A7D8BA0D23E2514400DCD162 /* SDL_blendpoint.h in Headers */, + F3F7D9792933074E00816151 /* SDL_thread.h in Headers */, + F3F7D9892933074E00816151 /* SDL_guid.h in Headers */, A7D8B3B623E2514200DCD162 /* SDL_blit.h in Headers */, + F3F7D9252933074E00816151 /* SDL_egl.h in Headers */, + F3F7D9D92933074E00816151 /* close_code.h in Headers */, A7D8B2BA23E2514200DCD162 /* SDL_blit_auto.h in Headers */, A7D8B39823E2514200DCD162 /* SDL_blit_copy.h in Headers */, + F3F7D9352933074E00816151 /* SDL_error.h in Headers */, A7D8ADEC23E2514100DCD162 /* SDL_blit_slow.h in Headers */, - F3820727284F3643004DD584 /* SDL_guid.h in Headers */, - AA7558061595D4D800BBD41B /* SDL_clipboard.h in Headers */, A7D8BB6F23E2514500DCD162 /* SDL_clipboardevents_c.h in Headers */, A7D8AECA23E2514100DCD162 /* SDL_cocoaclipboard.h in Headers */, A7D8AF1223E2514100DCD162 /* SDL_cocoaevents.h in Headers */, @@ -6646,21 +6401,27 @@ A7D8AF0623E2514100DCD162 /* SDL_cocoamessagebox.h in Headers */, A7D8AEB223E2514100DCD162 /* SDL_cocoametalview.h in Headers */, A7D8AEF423E2514100DCD162 /* SDL_cocoamodes.h in Headers */, + F3F7D9C92933074E00816151 /* SDL_opengl.h in Headers */, A7D8AF1E23E2514100DCD162 /* SDL_cocoamouse.h in Headers */, A7D8AEDC23E2514100DCD162 /* SDL_cocoaopengl.h in Headers */, + F3F7D90D2933074E00816151 /* SDL_timer.h in Headers */, A7D8AEEE23E2514100DCD162 /* SDL_cocoaopengles.h in Headers */, + F3F7D9512933074E00816151 /* SDL_keyboard.h in Headers */, A7D8AE8223E2514100DCD162 /* SDL_cocoashape.h in Headers */, A7D8AF0023E2514100DCD162 /* SDL_cocoavideo.h in Headers */, + F3F7D9652933074E00816151 /* SDL_rwops.h in Headers */, A7D8AEE823E2514100DCD162 /* SDL_cocoavulkan.h in Headers */, A7D8AEFA23E2514100DCD162 /* SDL_cocoawindow.h in Headers */, - AA75580C1595D4D800BBD41B /* SDL_copying.h in Headers */, A7D8B8CC23E2514400DCD162 /* SDL_coreaudio.h in Headers */, A7D8A96F23E2514000DCD162 /* SDL_coremotionsensor.h in Headers */, - AA75580E1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */, F31A92C828D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, A7D8B98023E2514400DCD162 /* SDL_d3dmath.h in Headers */, A7D8A94523E2514000DCD162 /* SDL_dataqueue.h in Headers */, A7D8B8A223E2514400DCD162 /* SDL_diskaudio.h in Headers */, + F3F7D94D2933074E00816151 /* SDL_sensor.h in Headers */, + F3F7D8ED2933074E00816151 /* SDL_audio.h in Headers */, + F3F7D9712933074E00816151 /* SDL_events.h in Headers */, + F3F7D96D2933074E00816151 /* SDL_hidapi.h in Headers */, A7D8BB3F23E2514500DCD162 /* SDL_displayevents_c.h in Headers */, A7D8BA1923E2514400DCD162 /* SDL_draw.h in Headers */, A7D8BA0723E2514400DCD162 /* SDL_drawline.h in Headers */, @@ -6669,151 +6430,127 @@ A7D8B79423E2514400DCD162 /* SDL_dummyaudio.h in Headers */, A7D8A96323E2514000DCD162 /* SDL_dummysensor.h in Headers */, A7D8AB0A23E2514100DCD162 /* SDL_dynapi.h in Headers */, + F3F7D93D2933074E00816151 /* SDL_endian.h in Headers */, A7D8AB1023E2514100DCD162 /* SDL_dynapi_overrides.h in Headers */, A7D8AB1C23E2514100DCD162 /* SDL_dynapi_procs.h in Headers */, - 5C2EF7011FC9EF10003F5197 /* SDL_egl.h in Headers */, + F3F7D8E92933074E00816151 /* SDL_gesture.h in Headers */, A7D8ABD923E2514100DCD162 /* SDL_egl_c.h in Headers */, - AA7558101595D4D800BBD41B /* SDL_endian.h in Headers */, - AA7558121595D4D800BBD41B /* SDL_error.h in Headers */, A7D8A95D23E2514000DCD162 /* SDL_error_c.h in Headers */, - AA7558141595D4D800BBD41B /* SDL_events.h in Headers */, + F3F7D92D2933074E00816151 /* SDL_shape.h in Headers */, A7D8BBA523E2514500DCD162 /* SDL_events_c.h in Headers */, - 567E2F2117C44C35005F1892 /* SDL_filesystem.h in Headers */, - A77E6EB4167AB0A90010E40B /* SDL_gamecontroller.h in Headers */, + F3F7D9952933074E00816151 /* SDL_vulkan.h in Headers */, A7D8B4AC23E2514300DCD162 /* SDL_gamecontrollerdb.h in Headers */, - AA7558161595D4D800BBD41B /* SDL_gesture.h in Headers */, A7D8BB3923E2514500DCD162 /* SDL_gesture_c.h in Headers */, + F3F7D9B92933074E00816151 /* SDL_cpuinfo.h in Headers */, A7D8BA5523E2514400DCD162 /* SDL_gles2funcs.h in Headers */, A7D8BA4323E2514400DCD162 /* SDL_glesfuncs.h in Headers */, A7D8BA7923E2514400DCD162 /* SDL_glfuncs.h in Headers */, - AA7558181595D4D800BBD41B /* SDL_haptic.h in Headers */, A7D8AABC23E2514100DCD162 /* SDL_haptic_c.h in Headers */, A75FDBC523EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A7D8B55723E2514300DCD162 /* SDL_hidapijoystick_c.h in Headers */, - AA75581A1595D4D800BBD41B /* SDL_hints.h in Headers */, A7D8B94A23E2514400DCD162 /* SDL_hints_c.h in Headers */, A7D8A99923E2514000DCD162 /* SDL_internal.h in Headers */, F395C1932569C68F00942BFF /* SDL_iokitjoystick_c.h in Headers */, - AA75581E1595D4D800BBD41B /* SDL_joystick.h in Headers */, A7D8B58723E2514300DCD162 /* SDL_joystick_c.h in Headers */, - AA7558201595D4D800BBD41B /* SDL_keyboard.h in Headers */, A7D8BB8723E2514500DCD162 /* SDL_keyboard_c.h in Headers */, - AA7558221595D4D800BBD41B /* SDL_keycode.h in Headers */, - AA7558241595D4D800BBD41B /* SDL_loadso.h in Headers */, - 566E267A2462701100718109 /* SDL_locale.h in Headers */, - AA7558261595D4D800BBD41B /* SDL_log.h in Headers */, - AA7558281595D4D800BBD41B /* SDL_main.h in Headers */, - AA9FF95A1637CBF9000DF050 /* SDL_messagebox.h in Headers */, F386F6E72884663E001840AA /* SDL_log_c.h in Headers */, - FA24348B21D41FFB00B8918A /* SDL_metal.h in Headers */, F395C1BA2569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, - 5616CA50252BB2BE005D5928 /* SDL_misc.h in Headers */, - AA75582A1595D4D800BBD41B /* SDL_mouse.h in Headers */, A7D8BB1B23E2514500DCD162 /* SDL_mouse_c.h in Headers */, - F38233852738EB8600F7F527 /* SDL_hidapi.h in Headers */, - AA75582C1595D4D800BBD41B /* SDL_mutex.h in Headers */, - AA75582E1595D4D800BBD41B /* SDL_name.h in Headers */, A7D8ABFD23E2514100DCD162 /* SDL_nullevents_c.h in Headers */, + F3F7D98D2933074E00816151 /* SDL_metal.h in Headers */, A7D8ABE523E2514100DCD162 /* SDL_nullframebuffer_c.h in Headers */, A7D8ABF723E2514100DCD162 /* SDL_nullvideo.h in Headers */, A7D8AB5B23E2514100DCD162 /* SDL_offscreenevents_c.h in Headers */, + F3F7D8F92933074E00816151 /* SDL_haptic.h in Headers */, A7D8AB7F23E2514100DCD162 /* SDL_offscreenframebuffer_c.h in Headers */, A7D8AB6D23E2514100DCD162 /* SDL_offscreenvideo.h in Headers */, + F3F7D9E12933074E00816151 /* begin_code.h in Headers */, + F3F7D9C12933074E00816151 /* SDL_quit.h in Headers */, A7D8AB8523E2514100DCD162 /* SDL_offscreenwindow.h in Headers */, - AA7558301595D4D800BBD41B /* SDL_opengl.h in Headers */, - AAC070F9195606770073DCDF /* SDL_opengl_glext.h in Headers */, - AA7558321595D4D800BBD41B /* SDL_opengles.h in Headers */, - AA7558341595D4D800BBD41B /* SDL_opengles2.h in Headers */, - AAC070FC195606770073DCDF /* SDL_opengles2_gl2.h in Headers */, - AAC070FF195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */, - AAC07102195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */, - AAC07105195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */, - AA7558361595D4D800BBD41B /* SDL_pixels.h in Headers */, A7D8B2C023E2514200DCD162 /* SDL_pixels_c.h in Headers */, - AA7558381595D4D800BBD41B /* SDL_platform.h in Headers */, - AA75583A1595D4D800BBD41B /* SDL_power.h in Headers */, - AA75583C1595D4D800BBD41B /* SDL_quit.h in Headers */, - AA75583E1595D4D800BBD41B /* SDL_rect.h in Headers */, + F3F7D9A92933074E00816151 /* SDL_loadso.h in Headers */, A7D8AC0323E2514100DCD162 /* SDL_rect_c.h in Headers */, - AA7558401595D4D800BBD41B /* SDL_render.h in Headers */, + F3F7D99D2933074E00816151 /* SDL_filesystem.h in Headers */, A7D8B9FB23E2514400DCD162 /* SDL_render_sw_c.h in Headers */, - AA7558421595D4D800BBD41B /* SDL_revision.h in Headers */, A7D8BA3123E2514400DCD162 /* SDL_rotate.h in Headers */, + F3F7D9292933074E00816151 /* SDL_atomic.h in Headers */, F3973FA228A59BDD00B84553 /* SDL_vacopy.h in Headers */, - AA7558441595D4D800BBD41B /* SDL_rwops.h in Headers */, A7D8B5C323E2514300DCD162 /* SDL_rwopsbundlesupport.h in Headers */, - AA7558461595D4D800BBD41B /* SDL_scancode.h in Headers */, - F3950CD8212BC88D00F51292 /* SDL_sensor.h in Headers */, + F3F7D9412933074E00816151 /* SDL_syswm.h in Headers */, A7D8A98D23E2514000DCD162 /* SDL_sensor_c.h in Headers */, F386F6F02884663E001840AA /* SDL_utils_c.h in Headers */, A7D8BA7323E2514400DCD162 /* SDL_shaders_gl.h in Headers */, + F3F7D9A52933074E00816151 /* SDL_bits.h in Headers */, A7D8BA4F23E2514400DCD162 /* SDL_shaders_gles2.h in Headers */, + F3F7D9392933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */, + F3F7D9452933074E00816151 /* SDL_opengl_glext.h in Headers */, A1BB8B6C27F6CF330057CFA8 /* SDL_list.h in Headers */, + F3F7D9D52933074E00816151 /* SDL_version.h in Headers */, A7D8B98C23E2514400DCD162 /* SDL_shaders_metal_ios.h in Headers */, A7D8B99B23E2514400DCD162 /* SDL_shaders_metal_macos.h in Headers */, A7D8B9A123E2514400DCD162 /* SDL_shaders_metal_tvos.h in Headers */, - AA7558481595D4D800BBD41B /* SDL_shape.h in Headers */, A7D8AC0923E2514100DCD162 /* SDL_shape_internals.h in Headers */, - AA75584A1595D4D800BBD41B /* SDL_stdinc.h in Headers */, A7D8BBC723E2561500DCD162 /* SDL_steamcontroller.h in Headers */, - AA75584C1595D4D800BBD41B /* SDL_surface.h in Headers */, A7D8B85A23E2514400DCD162 /* SDL_sysaudio.h in Headers */, + F3F7D9052933074E00816151 /* SDL_main.h in Headers */, A7D8AAD423E2514100DCD162 /* SDL_syshaptic.h in Headers */, A7D8AAE023E2514100DCD162 /* SDL_syshaptic_c.h in Headers */, A7D8B58123E2514300DCD162 /* SDL_sysjoystick.h in Headers */, + F3F7D9912933074E00816151 /* SDL_joystick.h in Headers */, 566E26E1246274CC00718109 /* SDL_syslocale.h in Headers */, A7D8B44023E2514300DCD162 /* SDL_sysmutex_c.h in Headers */, A7D8B5D523E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B61123E2514300DCD162 /* SDL_syspower.h in Headers */, A7D8B9D723E2514400DCD162 /* SDL_sysrender.h in Headers */, A7D8A97B23E2514000DCD162 /* SDL_syssensor.h in Headers */, - AA75584E1595D4D800BBD41B /* SDL_system.h in Headers */, A7D8B3E623E2514300DCD162 /* SDL_systhread.h in Headers */, + F3F7D9BD2933074E00816151 /* SDL_render.h in Headers */, + F3F7D9592933074E00816151 /* SDL_video.h in Headers */, A7D8B42823E2514300DCD162 /* SDL_systhread_c.h in Headers */, 5616CA4D252BB2A6005D5928 /* SDL_sysurl.h in Headers */, A7D8AC3F23E2514100DCD162 /* SDL_sysvideo.h in Headers */, - AA7558501595D4D800BBD41B /* SDL_syswm.h in Headers */, - AA7558521595D4D800BBD41B /* SDL_thread.h in Headers */, A7D8B3EC23E2514300DCD162 /* SDL_thread_c.h in Headers */, - AA7558541595D4D800BBD41B /* SDL_timer.h in Headers */, A7D8AB3123E2514100DCD162 /* SDL_timer_c.h in Headers */, - AA7558561595D4D800BBD41B /* SDL_touch.h in Headers */, A7D8BB6323E2514500DCD162 /* SDL_touch_c.h in Headers */, - AA7558581595D4D800BBD41B /* SDL_types.h in Headers */, A7D8BBD223E2574800DCD162 /* SDL_uikitappdelegate.h in Headers */, A7D8BBD423E2574800DCD162 /* SDL_uikitclipboard.h in Headers */, A7D8BBD623E2574800DCD162 /* SDL_uikitevents.h in Headers */, A7D8BBD823E2574800DCD162 /* SDL_uikitmessagebox.h in Headers */, + F3F7D9D12933074E00816151 /* SDL_copying.h in Headers */, A7D8BBDA23E2574800DCD162 /* SDL_uikitmetalview.h in Headers */, A7D8BBDC23E2574800DCD162 /* SDL_uikitmodes.h in Headers */, A7D8BBDE23E2574800DCD162 /* SDL_uikitopengles.h in Headers */, + F3F7D9992933074E00816151 /* SDL_misc.h in Headers */, A7D8BBE023E2574800DCD162 /* SDL_uikitopenglview.h in Headers */, A7D8BBE223E2574800DCD162 /* SDL_uikitvideo.h in Headers */, A7D8BBE423E2574800DCD162 /* SDL_uikitview.h in Headers */, A7D8BBE623E2574800DCD162 /* SDL_uikitviewcontroller.h in Headers */, A7D8BBE823E2574800DCD162 /* SDL_uikitvulkan.h in Headers */, A7D8BBEA23E2574800DCD162 /* SDL_uikitwindow.h in Headers */, - AA75585A1595D4D800BBD41B /* SDL_version.h in Headers */, - AA75585C1595D4D800BBD41B /* SDL_video.h in Headers */, 75E09163241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, - AA8167541F5E727800518735 /* SDL_vulkan.h in Headers */, A7D8AD1D23E2514100DCD162 /* SDL_vulkan_internal.h in Headers */, + F3F7D9852933074E00816151 /* SDL_gamecontroller.h in Headers */, + F3F7D9192933074E00816151 /* SDL_pixels.h in Headers */, A7D8B86C23E2514400DCD162 /* SDL_wave.h in Headers */, A7D8BBAB23E2514500DCD162 /* SDL_windowevents_c.h in Headers */, A7D8B3B023E2514200DCD162 /* SDL_yuv_c.h in Headers */, A7D8B9CB23E2514400DCD162 /* SDL_yuv_sw_c.h in Headers */, - AA7557FA1595D4D800BBD41B /* begin_code.h in Headers */, A7D8BB4523E2514500DCD162 /* blank_cursor.h in Headers */, - AA7557FC1595D4D800BBD41B /* close_code.h in Headers */, A7D8B5B723E2514300DCD162 /* controller_type.h in Headers */, A7D8BB4B23E2514500DCD162 /* default_cursor.h in Headers */, A7D8B23C23E2514200DCD162 /* egl.h in Headers */, + F3F7D9492933074E00816151 /* SDL_scancode.h in Headers */, A7D8B24223E2514200DCD162 /* eglext.h in Headers */, A7D8B24823E2514200DCD162 /* eglplatform.h in Headers */, A7D8B22A23E2514200DCD162 /* gl2.h in Headers */, A7D8B22423E2514200DCD162 /* gl2ext.h in Headers */, A7D8B23023E2514200DCD162 /* gl2platform.h in Headers */, + F3F7D9092933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */, A75FDB5823E39E6100529352 /* hidapi.h in Headers */, + F3F7D9692933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */, + F3F7D9012933074E00816151 /* SDL_touch.h in Headers */, + F3F7D91D2933074E00816151 /* SDL_messagebox.h in Headers */, + F3F7D8FD2933074E00816151 /* SDL_opengles2_gl2.h in Headers */, A7D8BBD123E2574800DCD162 /* keyinfotable.h in Headers */, A7D8B23623E2514200DCD162 /* khrplatform.h in Headers */, A7D8BB0323E2514500DCD162 /* math_libm.h in Headers */, @@ -6821,23 +6558,37 @@ A7D8BB5123E2514500DCD162 /* scancodes_darwin.h in Headers */, A7D8BB5D23E2514500DCD162 /* scancodes_linux.h in Headers */, A7D8BB2123E2514500DCD162 /* scancodes_windows.h in Headers */, + F3F7D9612933074E00816151 /* SDL_opengles2.h in Headers */, + F3F7D9152933074E00816151 /* SDL_revision.h in Headers */, A7D8BB9F23E2514500DCD162 /* scancodes_xfree86.h in Headers */, A7D8B56F23E2514300DCD162 /* usb_ids.h in Headers */, A1626A522617008D003F1973 /* SDL_triangle.h in Headers */, + F3F7D9DD2933074E00816151 /* SDL_mutex.h in Headers */, A7D8B25423E2514200DCD162 /* vk_icd.h in Headers */, A7D8B24E23E2514200DCD162 /* vk_layer.h in Headers */, A7D8B26623E2514200DCD162 /* vk_platform.h in Headers */, + F3F7D9AD2933074E00816151 /* SDL_mouse.h in Headers */, + F3F7D9752933074E00816151 /* SDL_keycode.h in Headers */, + F3F7D9812933074E00816151 /* SDL.h in Headers */, A7D8B2AE23E2514200DCD162 /* vk_sdk_platform.h in Headers */, A7D8B26023E2514200DCD162 /* vulkan.h in Headers */, A7D8B26C23E2514200DCD162 /* vulkan.hpp in Headers */, + F3F7D9E52933074E00816151 /* SDL_system.h in Headers */, A7D8B2B423E2514200DCD162 /* vulkan_android.h in Headers */, A7D8B2A823E2514200DCD162 /* vulkan_core.h in Headers */, + F3F7D8F52933074E00816151 /* SDL_stdinc.h in Headers */, + F3F7D97D2933074E00816151 /* SDL_blendmode.h in Headers */, A7D8B27223E2514200DCD162 /* vulkan_fuchsia.h in Headers */, A7D8B2A223E2514200DCD162 /* vulkan_ios.h in Headers */, A7D8B28423E2514200DCD162 /* vulkan_macos.h in Headers */, + F3F7D8F12933074E00816151 /* SDL_platform.h in Headers */, A7D8B29623E2514200DCD162 /* vulkan_mir.h in Headers */, A7D8B25A23E2514200DCD162 /* vulkan_vi.h in Headers */, A7D8B27823E2514200DCD162 /* vulkan_wayland.h in Headers */, + F3F7D9212933074E00816151 /* SDL_log.h in Headers */, + F3F7D9CD2933074E00816151 /* SDL_rect.h in Headers */, + F3F7D9B52933074E00816151 /* SDL_name.h in Headers */, + F3F7D9552933074E00816151 /* SDL_locale.h in Headers */, A7D8B27E23E2514200DCD162 /* vulkan_win32.h in Headers */, A7D8B29023E2514200DCD162 /* vulkan_xcb.h in Headers */, A7D8B29C23E2514200DCD162 /* vulkan_xlib.h in Headers */, @@ -7003,7 +6754,6 @@ A7D8AF1523E2514100DCD162 /* SDL_cocoaevents.h in Headers */, A7D8B25723E2514200DCD162 /* vk_icd.h in Headers */, A7D8ABE823E2514100DCD162 /* SDL_nullframebuffer_c.h in Headers */, - F382072A284F3643004DD584 /* SDL_guid.h in Headers */, A7D8AB1F23E2514100DCD162 /* SDL_dynapi_procs.h in Headers */, A7D8B27523E2514200DCD162 /* vulkan_fuchsia.h in Headers */, 5616CA57252BB35C005D5928 /* SDL_sysurl.h in Headers */, @@ -7021,81 +6771,56 @@ buildActionMask = 2147483647; files = ( A7D8B9A623E2514400DCD162 /* SDL_shaders_metal_tvos.h in Headers */, - DB0F490C17CA57ED008798C5 /* SDL_filesystem.h in Headers */, - DB313FC817554B71006C0E22 /* begin_code.h in Headers */, A7D8ACDA23E2514100DCD162 /* SDL_uikitopengles.h in Headers */, - DB313FC917554B71006C0E22 /* close_code.h in Headers */, - DB313FF917554B71006C0E22 /* SDL.h in Headers */, A7D8AC6223E2514100DCD162 /* SDL_uikitmetalview.h in Headers */, - DB313FCA17554B71006C0E22 /* SDL_assert.h in Headers */, A7D8AC0E23E2514100DCD162 /* SDL_shape_internals.h in Headers */, A7D8BA7E23E2514400DCD162 /* SDL_glfuncs.h in Headers */, - DB313FCB17554B71006C0E22 /* SDL_atomic.h in Headers */, F386F6F62884663E001840AA /* SDL_utils_c.h in Headers */, 75E09169241EA924004729E1 /* SDL_virtualjoystick_c.h in Headers */, A7D8AC0823E2514100DCD162 /* SDL_rect_c.h in Headers */, A7D8B9A023E2514400DCD162 /* SDL_shaders_metal_macos.h in Headers */, A7D8B99123E2514400DCD162 /* SDL_shaders_metal_ios.h in Headers */, - F382072D284F3643004DD584 /* SDL_guid.h in Headers */, A7D8AB8A23E2514100DCD162 /* SDL_offscreenwindow.h in Headers */, - DB313FCC17554B71006C0E22 /* SDL_audio.h in Headers */, A7D8A97423E2514000DCD162 /* SDL_coremotionsensor.h in Headers */, A7D8AC4A23E2514100DCD162 /* SDL_uikitview.h in Headers */, - DB313FFC17554B71006C0E22 /* SDL_bits.h in Headers */, A7D8ACCE23E2514100DCD162 /* SDL_uikitappdelegate.h in Headers */, A7D8ACA423E2514100DCD162 /* keyinfotable.h in Headers */, - DB313FCD17554B71006C0E22 /* SDL_blendmode.h in Headers */, A7D8BB3223E2514500DCD162 /* SDL_dropevents_c.h in Headers */, A7D8AAC123E2514100DCD162 /* SDL_haptic_c.h in Headers */, - DB313FCE17554B71006C0E22 /* SDL_clipboard.h in Headers */, A7D8A94A23E2514000DCD162 /* SDL_dataqueue.h in Headers */, A7D8A96223E2514000DCD162 /* SDL_error_c.h in Headers */, A7D8B98523E2514400DCD162 /* SDL_d3dmath.h in Headers */, A7D8ABDE23E2514100DCD162 /* SDL_egl_c.h in Headers */, - DB313FD117554B71006C0E22 /* SDL_copying.h in Headers */, - F382338B2738EB8600F7F527 /* SDL_hidapi.h in Headers */, A7D8B3D923E2514300DCD162 /* yuv_rgb.h in Headers */, A7D8B79923E2514400DCD162 /* SDL_dummyaudio.h in Headers */, A7D8AC9823E2514100DCD162 /* SDL_uikitmessagebox.h in Headers */, F31A92CF28D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, A7D8B3F123E2514300DCD162 /* SDL_thread_c.h in Headers */, A7D8AF0B23E2514100DCD162 /* SDL_cocoamessagebox.h in Headers */, - DB313FD217554B71006C0E22 /* SDL_cpuinfo.h in Headers */, - DB313FD317554B71006C0E22 /* SDL_endian.h in Headers */, - DB313FD417554B71006C0E22 /* SDL_error.h in Headers */, - DB313FD517554B71006C0E22 /* SDL_events.h in Headers */, A75FDB5E23E39E6100529352 /* hidapi.h in Headers */, A7D8BA0623E2514400DCD162 /* SDL_blendfillrect.h in Headers */, - DB313FFB17554B71006C0E22 /* SDL_gamecontroller.h in Headers */, A7D8B55C23E2514300DCD162 /* SDL_hidapijoystick_c.h in Headers */, F395C1992569C68F00942BFF /* SDL_iokitjoystick_c.h in Headers */, A7D8B2C523E2514200DCD162 /* SDL_pixels_c.h in Headers */, A7D8B58C23E2514300DCD162 /* SDL_joystick_c.h in Headers */, A7D8B2B323E2514200DCD162 /* vk_sdk_platform.h in Headers */, A7D8BB4A23E2514500DCD162 /* blank_cursor.h in Headers */, - DB313FD617554B71006C0E22 /* SDL_gesture.h in Headers */, A7D8B85F23E2514400DCD162 /* SDL_sysaudio.h in Headers */, - DB313FD717554B71006C0E22 /* SDL_haptic.h in Headers */, A7D8BB0823E2514500DCD162 /* math_libm.h in Headers */, A7D8AC8023E2514100DCD162 /* SDL_uikitvideo.h in Headers */, A7D8AF2323E2514100DCD162 /* SDL_cocoamouse.h in Headers */, - DB313FD817554B71006C0E22 /* SDL_hints.h in Headers */, A7D8ADF123E2514100DCD162 /* SDL_blit_slow.h in Headers */, A7D8B9D023E2514400DCD162 /* SDL_yuv_sw_c.h in Headers */, A7D8BBB023E2514500DCD162 /* SDL_windowevents_c.h in Headers */, - DB313FD917554B71006C0E22 /* SDL_joystick.h in Headers */, A7D8AF0523E2514100DCD162 /* SDL_cocoavideo.h in Headers */, - DB313FDA17554B71006C0E22 /* SDL_keyboard.h in Headers */, A7D8ACC223E2514100DCD162 /* SDL_uikitevents.h in Headers */, A7D8BB3E23E2514500DCD162 /* SDL_gesture_c.h in Headers */, A7D8BA7823E2514400DCD162 /* SDL_shaders_gl.h in Headers */, A7D8B42D23E2514300DCD162 /* SDL_systhread_c.h in Headers */, A1BB8B7227F6CF330057CFA8 /* SDL_list.h in Headers */, - DB313FDB17554B71006C0E22 /* SDL_keycode.h in Headers */, A7D8AE9323E2514100DCD162 /* SDL_cocoakeyboard.h in Headers */, A7D8ACE623E2514100DCD162 /* SDL_uikitvulkan.h in Headers */, A7D8B27123E2514200DCD162 /* vulkan.hpp in Headers */, - DB313FDC17554B71006C0E22 /* SDL_loadso.h in Headers */, A7D8B22923E2514200DCD162 /* gl2ext.h in Headers */, A7D8BB7423E2514500DCD162 /* SDL_clipboardevents_c.h in Headers */, A7D8AAE523E2514100DCD162 /* SDL_syshaptic_c.h in Headers */, @@ -7105,7 +6830,6 @@ A7D8AC6E23E2514100DCD162 /* SDL_uikitmodes.h in Headers */, A7D8B24123E2514200DCD162 /* egl.h in Headers */, A7D8B23B23E2514200DCD162 /* khrplatform.h in Headers */, - DB313FDD17554B71006C0E22 /* SDL_log.h in Headers */, A7D8AC8C23E2514100DCD162 /* SDL_uikitviewcontroller.h in Headers */, A7D8A96823E2514000DCD162 /* SDL_dummysensor.h in Headers */, A7D8B2B923E2514200DCD162 /* vulkan_android.h in Headers */, @@ -7115,9 +6839,7 @@ A7D8AB0F23E2514100DCD162 /* SDL_dynapi.h in Headers */, A7D8B61C23E2514300DCD162 /* SDL_assert_c.h in Headers */, A7D8B8A723E2514400DCD162 /* SDL_diskaudio.h in Headers */, - DB313FDE17554B71006C0E22 /* SDL_main.h in Headers */, A7D8B9F423E2514400DCD162 /* SDL_drawpoint.h in Headers */, - AAC07107195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */, A7D8B87123E2514400DCD162 /* SDL_wave.h in Headers */, A7D8AEE123E2514100DCD162 /* SDL_cocoaopengl.h in Headers */, A7D8B3CD23E2514300DCD162 /* yuv_rgb_sse_func.h in Headers */, @@ -7128,22 +6850,15 @@ A7D8B8D123E2514400DCD162 /* SDL_coreaudio.h in Headers */, A7D8BA1E23E2514400DCD162 /* SDL_draw.h in Headers */, A7D8BA0C23E2514400DCD162 /* SDL_drawline.h in Headers */, - DB0F489317C400E6008798C5 /* SDL_messagebox.h in Headers */, - DB313FDF17554B71006C0E22 /* SDL_mouse.h in Headers */, - DB313FE017554B71006C0E22 /* SDL_mutex.h in Headers */, A7D8B3B523E2514200DCD162 /* SDL_yuv_c.h in Headers */, A7D8BBA423E2514500DCD162 /* scancodes_xfree86.h in Headers */, A7D8B5DA23E2514300DCD162 /* SDL_syspower.h in Headers */, - DB313FE117554B71006C0E22 /* SDL_name.h in Headers */, A7D8B24723E2514200DCD162 /* eglext.h in Headers */, A7D8BBAA23E2514500DCD162 /* SDL_events_c.h in Headers */, A7D8BAC623E2514500DCD162 /* math_private.h in Headers */, A7D8B27D23E2514200DCD162 /* vulkan_wayland.h in Headers */, - DB313FE217554B71006C0E22 /* SDL_opengl.h in Headers */, A7D8AE8723E2514100DCD162 /* SDL_cocoashape.h in Headers */, - DB313FE317554B71006C0E22 /* SDL_opengles.h in Headers */, A7D8BA5423E2514400DCD162 /* SDL_shaders_gles2.h in Headers */, - DB313FE417554B71006C0E22 /* SDL_opengles2.h in Headers */, A7D8BA4823E2514400DCD162 /* SDL_glesfuncs.h in Headers */, A7D8BA1223E2514400DCD162 /* SDL_blendpoint.h in Headers */, A7D8AB7223E2514100DCD162 /* SDL_offscreenvideo.h in Headers */, @@ -7155,7 +6870,6 @@ A7D8B4B123E2514300DCD162 /* SDL_gamecontrollerdb.h in Headers */, A7D8AEED23E2514100DCD162 /* SDL_cocoavulkan.h in Headers */, A7D8B23523E2514200DCD162 /* gl2platform.h in Headers */, - DB313FE517554B71006C0E22 /* SDL_pixels.h in Headers */, A7D8B25323E2514200DCD162 /* vk_layer.h in Headers */, A7D8B26B23E2514200DCD162 /* vk_platform.h in Headers */, A7D8AEB723E2514100DCD162 /* SDL_cocoametalview.h in Headers */, @@ -7165,8 +6879,6 @@ A7D8A99223E2514000DCD162 /* SDL_sensor_c.h in Headers */, A7D8B9DC23E2514400DCD162 /* SDL_sysrender.h in Headers */, A7D8BA3623E2514400DCD162 /* SDL_rotate.h in Headers */, - DB313FE617554B71006C0E22 /* SDL_platform.h in Headers */, - DB313FE717554B71006C0E22 /* SDL_power.h in Headers */, A7D8BB5623E2514500DCD162 /* scancodes_darwin.h in Headers */, A7D8B5BC23E2514300DCD162 /* controller_type.h in Headers */, A7D8AC7A23E2514100DCD162 /* SDL_uikitclipboard.h in Headers */, @@ -7174,19 +6886,13 @@ A7D8AC9E23E2514100DCD162 /* SDL_uikitwindow.h in Headers */, A7D8B25F23E2514200DCD162 /* vulkan_vi.h in Headers */, A7D8B29B23E2514200DCD162 /* vulkan_mir.h in Headers */, - DB313FE817554B71006C0E22 /* SDL_quit.h in Headers */, A7D8BB5023E2514500DCD162 /* default_cursor.h in Headers */, A7D8BA0023E2514400DCD162 /* SDL_render_sw_c.h in Headers */, - DB313FE917554B71006C0E22 /* SDL_rect.h in Headers */, - DB313FEA17554B71006C0E22 /* SDL_render.h in Headers */, A7D8ABFC23E2514100DCD162 /* SDL_nullvideo.h in Headers */, A7D8B39D23E2514200DCD162 /* SDL_blit_copy.h in Headers */, A7D8B3A323E2514200DCD162 /* SDL_RLEaccel_c.h in Headers */, A7D8B24D23E2514200DCD162 /* eglplatform.h in Headers */, - DB313FEB17554B71006C0E22 /* SDL_revision.h in Headers */, A7D8B3EB23E2514300DCD162 /* SDL_systhread.h in Headers */, - DB313FEC17554B71006C0E22 /* SDL_rwops.h in Headers */, - DB313FED17554B71006C0E22 /* SDL_scancode.h in Headers */, A7D8AECF23E2514100DCD162 /* SDL_cocoaclipboard.h in Headers */, A7D8AEF923E2514100DCD162 /* SDL_cocoamodes.h in Headers */, A7D8ACB623E2514100DCD162 /* SDL_uikitopenglview.h in Headers */, @@ -7203,41 +6909,25 @@ A7D8B29523E2514200DCD162 /* vulkan_xcb.h in Headers */, A7D8B2A723E2514200DCD162 /* vulkan_ios.h in Headers */, A7D8A99E23E2514000DCD162 /* SDL_internal.h in Headers */, - DB313FEE17554B71006C0E22 /* SDL_shape.h in Headers */, - DB313FEF17554B71006C0E22 /* SDL_stdinc.h in Headers */, - DB313FF017554B71006C0E22 /* SDL_surface.h in Headers */, A7D8B26523E2514200DCD162 /* vulkan.h in Headers */, A7D8BB8C23E2514500DCD162 /* SDL_keyboard_c.h in Headers */, - DB313FF117554B71006C0E22 /* SDL_system.h in Headers */, - DB313FF217554B71006C0E22 /* SDL_syswm.h in Headers */, - AAC070FB195606770073DCDF /* SDL_opengl_glext.h in Headers */, A7D8BB2023E2514500DCD162 /* SDL_mouse_c.h in Headers */, A7D8B2BF23E2514200DCD162 /* SDL_blit_auto.h in Headers */, A7D8B9EE23E2514400DCD162 /* SDL_blendline.h in Headers */, F395C1C02569C6A000942BFF /* SDL_mfijoystick_c.h in Headers */, A7D8AAD923E2514100DCD162 /* SDL_syshaptic.h in Headers */, A7D8AD2223E2514100DCD162 /* SDL_vulkan_internal.h in Headers */, - DB313FF317554B71006C0E22 /* SDL_thread.h in Headers */, A7D8AF1723E2514100DCD162 /* SDL_cocoaevents.h in Headers */, A7D8B25923E2514200DCD162 /* vk_icd.h in Headers */, A7D8ABEA23E2514100DCD162 /* SDL_nullframebuffer_c.h in Headers */, - DB313FF417554B71006C0E22 /* SDL_timer.h in Headers */, A7D8AB2123E2514100DCD162 /* SDL_dynapi_procs.h in Headers */, A7D8B27723E2514200DCD162 /* vulkan_fuchsia.h in Headers */, - DB313FF517554B71006C0E22 /* SDL_touch.h in Headers */, - DB313FF617554B71006C0E22 /* SDL_types.h in Headers */, 5616CA60252BB35E005D5928 /* SDL_sysurl.h in Headers */, A7D8B57423E2514300DCD162 /* usb_ids.h in Headers */, A7D8BA5A23E2514400DCD162 /* SDL_gles2funcs.h in Headers */, - DB313FF717554B71006C0E22 /* SDL_version.h in Headers */, - DB313FF817554B71006C0E22 /* SDL_video.h in Headers */, - AAC070FE195606770073DCDF /* SDL_opengles2_gl2.h in Headers */, - F3950CDA212BC88D00F51292 /* SDL_sensor.h in Headers */, A75FDBCB23EA380300529352 /* SDL_hidapi_rumble.h in Headers */, A7D8AC4423E2514100DCD162 /* SDL_sysvideo.h in Headers */, F386F6ED2884663E001840AA /* SDL_log_c.h in Headers */, - AAC07104195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */, - AAC07101195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */, A7D8AB1523E2514100DCD162 /* SDL_dynapi_overrides.h in Headers */, A7D8AEFF23E2514100DCD162 /* SDL_cocoawindow.h in Headers */, ); @@ -7247,7 +6937,71 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + F3F7D9B42933074E00816151 /* SDL_power.h in Headers */, + F3F7D9202933074E00816151 /* SDL_messagebox.h in Headers */, + F3F7D8EC2933074E00816151 /* SDL_gesture.h in Headers */, + F3F7D9142933074E00816151 /* SDL_hints.h in Headers */, + F3F7D9902933074E00816151 /* SDL_metal.h in Headers */, + F3F7D9B02933074E00816151 /* SDL_mouse.h in Headers */, + F3F7D9242933074E00816151 /* SDL_log.h in Headers */, + F3F7D9E02933074E00816151 /* SDL_mutex.h in Headers */, + F3F7D9D02933074E00816151 /* SDL_rect.h in Headers */, + F3F7D8F02933074E00816151 /* SDL_audio.h in Headers */, + F3F7D98C2933074E00816151 /* SDL_guid.h in Headers */, + F3F7D9A42933074E00816151 /* SDL_clipboard.h in Headers */, + F3F7D9882933074E00816151 /* SDL_gamecontroller.h in Headers */, + F3F7D9182933074E00816151 /* SDL_revision.h in Headers */, + F3F7D9842933074E00816151 /* SDL.h in Headers */, + F3F7D9702933074E00816151 /* SDL_hidapi.h in Headers */, + F3F7D9C02933074E00816151 /* SDL_render.h in Headers */, + F3F7D9442933074E00816151 /* SDL_syswm.h in Headers */, + F3F7D9BC2933074E00816151 /* SDL_cpuinfo.h in Headers */, + F3F7D9E82933074E00816151 /* SDL_system.h in Headers */, + F3F7D9D42933074E00816151 /* SDL_copying.h in Headers */, + F3F7D9A02933074E00816151 /* SDL_filesystem.h in Headers */, + F3F7D93C2933074E00816151 /* SDL_opengles2_gl2ext.h in Headers */, + F3F7D9402933074E00816151 /* SDL_endian.h in Headers */, + F3F7D9942933074E00816151 /* SDL_joystick.h in Headers */, + F3F7D9C42933074E00816151 /* SDL_quit.h in Headers */, + F3F7D9342933074E00816151 /* SDL_surface.h in Headers */, + F3F7D9D82933074E00816151 /* SDL_version.h in Headers */, + F3F7D9002933074E00816151 /* SDL_opengles2_gl2.h in Headers */, + F3F7D9102933074E00816151 /* SDL_timer.h in Headers */, + F3F7D9502933074E00816151 /* SDL_sensor.h in Headers */, + F3F7D97C2933074E00816151 /* SDL_thread.h in Headers */, + F3F7D9782933074E00816151 /* SDL_keycode.h in Headers */, + F3F7D9602933074E00816151 /* SDL_opengles.h in Headers */, + F3F7D9E42933074E00816151 /* begin_code.h in Headers */, + F3F7D9982933074E00816151 /* SDL_vulkan.h in Headers */, + F3F7D9C82933074E00816151 /* SDL_assert.h in Headers */, + F3F7D90C2933074E00816151 /* SDL_opengles2_khrplatform.h in Headers */, + F3F7D9AC2933074E00816151 /* SDL_loadso.h in Headers */, + F3F7D9302933074E00816151 /* SDL_shape.h in Headers */, + F3F7D9742933074E00816151 /* SDL_events.h in Headers */, + F3F7D91C2933074E00816151 /* SDL_pixels.h in Headers */, + F3F7D9082933074E00816151 /* SDL_main.h in Headers */, + F3F7D9482933074E00816151 /* SDL_opengl_glext.h in Headers */, + F3F7D96C2933074E00816151 /* SDL_opengles2_gl2platform.h in Headers */, + F3F7D95C2933074E00816151 /* SDL_video.h in Headers */, + F3F7D92C2933074E00816151 /* SDL_atomic.h in Headers */, + F3F7D9682933074E00816151 /* SDL_rwops.h in Headers */, + F3F7D9A82933074E00816151 /* SDL_bits.h in Headers */, F31A92CB28D4CB39003BFD6A /* SDL_offscreenopengles.h in Headers */, + F3F7D9642933074E00816151 /* SDL_opengles2.h in Headers */, + F3F7D9282933074E00816151 /* SDL_egl.h in Headers */, + F3F7D8FC2933074E00816151 /* SDL_haptic.h in Headers */, + F3F7D8F82933074E00816151 /* SDL_stdinc.h in Headers */, + F3F7D9B82933074E00816151 /* SDL_name.h in Headers */, + F3F7D9582933074E00816151 /* SDL_locale.h in Headers */, + F3F7D9542933074E00816151 /* SDL_keyboard.h in Headers */, + F3F7D9CC2933074E00816151 /* SDL_opengl.h in Headers */, + F3F7D9802933074E00816151 /* SDL_blendmode.h in Headers */, + F3F7D94C2933074E00816151 /* SDL_scancode.h in Headers */, + F3F7D9042933074E00816151 /* SDL_touch.h in Headers */, + F3F7D9382933074E00816151 /* SDL_error.h in Headers */, + F3F7D99C2933074E00816151 /* SDL_misc.h in Headers */, + F3F7D9DC2933074E00816151 /* close_code.h in Headers */, + F3F7D8F42933074E00816151 /* SDL_platform.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7323,7 +7077,6 @@ A7D88ABF23E2437C00DCD162 /* Sources */, A7D88B4623E2437C00DCD162 /* Frameworks */, A75FDB9F23E4CAFA00529352 /* Embed Frameworks */, - F3ED8107281DB8E600C33C5B /* Convert SDL includes to SDL Framework includes */, ); buildRules = ( ); @@ -7345,7 +7098,6 @@ A7D88C7823E24BED00DCD162 /* Sources */, A7D88D0423E24BED00DCD162 /* Frameworks */, A75FDBA223E4CAFF00529352 /* Embed Frameworks */, - F3ED8108281DB8F200C33C5B /* Convert SDL includes to SDL Framework includes */, ); buildRules = ( ); @@ -7387,7 +7139,6 @@ BECDF62C0761BA81005FE872 /* Sources */, BECDF6680761BA81005FE872 /* Frameworks */, A75FDB9C23E4CAEF00529352 /* Embed Frameworks */, - F3ED8106281DB8A500C33C5B /* Convert SDL includes to SDL Framework includes */, ); buildRules = ( ); @@ -7630,60 +7381,6 @@ shellPath = /bin/sh; shellScript = "# Build an xcframework with both device and simulator files for all platforms.\n# Adapted from an answer in\n# https://developer.apple.com/forums/thread/666335?answerId=685927022#685927022\n\nif [ \"$XCODE_VERSION_ACTUAL\" -lt 1100 ]\nthen\n\techo \"error: Building an xcframework requires Xcode 11 minimum.\"\n\texit 1\nfi\n\nSCHEME_NAME=\"Framework-iOS\"\nFRAMEWORK_NAME=\"SDL3\"\nPROJECT_NAME=\"SDL\"\n\nSIMULATOR_ARCHIVE_PATH=\"${BUILD_DIR}/${CONFIGURATION}/${FRAMEWORK_NAME}-iphonesimulator.xcarchive\"\nDEVICE_ARCHIVE_PATH=\"${BUILD_DIR}/${CONFIGURATION}/${FRAMEWORK_NAME}-iphoneos.xcarchive\"\n\nOUTPUT_DIR=\"./Products/\"\n\n# Simulator xcarchive (arm64, i386, x86_64)\nxcodebuild archive \\\n\tONLY_ACTIVE_ARCH=NO \\\n\t-scheme ${SCHEME_NAME} \\\n\t-project \"${PROJECT_NAME}.xcodeproj\" \\\n\t-archivePath ${SIMULATOR_ARCHIVE_PATH} \\\n\t-sdk iphonesimulator \\\n\tBUILD_LIBRARY_FOR_DISTRIBUTION=YES \\\n\tSKIP_INSTALL=NO\n\n# Device xcarchive (arm64, armv7)\nxcodebuild archive \\\n\t-scheme ${SCHEME_NAME} \\\n\t-project \"${PROJECT_NAME}.xcodeproj\" \\\n\t-archivePath ${DEVICE_ARCHIVE_PATH} \\\n\t-sdk iphoneos \\\n\tBUILD_LIBRARY_FOR_DISTRIBUTION=YES \\\n\tSKIP_INSTALL=NO\n\n# Clean-up any existing instance of this xcframework from the Products directory\nrm -rf \"${OUTPUT_DIR}${FRAMEWORK_NAME}.xcframework\"\n\n# Create final xcframework\nxcodebuild -create-xcframework \\\n\t-framework \"${DEVICE_ARCHIVE_PATH}\"/Products/Library/Frameworks/${FRAMEWORK_NAME}.framework \\\n\t-framework \"${SIMULATOR_ARCHIVE_PATH}\"/Products/Library/Frameworks/${FRAMEWORK_NAME}.framework \\\n\t-output ${OUTPUT_DIR}/${FRAMEWORK_NAME}.xcframework\n\n# Ensure git doesn't pick up on our Products folder. \nrm -rf ${OUTPUT_DIR}/.gitignore\necho \"*\" >> ${OUTPUT_DIR}/.gitignore\n"; }; - F3ED8106281DB8A500C33C5B /* Convert SDL includes to SDL Framework includes */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Convert SDL includes to SDL Framework includes"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$BUILT_PRODUCTS_DIR/$PUBLIC_HEADERS_FOLDER_PATH\"\nsed -i '' -e 's,#include \"\\(.*\\)\",#include ,' *.h\n"; - }; - F3ED8107281DB8E600C33C5B /* Convert SDL includes to SDL Framework includes */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Convert SDL includes to SDL Framework includes"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$BUILT_PRODUCTS_DIR/$PUBLIC_HEADERS_FOLDER_PATH\"\nsed -i '' -e 's,#include \"\\(.*\\)\",#include ,' *.h\n"; - }; - F3ED8108281DB8F200C33C5B /* Convert SDL includes to SDL Framework includes */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Convert SDL includes to SDL Framework includes"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$BUILT_PRODUCTS_DIR/$PUBLIC_HEADERS_FOLDER_PATH\"\nsed -i '' -e 's,#include \"\\(.*\\)\",#include ,' *.h\n"; - }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ diff --git a/build-scripts/showrev.sh b/build-scripts/showrev.sh index a061df423..98bb335b2 100755 --- a/build-scripts/showrev.sh +++ b/build-scripts/showrev.sh @@ -10,9 +10,9 @@ if [ -e ./VERSION.txt ]; then exit 0 fi -major=$(sed -ne 's/^#define SDL_MAJOR_VERSION *//p' include/SDL_version.h) -minor=$(sed -ne 's/^#define SDL_MINOR_VERSION *//p' include/SDL_version.h) -micro=$(sed -ne 's/^#define SDL_PATCHLEVEL *//p' include/SDL_version.h) +major=$(sed -ne 's/^#define SDL_MAJOR_VERSION *//p' include/SDL3/SDL_version.h) +minor=$(sed -ne 's/^#define SDL_MINOR_VERSION *//p' include/SDL3/SDL_version.h) +micro=$(sed -ne 's/^#define SDL_PATCHLEVEL *//p' include/SDL3/SDL_version.h) version="${major}.${minor}.${micro}" if [ -x "$(command -v git)" ]; then diff --git a/build-scripts/test-versioning.sh b/build-scripts/test-versioning.sh index ddafdc7ae..d766d06f9 100755 --- a/build-scripts/test-versioning.sh +++ b/build-scripts/test-versioning.sh @@ -6,9 +6,9 @@ set -eu cd `dirname $0`/.. -ref_major=$(sed -ne 's/^#define SDL_MAJOR_VERSION *//p' include/SDL_version.h) -ref_minor=$(sed -ne 's/^#define SDL_MINOR_VERSION *//p' include/SDL_version.h) -ref_micro=$(sed -ne 's/^#define SDL_PATCHLEVEL *//p' include/SDL_version.h) +ref_major=$(sed -ne 's/^#define SDL_MAJOR_VERSION *//p' include/SDL3/SDL_version.h) +ref_minor=$(sed -ne 's/^#define SDL_MINOR_VERSION *//p' include/SDL3/SDL_version.h) +ref_micro=$(sed -ne 's/^#define SDL_PATCHLEVEL *//p' include/SDL3/SDL_version.h) ref_version="${ref_major}.${ref_minor}.${ref_micro}" tests=0 diff --git a/build-scripts/update-version.sh b/build-scripts/update-version.sh index 47843bcd8..871102efe 100755 --- a/build-scripts/update-version.sh +++ b/build-scripts/update-version.sh @@ -62,9 +62,9 @@ perl -w -pi -e 's/\A(.* SDL_MAJOR_VERSION = )\d+/${1}'$MAJOR'/;' android-project perl -w -pi -e 's/\A(.* SDL_MINOR_VERSION = )\d+/${1}'$MINOR'/;' android-project/app/src/main/java/org/libsdl/app/SDLActivity.java perl -w -pi -e 's/\A(.* SDL_MICRO_VERSION = )\d+/${1}'$PATCH'/;' android-project/app/src/main/java/org/libsdl/app/SDLActivity.java -perl -w -pi -e 's/(\#define SDL_MAJOR_VERSION\s+)\d+/${1}'$MAJOR'/;' include/SDL_version.h -perl -w -pi -e 's/(\#define SDL_MINOR_VERSION\s+)\d+/${1}'$MINOR'/;' include/SDL_version.h -perl -w -pi -e 's/(\#define SDL_PATCHLEVEL\s+)\d+/${1}'$PATCH'/;' include/SDL_version.h +perl -w -pi -e 's/(\#define SDL_MAJOR_VERSION\s+)\d+/${1}'$MAJOR'/;' include/SDL3/SDL_version.h +perl -w -pi -e 's/(\#define SDL_MINOR_VERSION\s+)\d+/${1}'$MINOR'/;' include/SDL3/SDL_version.h +perl -w -pi -e 's/(\#define SDL_PATCHLEVEL\s+)\d+/${1}'$PATCH'/;' include/SDL3/SDL_version.h perl -w -pi -e 's/(FILEVERSION\s+)\d+,\d+,\d+/${1}'$MAJOR','$MINOR','$PATCH'/;' src/main/windows/version.rc perl -w -pi -e 's/(PRODUCTVERSION\s+)\d+,\d+,\d+/${1}'$MAJOR','$MINOR','$PATCH'/;' src/main/windows/version.rc diff --git a/build-scripts/updaterev.sh b/build-scripts/updaterev.sh index cc8638210..b2ba5d65b 100755 --- a/build-scripts/updaterev.sh +++ b/build-scripts/updaterev.sh @@ -5,7 +5,7 @@ outdir=`pwd` cd `dirname $0` srcdir=.. -header=$outdir/include/SDL_revision.h +header=$outdir/include/SDL3/SDL_revision.h dist= vendor= diff --git a/docs/README-migration.md b/docs/README-migration.md index 44b182777..3432b5475 100644 --- a/docs/README-migration.md +++ b/docs/README-migration.md @@ -4,6 +4,8 @@ This guide provides useful information for migrating applications from SDL 2.0 t We have provided a handy Python script to automate some of this work for you [link to script], and details on the changes are organized by SDL 2.0 header below. +SDL headers should now be included as `#include `. Typically that's the only header you'll need in your application unless you are using OpenGL or Vulkan functionality. + ## SDL_platform.h diff --git a/include/SDL.h b/include/SDL3/SDL.h similarity index 83% rename from include/SDL.h rename to include/SDL3/SDL.h index 946ff158f..daeb8d820 100644 --- a/include/SDL.h +++ b/include/SDL3/SDL.h @@ -29,42 +29,56 @@ #ifndef SDL_h_ #define SDL_h_ -#include "SDL_main.h" -#include "SDL_stdinc.h" -#include "SDL_assert.h" -#include "SDL_atomic.h" -#include "SDL_audio.h" -#include "SDL_clipboard.h" -#include "SDL_cpuinfo.h" -#include "SDL_endian.h" -#include "SDL_error.h" -#include "SDL_events.h" -#include "SDL_filesystem.h" -#include "SDL_gamecontroller.h" -#include "SDL_guid.h" -#include "SDL_haptic.h" -#include "SDL_hidapi.h" -#include "SDL_hints.h" -#include "SDL_joystick.h" -#include "SDL_loadso.h" -#include "SDL_log.h" -#include "SDL_messagebox.h" -#include "SDL_metal.h" -#include "SDL_mutex.h" -#include "SDL_power.h" -#include "SDL_render.h" -#include "SDL_rwops.h" -#include "SDL_sensor.h" -#include "SDL_shape.h" -#include "SDL_system.h" -#include "SDL_thread.h" -#include "SDL_timer.h" -#include "SDL_version.h" -#include "SDL_video.h" -#include "SDL_locale.h" -#include "SDL_misc.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -226,7 +240,7 @@ extern DECLSPEC void SDLCALL SDL_Quit(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_h_ */ diff --git a/include/SDL_assert.h b/include/SDL3/SDL_assert.h similarity index 99% rename from include/SDL_assert.h rename to include/SDL3/SDL_assert.h index 15709e692..1250e02df 100644 --- a/include/SDL_assert.h +++ b/include/SDL3/SDL_assert.h @@ -22,9 +22,9 @@ #ifndef SDL_assert_h_ #define SDL_assert_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -319,7 +319,7 @@ extern DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_assert_h_ */ diff --git a/include/SDL_atomic.h b/include/SDL3/SDL_atomic.h similarity index 99% rename from include/SDL_atomic.h rename to include/SDL3/SDL_atomic.h index 09c8a7c67..a4bc3fea1 100644 --- a/include/SDL_atomic.h +++ b/include/SDL3/SDL_atomic.h @@ -59,10 +59,10 @@ #ifndef SDL_atomic_h_ #define SDL_atomic_h_ -#include "SDL_stdinc.h" -#include "SDL_platform.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus @@ -403,7 +403,7 @@ extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void **a); } #endif -#include "close_code.h" +#include #endif /* SDL_atomic_h_ */ diff --git a/include/SDL_audio.h b/include/SDL3/SDL_audio.h similarity index 99% rename from include/SDL_audio.h rename to include/SDL3/SDL_audio.h index a5d4ef8bf..73415d3c0 100644 --- a/include/SDL_audio.h +++ b/include/SDL3/SDL_audio.h @@ -30,14 +30,14 @@ #ifndef SDL_audio_h_ #define SDL_audio_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_endian.h" -#include "SDL_mutex.h" -#include "SDL_thread.h" -#include "SDL_rwops.h" +#include +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1493,7 +1493,7 @@ extern DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID dev); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_audio_h_ */ diff --git a/include/SDL_bits.h b/include/SDL3/SDL_bits.h similarity index 97% rename from include/SDL_bits.h rename to include/SDL3/SDL_bits.h index 22cb85314..34a51aa6f 100644 --- a/include/SDL_bits.h +++ b/include/SDL3/SDL_bits.h @@ -28,9 +28,9 @@ #ifndef SDL_bits_h_ #define SDL_bits_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -119,7 +119,7 @@ SDL_HasExactlyOneBitSet32(Uint32 x) #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_bits_h_ */ diff --git a/include/SDL_blendmode.h b/include/SDL3/SDL_blendmode.h similarity index 99% rename from include/SDL_blendmode.h rename to include/SDL3/SDL_blendmode.h index 0df3d1456..ffe96916a 100644 --- a/include/SDL_blendmode.h +++ b/include/SDL3/SDL_blendmode.h @@ -28,7 +28,7 @@ #ifndef SDL_blendmode_h_ #define SDL_blendmode_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -191,7 +191,7 @@ extern DECLSPEC SDL_BlendMode SDLCALL SDL_ComposeCustomBlendMode(SDL_BlendFactor #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_blendmode_h_ */ diff --git a/include/SDL_clipboard.h b/include/SDL3/SDL_clipboard.h similarity index 97% rename from include/SDL_clipboard.h rename to include/SDL3/SDL_clipboard.h index 29be3b891..7cbd812a5 100644 --- a/include/SDL_clipboard.h +++ b/include/SDL3/SDL_clipboard.h @@ -28,9 +28,9 @@ #ifndef SDL_clipboard_h_ #define SDL_clipboard_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -134,7 +134,7 @@ extern DECLSPEC SDL_bool SDLCALL SDL_HasPrimarySelectionText(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_clipboard_h_ */ diff --git a/include/SDL_copying.h b/include/SDL3/SDL_copying.h similarity index 100% rename from include/SDL_copying.h rename to include/SDL3/SDL_copying.h diff --git a/include/SDL_cpuinfo.h b/include/SDL3/SDL_cpuinfo.h similarity index 99% rename from include/SDL_cpuinfo.h rename to include/SDL3/SDL_cpuinfo.h index 44cbebb23..b395c4449 100644 --- a/include/SDL_cpuinfo.h +++ b/include/SDL3/SDL_cpuinfo.h @@ -28,7 +28,7 @@ #ifndef SDL_cpuinfo_h_ #define SDL_cpuinfo_h_ -#include "SDL_stdinc.h" +#include /* Need to do this here because intrin.h has C++ code in it */ /* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ @@ -124,7 +124,7 @@ _m_prefetch(void *__P) #endif #endif /* HAVE_IMMINTRIN_H */ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -587,7 +587,7 @@ extern DECLSPEC void SDLCALL SDL_SIMDFree(void *ptr); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_cpuinfo_h_ */ diff --git a/include/SDL_egl.h b/include/SDL3/SDL_egl.h similarity index 100% rename from include/SDL_egl.h rename to include/SDL3/SDL_egl.h diff --git a/include/SDL_endian.h b/include/SDL3/SDL_endian.h similarity index 99% rename from include/SDL_endian.h rename to include/SDL3/SDL_endian.h index f12ec119f..7f8be9142 100644 --- a/include/SDL_endian.h +++ b/include/SDL3/SDL_endian.h @@ -28,7 +28,7 @@ #ifndef SDL_endian_h_ #define SDL_endian_h_ -#include "SDL_stdinc.h" +#include #if defined(_MSC_VER) && (_MSC_VER >= 1400) /* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, @@ -110,7 +110,7 @@ _m_prefetch(void *__P) #endif /* !SDL_FLOATWORDORDER */ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -341,7 +341,7 @@ SDL_SwapFloat(float x) #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_endian_h_ */ diff --git a/include/SDL_error.h b/include/SDL3/SDL_error.h similarity index 98% rename from include/SDL_error.h rename to include/SDL3/SDL_error.h index e4fda71d6..acbbeaa0d 100644 --- a/include/SDL_error.h +++ b/include/SDL3/SDL_error.h @@ -28,9 +28,9 @@ #ifndef SDL_error_h_ #define SDL_error_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -156,7 +156,7 @@ extern DECLSPEC int SDLCALL SDL_Error(SDL_errorcode code); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_error_h_ */ diff --git a/include/SDL_events.h b/include/SDL3/SDL_events.h similarity index 99% rename from include/SDL_events.h rename to include/SDL3/SDL_events.h index 599ec9069..0e110fdfe 100644 --- a/include/SDL_events.h +++ b/include/SDL3/SDL_events.h @@ -28,18 +28,18 @@ #ifndef SDL_events_h_ #define SDL_events_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_video.h" -#include "SDL_keyboard.h" -#include "SDL_mouse.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" -#include "SDL_quit.h" -#include "SDL_gesture.h" -#include "SDL_touch.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1159,7 +1159,7 @@ extern DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_events_h_ */ diff --git a/include/SDL_filesystem.h b/include/SDL3/SDL_filesystem.h similarity index 98% rename from include/SDL_filesystem.h rename to include/SDL3/SDL_filesystem.h index 89ced08b8..bba7aee50 100644 --- a/include/SDL_filesystem.h +++ b/include/SDL3/SDL_filesystem.h @@ -28,9 +28,9 @@ #ifndef SDL_filesystem_h_ #define SDL_filesystem_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus @@ -142,7 +142,7 @@ extern DECLSPEC char *SDLCALL SDL_GetPrefPath(const char *org, const char *app); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_filesystem_h_ */ diff --git a/include/SDL_gamecontroller.h b/include/SDL3/SDL_gamecontroller.h similarity index 99% rename from include/SDL_gamecontroller.h rename to include/SDL3/SDL_gamecontroller.h index 66373a802..976ae17f2 100644 --- a/include/SDL_gamecontroller.h +++ b/include/SDL3/SDL_gamecontroller.h @@ -28,13 +28,13 @@ #ifndef SDL_gamecontroller_h_ #define SDL_gamecontroller_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_rwops.h" -#include "SDL_sensor.h" -#include "SDL_joystick.h" +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1067,7 +1067,7 @@ extern DECLSPEC const char* SDLCALL SDL_GameControllerGetAppleSFSymbolsNameForAx #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_gamecontroller_h_ */ diff --git a/include/SDL_gesture.h b/include/SDL3/SDL_gesture.h similarity index 95% rename from include/SDL_gesture.h rename to include/SDL3/SDL_gesture.h index 7ba2dcba6..bb45d612a 100644 --- a/include/SDL_gesture.h +++ b/include/SDL3/SDL_gesture.h @@ -28,14 +28,14 @@ #ifndef SDL_gesture_h_ #define SDL_gesture_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_video.h" +#include +#include +#include -#include "SDL_touch.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -110,7 +110,7 @@ extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWo #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_gesture_h_ */ diff --git a/include/SDL_guid.h b/include/SDL3/SDL_guid.h similarity index 96% rename from include/SDL_guid.h rename to include/SDL3/SDL_guid.h index 3b4d372a4..b4383cad5 100644 --- a/include/SDL_guid.h +++ b/include/SDL3/SDL_guid.h @@ -28,10 +28,10 @@ #ifndef SDL_guid_h_ #define SDL_guid_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -93,7 +93,7 @@ extern DECLSPEC SDL_GUID SDLCALL SDL_GUIDFromString(const char *pchGUID); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_guid_h_ */ diff --git a/include/SDL_haptic.h b/include/SDL3/SDL_haptic.h similarity index 99% rename from include/SDL_haptic.h rename to include/SDL3/SDL_haptic.h index 9161152da..38ef69fa3 100644 --- a/include/SDL_haptic.h +++ b/include/SDL3/SDL_haptic.h @@ -107,11 +107,11 @@ #ifndef SDL_haptic_h_ #define SDL_haptic_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_joystick.h" +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1334,7 +1334,7 @@ extern DECLSPEC int SDLCALL SDL_HapticRumbleStop(SDL_Haptic * haptic); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_haptic_h_ */ diff --git a/include/SDL_hidapi.h b/include/SDL3/SDL_hidapi.h similarity index 99% rename from include/SDL_hidapi.h rename to include/SDL3/SDL_hidapi.h index 393053b2d..968e7091c 100644 --- a/include/SDL_hidapi.h +++ b/include/SDL3/SDL_hidapi.h @@ -62,9 +62,9 @@ #ifndef SDL_hidapi_h_ #define SDL_hidapi_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -444,7 +444,7 @@ extern DECLSPEC void SDLCALL SDL_hid_ble_scan(SDL_bool active); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_hidapi_h_ */ diff --git a/include/SDL_hints.h b/include/SDL3/SDL_hints.h similarity index 99% rename from include/SDL_hints.h rename to include/SDL3/SDL_hints.h index 8970efb0e..7662597af 100644 --- a/include/SDL_hints.h +++ b/include/SDL3/SDL_hints.h @@ -39,9 +39,9 @@ #ifndef SDL_hints_h_ #define SDL_hints_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -2566,7 +2566,7 @@ extern DECLSPEC void SDLCALL SDL_ClearHints(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_hints_h_ */ diff --git a/include/SDL_joystick.h b/include/SDL3/SDL_joystick.h similarity index 99% rename from include/SDL_joystick.h rename to include/SDL3/SDL_joystick.h index 63b04ce2c..418b833fd 100644 --- a/include/SDL_joystick.h +++ b/include/SDL3/SDL_joystick.h @@ -41,11 +41,11 @@ #ifndef SDL_joystick_h_ #define SDL_joystick_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_guid.h" +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1059,7 +1059,7 @@ extern DECLSPEC SDL_JoystickPowerLevel SDLCALL SDL_JoystickCurrentPowerLevel(SDL #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_joystick_h_ */ diff --git a/include/SDL_keyboard.h b/include/SDL3/SDL_keyboard.h similarity index 98% rename from include/SDL_keyboard.h rename to include/SDL3/SDL_keyboard.h index cf296f239..bc4599371 100644 --- a/include/SDL_keyboard.h +++ b/include/SDL3/SDL_keyboard.h @@ -28,12 +28,12 @@ #ifndef SDL_keyboard_h_ #define SDL_keyboard_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_keycode.h" -#include "SDL_video.h" +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -346,7 +346,7 @@ extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenKeyboardShown(SDL_Window *window); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_keyboard_h_ */ diff --git a/include/SDL_keycode.h b/include/SDL3/SDL_keycode.h similarity index 99% rename from include/SDL_keycode.h rename to include/SDL3/SDL_keycode.h index 65420f29f..cbf204998 100644 --- a/include/SDL_keycode.h +++ b/include/SDL3/SDL_keycode.h @@ -28,8 +28,8 @@ #ifndef SDL_keycode_h_ #define SDL_keycode_h_ -#include "SDL_stdinc.h" -#include "SDL_scancode.h" +#include +#include /** * \brief The SDL virtual key representation. diff --git a/include/SDL_loadso.h b/include/SDL3/SDL_loadso.h similarity index 97% rename from include/SDL_loadso.h rename to include/SDL3/SDL_loadso.h index e8b248501..b2b57aa4a 100644 --- a/include/SDL_loadso.h +++ b/include/SDL3/SDL_loadso.h @@ -41,10 +41,10 @@ #ifndef SDL_loadso_h_ #define SDL_loadso_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -108,7 +108,7 @@ extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_loadso_h_ */ diff --git a/include/SDL_locale.h b/include/SDL3/SDL_locale.h similarity index 96% rename from include/SDL_locale.h rename to include/SDL3/SDL_locale.h index 97ae11d81..9a0444c27 100644 --- a/include/SDL_locale.h +++ b/include/SDL3/SDL_locale.h @@ -28,10 +28,10 @@ #ifndef _SDL_locale_h #define _SDL_locale_h -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus /* *INDENT-OFF* */ @@ -96,7 +96,7 @@ extern DECLSPEC SDL_Locale * SDLCALL SDL_GetPreferredLocales(void); } /* *INDENT-ON* */ #endif -#include "close_code.h" +#include #endif /* _SDL_locale_h */ diff --git a/include/SDL_log.h b/include/SDL3/SDL_log.h similarity index 99% rename from include/SDL_log.h rename to include/SDL3/SDL_log.h index 522a9843d..394c64e2e 100644 --- a/include/SDL_log.h +++ b/include/SDL3/SDL_log.h @@ -37,9 +37,9 @@ #ifndef SDL_log_h_ #define SDL_log_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -397,7 +397,7 @@ extern DECLSPEC void SDLCALL SDL_LogSetOutputFunction(SDL_LogOutputFunction call #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_log_h_ */ diff --git a/include/SDL_main.h b/include/SDL3/SDL_main.h similarity index 98% rename from include/SDL_main.h rename to include/SDL3/SDL_main.h index c4dc1e25d..01dfe0391 100644 --- a/include/SDL_main.h +++ b/include/SDL3/SDL_main.h @@ -22,7 +22,7 @@ #ifndef SDL_main_h_ #define SDL_main_h_ -#include "SDL_stdinc.h" +#include /** * \file SDL_main.h @@ -134,7 +134,7 @@ #define main SDL_main #endif -#include "begin_code.h" +#include #ifdef __cplusplus extern "C" { #endif @@ -266,7 +266,7 @@ extern DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_main_h_ */ diff --git a/include/SDL_messagebox.h b/include/SDL3/SDL_messagebox.h similarity index 97% rename from include/SDL_messagebox.h rename to include/SDL3/SDL_messagebox.h index d6c01a5d1..6061ebebc 100644 --- a/include/SDL_messagebox.h +++ b/include/SDL3/SDL_messagebox.h @@ -22,10 +22,10 @@ #ifndef SDL_messagebox_h_ #define SDL_messagebox_h_ -#include "SDL_stdinc.h" -#include "SDL_video.h" /* For SDL_Window */ +#include +#include /* For SDL_Window */ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -186,7 +186,7 @@ extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *t #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_messagebox_h_ */ diff --git a/include/SDL_metal.h b/include/SDL3/SDL_metal.h similarity index 97% rename from include/SDL_metal.h rename to include/SDL3/SDL_metal.h index da6f99191..398c3ac86 100644 --- a/include/SDL_metal.h +++ b/include/SDL3/SDL_metal.h @@ -28,9 +28,9 @@ #ifndef SDL_metal_h_ #define SDL_metal_h_ -#include "SDL_video.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -108,6 +108,6 @@ extern DECLSPEC void SDLCALL SDL_Metal_GetDrawableSize(SDL_Window* window, int * #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_metal_h_ */ diff --git a/include/SDL_misc.h b/include/SDL3/SDL_misc.h similarity index 96% rename from include/SDL_misc.h rename to include/SDL3/SDL_misc.h index 84644ba1f..a3381c10f 100644 --- a/include/SDL_misc.h +++ b/include/SDL3/SDL_misc.h @@ -28,9 +28,9 @@ #ifndef SDL_misc_h_ #define SDL_misc_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus @@ -72,7 +72,7 @@ extern DECLSPEC int SDLCALL SDL_OpenURL(const char *url); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_misc_h_ */ diff --git a/include/SDL_mouse.h b/include/SDL3/SDL_mouse.h similarity index 99% rename from include/SDL_mouse.h rename to include/SDL3/SDL_mouse.h index c5f9a9613..1169deb28 100644 --- a/include/SDL_mouse.h +++ b/include/SDL3/SDL_mouse.h @@ -28,11 +28,11 @@ #ifndef SDL_mouse_h_ #define SDL_mouse_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_video.h" +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -460,7 +460,7 @@ extern DECLSPEC int SDLCALL SDL_ShowCursor(int toggle); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_mouse_h_ */ diff --git a/include/SDL_mutex.h b/include/SDL3/SDL_mutex.h similarity index 99% rename from include/SDL_mutex.h rename to include/SDL3/SDL_mutex.h index a855c97f4..d27463add 100644 --- a/include/SDL_mutex.h +++ b/include/SDL3/SDL_mutex.h @@ -28,10 +28,10 @@ * Functions to provide thread synchronization primitives. */ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -464,7 +464,7 @@ extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond * cond, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_mutex_h_ */ diff --git a/include/SDL_name.h b/include/SDL3/SDL_name.h similarity index 100% rename from include/SDL_name.h rename to include/SDL3/SDL_name.h diff --git a/include/SDL_opengl.h b/include/SDL3/SDL_opengl.h similarity index 99% rename from include/SDL_opengl.h rename to include/SDL3/SDL_opengl.h index 3b1165c5c..47987e2dc 100644 --- a/include/SDL_opengl.h +++ b/include/SDL3/SDL_opengl.h @@ -35,7 +35,7 @@ #ifndef SDL_opengl_h_ #define SDL_opengl_h_ -#include "SDL_platform.h" +#include #ifndef __IOS__ /* No OpenGL on iOS. */ @@ -69,7 +69,7 @@ #define __gl_h_ #if defined(USE_MGL_NAMESPACE) -#include "gl_mangle.h" +#include #endif @@ -2095,7 +2095,7 @@ typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLsh * defined in gl.h). Otherwise, extensions will be included from glext.h. */ #if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) -#include "SDL_opengl_glext.h" +#include #endif /* GL_GLEXT_LEGACY */ diff --git a/include/SDL_opengl_glext.h b/include/SDL3/SDL_opengl_glext.h similarity index 100% rename from include/SDL_opengl_glext.h rename to include/SDL3/SDL_opengl_glext.h diff --git a/include/SDL_opengles.h b/include/SDL3/SDL_opengles.h similarity index 97% rename from include/SDL_opengles.h rename to include/SDL3/SDL_opengles.h index 7c3826210..37cb983ea 100644 --- a/include/SDL_opengles.h +++ b/include/SDL3/SDL_opengles.h @@ -24,7 +24,7 @@ * * This is a simple file to encapsulate the OpenGL ES 1.X API headers. */ -#include "SDL_platform.h" +#include #ifdef __IOS__ #include diff --git a/include/SDL_opengles2.h b/include/SDL3/SDL_opengles2.h similarity index 88% rename from include/SDL_opengles2.h rename to include/SDL3/SDL_opengles2.h index 786925b41..616c3ad2a 100644 --- a/include/SDL_opengles2.h +++ b/include/SDL3/SDL_opengles2.h @@ -24,7 +24,7 @@ * * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. */ -#include "SDL_platform.h" +#include #if !defined(_MSC_VER) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) @@ -40,10 +40,10 @@ #else /* _MSC_VER */ /* OpenGL ES2 headers for Visual Studio */ -#include "SDL_opengles2_khrplatform.h" -#include "SDL_opengles2_gl2platform.h" -#include "SDL_opengles2_gl2.h" -#include "SDL_opengles2_gl2ext.h" +#include +#include +#include +#include #endif /* _MSC_VER */ diff --git a/include/SDL_opengles2_gl2.h b/include/SDL3/SDL_opengles2_gl2.h similarity index 100% rename from include/SDL_opengles2_gl2.h rename to include/SDL3/SDL_opengles2_gl2.h diff --git a/include/SDL_opengles2_gl2ext.h b/include/SDL3/SDL_opengles2_gl2ext.h similarity index 100% rename from include/SDL_opengles2_gl2ext.h rename to include/SDL3/SDL_opengles2_gl2ext.h diff --git a/include/SDL_opengles2_gl2platform.h b/include/SDL3/SDL_opengles2_gl2platform.h similarity index 100% rename from include/SDL_opengles2_gl2platform.h rename to include/SDL3/SDL_opengles2_gl2platform.h diff --git a/include/SDL_opengles2_khrplatform.h b/include/SDL3/SDL_opengles2_khrplatform.h similarity index 100% rename from include/SDL_opengles2_khrplatform.h rename to include/SDL3/SDL_opengles2_khrplatform.h diff --git a/include/SDL_pixels.h b/include/SDL3/SDL_pixels.h similarity index 99% rename from include/SDL_pixels.h rename to include/SDL3/SDL_pixels.h index 0130d1718..e44d0ea7c 100644 --- a/include/SDL_pixels.h +++ b/include/SDL3/SDL_pixels.h @@ -28,10 +28,10 @@ #ifndef SDL_pixels_h_ #define SDL_pixels_h_ -#include "SDL_stdinc.h" -#include "SDL_endian.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -625,7 +625,7 @@ extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_pixels_h_ */ diff --git a/include/SDL_platform.h b/include/SDL3/SDL_platform.h similarity index 99% rename from include/SDL_platform.h rename to include/SDL3/SDL_platform.h index b10b5b6fc..3b4d7fc7d 100644 --- a/include/SDL_platform.h +++ b/include/SDL3/SDL_platform.h @@ -207,7 +207,7 @@ #define __3DS__ 1 #endif -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -235,7 +235,7 @@ extern DECLSPEC const char * SDLCALL SDL_GetPlatform (void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_platform_h_ */ diff --git a/include/SDL_power.h b/include/SDL3/SDL_power.h similarity index 97% rename from include/SDL_power.h rename to include/SDL3/SDL_power.h index a1d4efade..48884f370 100644 --- a/include/SDL_power.h +++ b/include/SDL3/SDL_power.h @@ -28,9 +28,9 @@ * Header for the SDL power management routines. */ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -81,7 +81,7 @@ extern DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *secs, int *pct); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_power_h_ */ diff --git a/include/SDL_quit.h b/include/SDL3/SDL_quit.h similarity index 97% rename from include/SDL_quit.h rename to include/SDL3/SDL_quit.h index 4090f7f19..470406590 100644 --- a/include/SDL_quit.h +++ b/include/SDL3/SDL_quit.h @@ -28,8 +28,8 @@ #ifndef SDL_quit_h_ #define SDL_quit_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include /** * \file SDL_quit.h diff --git a/include/SDL_rect.h b/include/SDL3/SDL_rect.h similarity index 98% rename from include/SDL_rect.h rename to include/SDL3/SDL_rect.h index 5d2965d93..81226239b 100644 --- a/include/SDL_rect.h +++ b/include/SDL3/SDL_rect.h @@ -28,12 +28,12 @@ #ifndef SDL_rect_h_ #define SDL_rect_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_pixels.h" -#include "SDL_rwops.h" +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -369,7 +369,7 @@ extern DECLSPEC SDL_bool SDLCALL SDL_IntersectFRectAndLine(const SDL_FRect * #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_rect_h_ */ diff --git a/include/SDL_render.h b/include/SDL3/SDL_render.h similarity index 99% rename from include/SDL_render.h rename to include/SDL3/SDL_render.h index 657f2d4dc..1fac04152 100644 --- a/include/SDL_render.h +++ b/include/SDL3/SDL_render.h @@ -48,11 +48,11 @@ #ifndef SDL_render_h_ #define SDL_render_h_ -#include "SDL_stdinc.h" -#include "SDL_rect.h" -#include "SDL_video.h" +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -1912,7 +1912,7 @@ extern DECLSPEC int SDLCALL SDL_RenderSetVSync(SDL_Renderer* renderer, int vsync #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_render_h_ */ diff --git a/include/SDL_revision.h b/include/SDL3/SDL_revision.h similarity index 100% rename from include/SDL_revision.h rename to include/SDL3/SDL_revision.h diff --git a/include/SDL_rwops.h b/include/SDL3/SDL_rwops.h similarity index 99% rename from include/SDL_rwops.h rename to include/SDL3/SDL_rwops.h index ef6a1807c..d8fb1dd3a 100644 --- a/include/SDL_rwops.h +++ b/include/SDL3/SDL_rwops.h @@ -29,10 +29,10 @@ #ifndef SDL_rwops_h_ #define SDL_rwops_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -785,7 +785,7 @@ extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_rwops_h_ */ diff --git a/include/SDL_scancode.h b/include/SDL3/SDL_scancode.h similarity index 99% rename from include/SDL_scancode.h rename to include/SDL3/SDL_scancode.h index 17e8fe2fd..de4d83284 100644 --- a/include/SDL_scancode.h +++ b/include/SDL3/SDL_scancode.h @@ -28,7 +28,7 @@ #ifndef SDL_scancode_h_ #define SDL_scancode_h_ -#include "SDL_stdinc.h" +#include /** * \brief The SDL keyboard scancode representation. diff --git a/include/SDL_sensor.h b/include/SDL3/SDL_sensor.h similarity index 98% rename from include/SDL_sensor.h rename to include/SDL3/SDL_sensor.h index 0708ad963..0f31e43cd 100644 --- a/include/SDL_sensor.h +++ b/include/SDL3/SDL_sensor.h @@ -29,10 +29,10 @@ #ifndef SDL_sensor_h_ #define SDL_sensor_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus /* *INDENT-OFF* */ @@ -315,7 +315,7 @@ extern DECLSPEC void SDLCALL SDL_SensorUpdate(void); } /* *INDENT-ON* */ #endif -#include "close_code.h" +#include #endif /* SDL_sensor_h_ */ diff --git a/include/SDL_shape.h b/include/SDL3/SDL_shape.h similarity index 96% rename from include/SDL_shape.h rename to include/SDL3/SDL_shape.h index c03fe8bbc..dc284c0c6 100644 --- a/include/SDL_shape.h +++ b/include/SDL3/SDL_shape.h @@ -22,13 +22,13 @@ #ifndef SDL_shape_h_ #define SDL_shape_h_ -#include "SDL_stdinc.h" -#include "SDL_pixels.h" -#include "SDL_rect.h" -#include "SDL_surface.h" -#include "SDL_video.h" +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -150,6 +150,6 @@ extern DECLSPEC int SDLCALL SDL_GetShapedWindowMode(SDL_Window *window,SDL_Windo #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_shape_h_ */ diff --git a/include/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h similarity index 99% rename from include/SDL_stdinc.h rename to include/SDL3/SDL_stdinc.h index 93a0bfd5a..021d44dec 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -28,7 +28,7 @@ #ifndef SDL_stdinc_h_ #define SDL_stdinc_h_ -#include "SDL_platform.h" +#include #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #include @@ -367,7 +367,7 @@ SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ /** \endcond */ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -740,7 +740,7 @@ SDL_FORCE_INLINE int _SDL_size_add_overflow_builtin (size_t a, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_stdinc_h_ */ diff --git a/include/SDL_surface.h b/include/SDL3/SDL_surface.h similarity index 99% rename from include/SDL_surface.h rename to include/SDL3/SDL_surface.h index fdb1c8a89..7b7e979d2 100644 --- a/include/SDL_surface.h +++ b/include/SDL3/SDL_surface.h @@ -28,13 +28,13 @@ #ifndef SDL_surface_h_ #define SDL_surface_h_ -#include "SDL_stdinc.h" -#include "SDL_pixels.h" -#include "SDL_rect.h" -#include "SDL_blendmode.h" -#include "SDL_rwops.h" +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -990,7 +990,7 @@ extern DECLSPEC SDL_YUV_CONVERSION_MODE SDLCALL SDL_GetYUVConversionModeForResol #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_surface_h_ */ diff --git a/include/SDL_system.h b/include/SDL3/SDL_system.h similarity index 99% rename from include/SDL_system.h rename to include/SDL3/SDL_system.h index a5f5f4bb3..e3fdc8465 100644 --- a/include/SDL_system.h +++ b/include/SDL3/SDL_system.h @@ -28,12 +28,12 @@ #ifndef SDL_system_h_ #define SDL_system_h_ -#include "SDL_stdinc.h" -#include "SDL_keyboard.h" -#include "SDL_render.h" -#include "SDL_video.h" +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -616,7 +616,7 @@ extern DECLSPEC int SDLCALL SDL_GDKGetTaskQueue(XTaskQueueHandle * outTaskQueue) #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_system_h_ */ diff --git a/include/SDL_syswm.h b/include/SDL3/SDL_syswm.h similarity index 98% rename from include/SDL_syswm.h rename to include/SDL3/SDL_syswm.h index 271acfe4e..397cfeec0 100644 --- a/include/SDL_syswm.h +++ b/include/SDL3/SDL_syswm.h @@ -28,10 +28,10 @@ #ifndef SDL_syswm_h_ #define SDL_syswm_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_video.h" -#include "SDL_version.h" +#include +#include +#include +#include /** * \brief SDL_syswm.h @@ -57,7 +57,7 @@ */ struct SDL_SysWMinfo; -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -261,7 +261,7 @@ extern DECLSPEC int SDLCALL SDL_GetWindowWMInfo(SDL_Window *window, SDL_SysWMinf #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_syswm_h_ */ diff --git a/include/SDL_test.h b/include/SDL3/SDL_test.h similarity index 76% rename from include/SDL_test.h rename to include/SDL3/SDL_test.h index ae4eb5b23..bf9da432f 100644 --- a/include/SDL_test.h +++ b/include/SDL3/SDL_test.h @@ -30,21 +30,21 @@ #ifndef SDL_test_h_ #define SDL_test_h_ -#include "SDL.h" -#include "SDL_test_assert.h" -#include "SDL_test_common.h" -#include "SDL_test_compare.h" -#include "SDL_test_crc32.h" -#include "SDL_test_font.h" -#include "SDL_test_fuzzer.h" -#include "SDL_test_harness.h" -#include "SDL_test_images.h" -#include "SDL_test_log.h" -#include "SDL_test_md5.h" -#include "SDL_test_memory.h" -#include "SDL_test_random.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -62,7 +62,7 @@ extern "C" { #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_h_ */ diff --git a/include/SDL_test_assert.h b/include/SDL3/SDL_test_assert.h similarity index 98% rename from include/SDL_test_assert.h rename to include/SDL3/SDL_test_assert.h index dd820edef..fe5117a2d 100644 --- a/include/SDL_test_assert.h +++ b/include/SDL3/SDL_test_assert.h @@ -36,7 +36,7 @@ #ifndef SDL_test_assert_h_ #define SDL_test_assert_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -98,7 +98,7 @@ int SDLTest_AssertSummaryToTestResult(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_assert_h_ */ diff --git a/include/SDL_test_common.h b/include/SDL3/SDL_test_common.h similarity index 98% rename from include/SDL_test_common.h rename to include/SDL3/SDL_test_common.h index 0d4307096..55d54ffce 100644 --- a/include/SDL_test_common.h +++ b/include/SDL3/SDL_test_common.h @@ -32,7 +32,7 @@ #ifndef SDL_test_common_h_ #define SDL_test_common_h_ -#include "SDL.h" +#include #if defined(__PSP__) #define DEFAULT_WINDOW_WIDTH 480 @@ -121,7 +121,7 @@ typedef struct } SDLTest_CommonState; -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -229,7 +229,7 @@ void SDLTest_CommonDrawWindowInfo(SDL_Renderer * renderer, SDL_Window * window, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_common_h_ */ diff --git a/include/SDL_test_compare.h b/include/SDL3/SDL_test_compare.h similarity index 94% rename from include/SDL_test_compare.h rename to include/SDL3/SDL_test_compare.h index 400a9da89..94ba6a1c1 100644 --- a/include/SDL_test_compare.h +++ b/include/SDL3/SDL_test_compare.h @@ -36,11 +36,11 @@ #ifndef SDL_test_compare_h_ #define SDL_test_compare_h_ -#include "SDL.h" +#include -#include "SDL_test_images.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -62,7 +62,7 @@ int SDLTest_CompareSurfaces(SDL_Surface *surface, SDL_Surface *referenceSurface, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_compare_h_ */ diff --git a/include/SDL_test_crc32.h b/include/SDL3/SDL_test_crc32.h similarity index 98% rename from include/SDL_test_crc32.h rename to include/SDL3/SDL_test_crc32.h index 86f6ce661..889d18bc7 100644 --- a/include/SDL_test_crc32.h +++ b/include/SDL3/SDL_test_crc32.h @@ -36,7 +36,7 @@ #ifndef SDL_test_crc32_h_ #define SDL_test_crc32_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -117,7 +117,7 @@ int SDLTest_Crc32Done(SDLTest_Crc32Context * crcContext); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_crc32_h_ */ diff --git a/include/SDL_test_font.h b/include/SDL3/SDL_test_font.h similarity index 98% rename from include/SDL_test_font.h rename to include/SDL3/SDL_test_font.h index 2f02ae937..b5539a7d2 100644 --- a/include/SDL_test_font.h +++ b/include/SDL3/SDL_test_font.h @@ -30,7 +30,7 @@ #ifndef SDL_test_font_h_ #define SDL_test_font_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -161,7 +161,7 @@ void SDLTest_CleanupTextDrawing(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_font_h_ */ diff --git a/include/SDL_test_fuzzer.h b/include/SDL3/SDL_test_fuzzer.h similarity index 99% rename from include/SDL_test_fuzzer.h rename to include/SDL3/SDL_test_fuzzer.h index ea0d14b2f..d6cc6864e 100644 --- a/include/SDL_test_fuzzer.h +++ b/include/SDL3/SDL_test_fuzzer.h @@ -36,7 +36,7 @@ #ifndef SDL_test_fuzzer_h_ #define SDL_test_fuzzer_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -379,7 +379,7 @@ int SDLTest_GetFuzzerInvocationCount(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_fuzzer_h_ */ diff --git a/include/SDL_test_harness.h b/include/SDL3/SDL_test_harness.h similarity index 98% rename from include/SDL_test_harness.h rename to include/SDL3/SDL_test_harness.h index 453fe336f..5d516afd9 100644 --- a/include/SDL_test_harness.h +++ b/include/SDL3/SDL_test_harness.h @@ -36,7 +36,7 @@ #ifndef SDL_test_h_arness_h #define SDL_test_h_arness_h -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -127,7 +127,7 @@ int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *user #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_h_arness_h */ diff --git a/include/SDL_test_images.h b/include/SDL3/SDL_test_images.h similarity index 96% rename from include/SDL_test_images.h rename to include/SDL3/SDL_test_images.h index 6cc3aaa99..7348db01c 100644 --- a/include/SDL_test_images.h +++ b/include/SDL3/SDL_test_images.h @@ -36,9 +36,9 @@ #ifndef SDL_test_images_h_ #define SDL_test_images_h_ -#include "SDL.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -71,7 +71,7 @@ SDL_Surface *SDLTest_ImagePrimitivesBlend(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_images_h_ */ diff --git a/include/SDL_test_log.h b/include/SDL3/SDL_test_log.h similarity index 97% rename from include/SDL_test_log.h rename to include/SDL3/SDL_test_log.h index 5e670d151..c7d070bb9 100644 --- a/include/SDL_test_log.h +++ b/include/SDL3/SDL_test_log.h @@ -36,7 +36,7 @@ #ifndef SDL_test_log_h_ #define SDL_test_log_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -60,7 +60,7 @@ void SDLTest_LogError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_ #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_log_h_ */ diff --git a/include/SDL_test_md5.h b/include/SDL3/SDL_test_md5.h similarity index 98% rename from include/SDL_test_md5.h rename to include/SDL3/SDL_test_md5.h index 3005b8bcd..5b59b3d92 100644 --- a/include/SDL_test_md5.h +++ b/include/SDL3/SDL_test_md5.h @@ -56,7 +56,7 @@ #ifndef SDL_test_md5_h_ #define SDL_test_md5_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -122,7 +122,7 @@ extern "C" { #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_md5_h_ */ diff --git a/include/SDL_test_memory.h b/include/SDL3/SDL_test_memory.h similarity index 96% rename from include/SDL_test_memory.h rename to include/SDL3/SDL_test_memory.h index 4158ce34e..8fef4a697 100644 --- a/include/SDL_test_memory.h +++ b/include/SDL3/SDL_test_memory.h @@ -30,7 +30,7 @@ #ifndef SDL_test_memory_h_ #define SDL_test_memory_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -56,7 +56,7 @@ void SDLTest_LogAllocations(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_memory_h_ */ diff --git a/include/SDL_test_random.h b/include/SDL3/SDL_test_random.h similarity index 98% rename from include/SDL_test_random.h rename to include/SDL3/SDL_test_random.h index 6da8b9ef5..80d5bddde 100644 --- a/include/SDL_test_random.h +++ b/include/SDL3/SDL_test_random.h @@ -40,7 +40,7 @@ #ifndef SDL_test_random_h_ #define SDL_test_random_h_ -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -108,7 +108,7 @@ extern "C" { #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_test_random_h_ */ diff --git a/include/SDL_thread.h b/include/SDL3/SDL_thread.h similarity index 98% rename from include/SDL_thread.h rename to include/SDL3/SDL_thread.h index a5e1fe4ef..9dfd93b69 100644 --- a/include/SDL_thread.h +++ b/include/SDL3/SDL_thread.h @@ -28,18 +28,18 @@ * Header for the SDL thread management routines. */ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include /* Thread synchronization primitives */ -#include "SDL_atomic.h" -#include "SDL_mutex.h" +#include +#include #if defined(__WIN32__) || defined(__GDK__) #include /* _beginthreadex() and _endthreadex() */ #endif -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -414,7 +414,7 @@ extern DECLSPEC void SDLCALL SDL_TLSCleanup(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_thread_h_ */ diff --git a/include/SDL_timer.h b/include/SDL3/SDL_timer.h similarity index 98% rename from include/SDL_timer.h rename to include/SDL3/SDL_timer.h index 36d5f43a2..66fb8538b 100644 --- a/include/SDL_timer.h +++ b/include/SDL3/SDL_timer.h @@ -28,10 +28,10 @@ * Header for the SDL time management routines. */ -#include "SDL_stdinc.h" -#include "SDL_error.h" +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -215,7 +215,7 @@ extern DECLSPEC SDL_bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_timer_h_ */ diff --git a/include/SDL_touch.h b/include/SDL3/SDL_touch.h similarity index 96% rename from include/SDL_touch.h rename to include/SDL3/SDL_touch.h index 2f76adacd..53aaec1ee 100644 --- a/include/SDL_touch.h +++ b/include/SDL3/SDL_touch.h @@ -28,11 +28,11 @@ #ifndef SDL_touch_h_ #define SDL_touch_h_ -#include "SDL_stdinc.h" -#include "SDL_error.h" -#include "SDL_video.h" +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -143,7 +143,7 @@ extern DECLSPEC SDL_Finger * SDLCALL SDL_GetTouchFinger(SDL_TouchID touchID, int #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_touch_h_ */ diff --git a/include/SDL_version.h b/include/SDL3/SDL_version.h similarity index 98% rename from include/SDL_version.h rename to include/SDL3/SDL_version.h index 69753e6b7..e6bbe68c1 100644 --- a/include/SDL_version.h +++ b/include/SDL3/SDL_version.h @@ -28,9 +28,9 @@ #ifndef SDL_version_h_ #define SDL_version_h_ -#include "SDL_stdinc.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -156,7 +156,7 @@ extern DECLSPEC const char *SDLCALL SDL_GetRevision(void); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_version_h_ */ diff --git a/include/SDL_video.h b/include/SDL3/SDL_video.h similarity index 99% rename from include/SDL_video.h rename to include/SDL3/SDL_video.h index 6f9ca6a0e..42400b5d4 100644 --- a/include/SDL_video.h +++ b/include/SDL3/SDL_video.h @@ -28,12 +28,12 @@ #ifndef SDL_video_h_ #define SDL_video_h_ -#include "SDL_stdinc.h" -#include "SDL_pixels.h" -#include "SDL_rect.h" -#include "SDL_surface.h" +#include +#include +#include +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -2122,7 +2122,7 @@ extern DECLSPEC void SDLCALL SDL_GL_DeleteContext(SDL_GLContext context); #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_video_h_ */ diff --git a/include/SDL_vulkan.h b/include/SDL3/SDL_vulkan.h similarity index 98% rename from include/SDL_vulkan.h rename to include/SDL3/SDL_vulkan.h index 7e5258489..a54eb047f 100644 --- a/include/SDL_vulkan.h +++ b/include/SDL3/SDL_vulkan.h @@ -28,9 +28,9 @@ #ifndef SDL_vulkan_h_ #define SDL_vulkan_h_ -#include "SDL_video.h" +#include -#include "begin_code.h" +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus extern "C" { @@ -210,6 +210,6 @@ extern DECLSPEC void SDLCALL SDL_Vulkan_GetDrawableSize(SDL_Window * window, #ifdef __cplusplus } #endif -#include "close_code.h" +#include #endif /* SDL_vulkan_h_ */ diff --git a/include/begin_code.h b/include/SDL3/begin_code.h similarity index 100% rename from include/begin_code.h rename to include/SDL3/begin_code.h diff --git a/include/close_code.h b/include/SDL3/close_code.h similarity index 100% rename from include/close_code.h rename to include/SDL3/close_code.h diff --git a/include/SDL_types.h b/include/SDL_types.h deleted file mode 100644 index 355fb501a..000000000 --- a/include/SDL_types.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ - -/** - * \file SDL_types.h - * - * \deprecated - */ - -/* DEPRECATED */ -#include "SDL_stdinc.h" diff --git a/include/build_config/SDL_build_config.h b/include/build_config/SDL_build_config.h index 9b713c4a7..d2075ffd6 100644 --- a/include/build_config/SDL_build_config.h +++ b/include/build_config/SDL_build_config.h @@ -22,7 +22,7 @@ #ifndef SDL_build_config_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /** * \file SDL_build_config.h diff --git a/include/build_config/SDL_build_config.h.cmake b/include/build_config/SDL_build_config.h.cmake index 9503b3882..375968fc1 100644 --- a/include/build_config/SDL_build_config.h.cmake +++ b/include/build_config/SDL_build_config.h.cmake @@ -29,7 +29,7 @@ */ /* General platform specific identifiers */ -#include "SDL_platform.h" +#include /* C language features */ #cmakedefine const @HAVE_CONST@ diff --git a/include/build_config/SDL_build_config_android.h b/include/build_config/SDL_build_config_android.h index 5d8a1eed5..9f26a7bfb 100644 --- a/include/build_config/SDL_build_config_android.h +++ b/include/build_config/SDL_build_config_android.h @@ -23,7 +23,7 @@ #define SDL_build_config_android_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /** * \file SDL_build_config_android.h diff --git a/include/build_config/SDL_build_config_emscripten.h b/include/build_config/SDL_build_config_emscripten.h index 79f2bbec0..289caeb67 100644 --- a/include/build_config/SDL_build_config_emscripten.h +++ b/include/build_config/SDL_build_config_emscripten.h @@ -22,7 +22,7 @@ #ifndef _SDL_build_config_emscripten_h_ #define _SDL_build_config_emscripten_h_ -#include "SDL_platform.h" +#include /** * \file SDL_build_config_emscripten.h diff --git a/include/build_config/SDL_build_config_ios.h b/include/build_config/SDL_build_config_ios.h index 6fc7eb83c..d3c78f148 100644 --- a/include/build_config/SDL_build_config_ios.h +++ b/include/build_config/SDL_build_config_ios.h @@ -23,7 +23,7 @@ #define SDL_build_config_ios_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include #define HAVE_GCC_ATOMICS 1 diff --git a/include/build_config/SDL_build_config_macos.h b/include/build_config/SDL_build_config_macos.h index cc41e722e..576c4dc5b 100644 --- a/include/build_config/SDL_build_config_macos.h +++ b/include/build_config/SDL_build_config_macos.h @@ -23,7 +23,7 @@ #define SDL_build_config_macos_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /* This gets us MAC_OS_X_VERSION_MIN_REQUIRED... */ #include diff --git a/include/build_config/SDL_build_config_minimal.h b/include/build_config/SDL_build_config_minimal.h index 4fc73e5ed..7a0fb4762 100644 --- a/include/build_config/SDL_build_config_minimal.h +++ b/include/build_config/SDL_build_config_minimal.h @@ -23,7 +23,7 @@ #define SDL_build_config_minimal_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /** * \file SDL_build_config_minimal.h diff --git a/include/build_config/SDL_build_config_ngage.h b/include/build_config/SDL_build_config_ngage.h index 34ea32f43..6ae453694 100644 --- a/include/build_config/SDL_build_config_ngage.h +++ b/include/build_config/SDL_build_config_ngage.h @@ -23,7 +23,7 @@ #define SDL_build_config_ngage_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include typedef signed char int8_t; typedef unsigned char uint8_t; diff --git a/include/build_config/SDL_build_config_windows.h b/include/build_config/SDL_build_config_windows.h index ec7527f68..32189213d 100644 --- a/include/build_config/SDL_build_config_windows.h +++ b/include/build_config/SDL_build_config_windows.h @@ -23,7 +23,7 @@ #define SDL_build_config_windows_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /* winsdkver.h defines _WIN32_MAXVER for SDK version detection. It is present since at least the Windows 7 SDK, * but out of caution we'll only use it if the compiler supports __has_include() to confirm its presence. diff --git a/include/build_config/SDL_build_config_wingdk.h b/include/build_config/SDL_build_config_wingdk.h index 3e7afa0bf..0e1d1afcf 100644 --- a/include/build_config/SDL_build_config_wingdk.h +++ b/include/build_config/SDL_build_config_wingdk.h @@ -23,7 +23,7 @@ #define SDL_build_config_wingdk_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /* Windows GDK does not need Windows SDK version checks because it requires * a recent version of the Windows 10 SDK. */ diff --git a/include/build_config/SDL_build_config_winrt.h b/include/build_config/SDL_build_config_winrt.h index ef68f9190..4256cea42 100644 --- a/include/build_config/SDL_build_config_winrt.h +++ b/include/build_config/SDL_build_config_winrt.h @@ -23,7 +23,7 @@ #define SDL_build_config_winrt_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /* Make sure the Windows SDK's NTDDI_VERSION macro gets defined. This is used by SDL to determine which version of the Windows SDK is being used. diff --git a/include/build_config/SDL_build_config_xbox.h b/include/build_config/SDL_build_config_xbox.h index d52b1e09d..31faf65cc 100644 --- a/include/build_config/SDL_build_config_xbox.h +++ b/include/build_config/SDL_build_config_xbox.h @@ -23,7 +23,7 @@ #define SDL_build_config_wingdk_h_ #define SDL_build_config_h_ -#include "SDL_platform.h" +#include /* Windows GDK does not need Windows SDK version checks because it requires * a recent version of the Windows 10 SDK. */ diff --git a/sdl3-config.in b/sdl3-config.in index 46aff2df6..a30195a8b 100644 --- a/sdl3-config.in +++ b/sdl3-config.in @@ -46,7 +46,7 @@ while test $# -gt 0; do echo @SDL_VERSION@ ;; --cflags) - echo -I@includedir@/SDL3 @SDL_CFLAGS@ + echo -I@includedir@ -I@includedir@/SDL3 @SDL_CFLAGS@ ;; @ENABLE_SHARED_TRUE@ --libs) @ENABLE_SHARED_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@ diff --git a/src/SDL.c b/src/SDL.c index b8be679be..de01776ec 100644 --- a/src/SDL.c +++ b/src/SDL.c @@ -35,9 +35,6 @@ /* Initialization code for SDL */ -#include "SDL.h" -#include "SDL_bits.h" -#include "SDL_revision.h" #include "SDL_assert_c.h" #include "SDL_log_c.h" #include "events/SDL_events_c.h" diff --git a/src/SDL_assert.c b/src/SDL_assert.c index 9851f3797..4bde1d8dc 100644 --- a/src/SDL_assert.c +++ b/src/SDL_assert.c @@ -24,11 +24,6 @@ #include "core/windows/SDL_windows.h" #endif -#include "SDL.h" -#include "SDL_atomic.h" -#include "SDL_messagebox.h" -#include "SDL_video.h" -#include "SDL_assert.h" #include "SDL_assert_c.h" #include "video/SDL_sysvideo.h" diff --git a/src/SDL_dataqueue.c b/src/SDL_dataqueue.c index e63fc6dfd..46301c188 100644 --- a/src/SDL_dataqueue.c +++ b/src/SDL_dataqueue.c @@ -20,7 +20,6 @@ */ #include "./SDL_internal.h" -#include "SDL.h" #include "./SDL_dataqueue.h" typedef struct SDL_DataQueuePacket diff --git a/src/SDL_error.c b/src/SDL_error.c index 1ca460a69..e11cbf393 100644 --- a/src/SDL_error.c +++ b/src/SDL_error.c @@ -22,7 +22,6 @@ /* Simple error handling in SDL */ -#include "SDL_error.h" #include "SDL_error_c.h" int diff --git a/src/SDL_guid.c b/src/SDL_guid.c index d3529b728..6bb892d11 100644 --- a/src/SDL_guid.c +++ b/src/SDL_guid.c @@ -21,7 +21,6 @@ #include "SDL_internal.h" -#include "SDL_guid.h" /* convert the guid to a printable string */ void SDL_GUIDToString(SDL_GUID guid, char *pszGUID, int cbGUID) diff --git a/src/SDL_hints.c b/src/SDL_hints.c index 4341f8d20..9e2073f74 100644 --- a/src/SDL_hints.c +++ b/src/SDL_hints.c @@ -20,8 +20,6 @@ */ #include "./SDL_internal.h" -#include "SDL_hints.h" -#include "SDL_error.h" #include "SDL_hints_c.h" diff --git a/src/SDL_internal.h b/src/SDL_internal.h index 6f97045f1..449ffa43f 100644 --- a/src/SDL_internal.h +++ b/src/SDL_internal.h @@ -100,7 +100,6 @@ # include #endif -#include "SDL_stdinc.h" /* If you run into a warning that O_CLOEXEC is redefined, update the SDL configuration header for your platform to add HAVE_O_CLOEXEC */ #ifndef HAVE_O_CLOEXEC @@ -172,8 +171,7 @@ #define SDL_HAVE_YUV !SDL_LEAN_AND_MEAN #endif -#include "SDL_assert.h" -#include "SDL_log.h" +#include #endif /* SDL_internal_h_ */ diff --git a/src/SDL_list.c b/src/SDL_list.c index af9f8bf81..c60087d32 100644 --- a/src/SDL_list.c +++ b/src/SDL_list.c @@ -20,7 +20,6 @@ */ #include "./SDL_internal.h" -#include "SDL.h" #include "./SDL_list.h" /* Push */ diff --git a/src/SDL_log.c b/src/SDL_log.c index bdd0cd30a..80ac7666d 100644 --- a/src/SDL_log.c +++ b/src/SDL_log.c @@ -26,9 +26,6 @@ /* Simple log messages in SDL */ -#include "SDL_error.h" -#include "SDL_log.h" -#include "SDL_mutex.h" #include "SDL_log_c.h" #if HAVE_STDIO_H diff --git a/src/atomic/SDL_atomic.c b/src/atomic/SDL_atomic.c index c77a2fcbf..70c6709e3 100644 --- a/src/atomic/SDL_atomic.c +++ b/src/atomic/SDL_atomic.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_atomic.h" #if defined(_MSC_VER) && (_MSC_VER >= 1500) #include diff --git a/src/atomic/SDL_spinlock.c b/src/atomic/SDL_spinlock.c index 2734876ca..4ea699486 100644 --- a/src/atomic/SDL_spinlock.c +++ b/src/atomic/SDL_spinlock.c @@ -24,9 +24,6 @@ #include "../core/windows/SDL_windows.h" #endif -#include "SDL_atomic.h" -#include "SDL_mutex.h" -#include "SDL_timer.h" #if !defined(HAVE_GCC_ATOMICS) && defined(__SOLARIS__) #include diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 5501ca141..3054ac090 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -22,8 +22,6 @@ /* Allow access to a raw mixing buffer */ -#include "SDL.h" -#include "SDL_audio.h" #include "SDL_audio_c.h" #include "SDL_sysaudio.h" #include "../thread/SDL_systhread.h" diff --git a/src/audio/SDL_audiocvt.c b/src/audio/SDL_audiocvt.c index 196013e11..73df288c3 100644 --- a/src/audio/SDL_audiocvt.c +++ b/src/audio/SDL_audiocvt.c @@ -22,13 +22,9 @@ /* Functions for audio drivers to perform runtime conversion of audio format */ -#include "SDL.h" -#include "SDL_audio.h" #include "SDL_audio_c.h" -#include "SDL_loadso.h" #include "../SDL_dataqueue.h" -#include "SDL_cpuinfo.h" #define DEBUG_AUDIOSTREAM 0 diff --git a/src/audio/SDL_audiodev.c b/src/audio/SDL_audiodev.c index 0d06f65cd..c3de61afa 100644 --- a/src/audio/SDL_audiodev.c +++ b/src/audio/SDL_audiodev.c @@ -29,7 +29,6 @@ #include #include /* For close() */ -#include "SDL_stdinc.h" #include "SDL_audiodev_c.h" #ifndef _PATH_DEV_DSP diff --git a/src/audio/SDL_audiodev_c.h b/src/audio/SDL_audiodev_c.h index ff14ba5dc..8fc98b765 100644 --- a/src/audio/SDL_audiodev_c.h +++ b/src/audio/SDL_audiodev_c.h @@ -22,7 +22,6 @@ #ifndef SDL_audiodev_c_h_ #define SDL_audiodev_c_h_ -#include "SDL.h" #include "../SDL_internal.h" #include "SDL_sysaudio.h" diff --git a/src/audio/SDL_audiotypecvt.c b/src/audio/SDL_audiotypecvt.c index d51399303..2ac77edbd 100644 --- a/src/audio/SDL_audiotypecvt.c +++ b/src/audio/SDL_audiotypecvt.c @@ -20,9 +20,7 @@ */ #include "../SDL_internal.h" -#include "SDL_audio.h" #include "SDL_audio_c.h" -#include "SDL_cpuinfo.h" #ifdef __ARM_NEON #define HAVE_NEON_INTRINSICS 1 diff --git a/src/audio/SDL_mixer.c b/src/audio/SDL_mixer.c index 9c9e5df21..079b2f44c 100644 --- a/src/audio/SDL_mixer.c +++ b/src/audio/SDL_mixer.c @@ -22,9 +22,6 @@ /* This provides the default mixing callback for the SDL audio routines */ -#include "SDL_cpuinfo.h" -#include "SDL_timer.h" -#include "SDL_audio.h" #include "SDL_sysaudio.h" /* This table is used to add two sound values together and pin diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index 251ea9e3b..0dd5730ff 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -23,8 +23,6 @@ #ifndef SDL_sysaudio_h_ #define SDL_sysaudio_h_ -#include "SDL_mutex.h" -#include "SDL_thread.h" #include "../SDL_dataqueue.h" #include "./SDL_audio_c.h" diff --git a/src/audio/SDL_wave.c b/src/audio/SDL_wave.c index e49b55068..bd521dec3 100644 --- a/src/audio/SDL_wave.c +++ b/src/audio/SDL_wave.c @@ -33,8 +33,6 @@ /* Microsoft WAVE file loading routines */ -#include "SDL_hints.h" -#include "SDL_audio.h" #include "SDL_wave.h" #include "SDL_audio_c.h" diff --git a/src/audio/aaudio/SDL_aaudio.c b/src/audio/aaudio/SDL_aaudio.c index 5f318661d..fd9c76bd8 100644 --- a/src/audio/aaudio/SDL_aaudio.c +++ b/src/audio/aaudio/SDL_aaudio.c @@ -22,8 +22,6 @@ #if SDL_AUDIO_DRIVER_AAUDIO -#include "SDL_audio.h" -#include "SDL_loadso.h" #include "../SDL_audio_c.h" #include "../../core/android/SDL_android.h" #include "SDL_aaudio.h" diff --git a/src/audio/alsa/SDL_alsa_audio.c b/src/audio/alsa/SDL_alsa_audio.c index 59de607f8..d8424ae4a 100644 --- a/src/audio/alsa/SDL_alsa_audio.c +++ b/src/audio/alsa/SDL_alsa_audio.c @@ -37,13 +37,10 @@ #include /* For kill() */ #include -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_alsa_audio.h" #ifdef SDL_AUDIO_DRIVER_ALSA_DYNAMIC -#include "SDL_loadso.h" #endif static int (*ALSA_snd_pcm_open) diff --git a/src/audio/android/SDL_androidaudio.c b/src/audio/android/SDL_androidaudio.c index aa0d44242..2d60ee030 100644 --- a/src/audio/android/SDL_androidaudio.c +++ b/src/audio/android/SDL_androidaudio.c @@ -24,7 +24,6 @@ /* Output audio to Android */ -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_androidaudio.h" diff --git a/src/audio/coreaudio/SDL_coreaudio.m b/src/audio/coreaudio/SDL_coreaudio.m index 4532bb0c5..36fcb3562 100644 --- a/src/audio/coreaudio/SDL_coreaudio.m +++ b/src/audio/coreaudio/SDL_coreaudio.m @@ -24,8 +24,6 @@ /* !!! FIXME: clean out some of the macro salsa in here. */ -#include "SDL_audio.h" -#include "SDL_hints.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" #include "SDL_coreaudio.h" diff --git a/src/audio/directsound/SDL_directsound.c b/src/audio/directsound/SDL_directsound.c index 885b5f0d5..979ef6953 100644 --- a/src/audio/directsound/SDL_directsound.c +++ b/src/audio/directsound/SDL_directsound.c @@ -24,9 +24,6 @@ /* Allow access to a raw mixing buffer */ -#include "SDL_timer.h" -#include "SDL_loadso.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_directsound.h" #include diff --git a/src/audio/disk/SDL_diskaudio.c b/src/audio/disk/SDL_diskaudio.c index 0a7a395e4..0dc7e4f17 100644 --- a/src/audio/disk/SDL_diskaudio.c +++ b/src/audio/disk/SDL_diskaudio.c @@ -28,9 +28,6 @@ #include #endif -#include "SDL_rwops.h" -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_diskaudio.h" diff --git a/src/audio/disk/SDL_diskaudio.h b/src/audio/disk/SDL_diskaudio.h index e7739250a..fefdbfe6b 100644 --- a/src/audio/disk/SDL_diskaudio.h +++ b/src/audio/disk/SDL_diskaudio.h @@ -23,7 +23,6 @@ #ifndef SDL_diskaudio_h_ #define SDL_diskaudio_h_ -#include "SDL_rwops.h" #include "../SDL_sysaudio.h" /* Hidden "this" pointer for the audio functions */ diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index 8734f7960..84836b22c 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -36,8 +36,6 @@ #include -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "../SDL_audiodev_c.h" #include "SDL_dspaudio.h" diff --git a/src/audio/dummy/SDL_dummyaudio.c b/src/audio/dummy/SDL_dummyaudio.c index dab1edb59..34607f000 100644 --- a/src/audio/dummy/SDL_dummyaudio.c +++ b/src/audio/dummy/SDL_dummyaudio.c @@ -22,8 +22,6 @@ /* Output audio to nowhere... */ -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_dummyaudio.h" diff --git a/src/audio/emscripten/SDL_emscriptenaudio.c b/src/audio/emscripten/SDL_emscriptenaudio.c index 8a07f6c7f..510a38904 100644 --- a/src/audio/emscripten/SDL_emscriptenaudio.c +++ b/src/audio/emscripten/SDL_emscriptenaudio.c @@ -22,7 +22,6 @@ #if SDL_AUDIO_DRIVER_EMSCRIPTEN -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_emscriptenaudio.h" diff --git a/src/audio/haiku/SDL_haikuaudio.cc b/src/audio/haiku/SDL_haikuaudio.cc index aec5f4a25..43c0dc751 100644 --- a/src/audio/haiku/SDL_haikuaudio.cc +++ b/src/audio/haiku/SDL_haikuaudio.cc @@ -32,7 +32,6 @@ extern "C" { -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" #include "SDL_haikuaudio.h" diff --git a/src/audio/jack/SDL_jackaudio.c b/src/audio/jack/SDL_jackaudio.c index f6e7e0cd3..54f1a9b52 100644 --- a/src/audio/jack/SDL_jackaudio.c +++ b/src/audio/jack/SDL_jackaudio.c @@ -22,11 +22,8 @@ #if SDL_AUDIO_DRIVER_JACK -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_jackaudio.h" -#include "SDL_loadso.h" #include "../../thread/SDL_systhread.h" diff --git a/src/audio/n3ds/SDL_n3dsaudio.c b/src/audio/n3ds/SDL_n3dsaudio.c index 484bec8ae..0853b03c8 100644 --- a/src/audio/n3ds/SDL_n3dsaudio.c +++ b/src/audio/n3ds/SDL_n3dsaudio.c @@ -22,13 +22,11 @@ #ifdef SDL_AUDIO_DRIVER_N3DS -#include "SDL_audio.h" /* N3DS Audio driver */ #include "../SDL_sysaudio.h" #include "SDL_n3dsaudio.h" -#include "SDL_timer.h" #define N3DSAUDIO_DRIVER_NAME "n3ds" diff --git a/src/audio/netbsd/SDL_netbsdaudio.c b/src/audio/netbsd/SDL_netbsdaudio.c index 5f021ea37..e83b2f8b7 100644 --- a/src/audio/netbsd/SDL_netbsdaudio.c +++ b/src/audio/netbsd/SDL_netbsdaudio.c @@ -36,8 +36,6 @@ #include #include -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../../core/unix/SDL_poll.h" #include "../SDL_audio_c.h" #include "../SDL_audiodev_c.h" diff --git a/src/audio/openslES/SDL_openslES.c b/src/audio/openslES/SDL_openslES.c index 474de3bfe..fd3fc7bf8 100644 --- a/src/audio/openslES/SDL_openslES.c +++ b/src/audio/openslES/SDL_openslES.c @@ -26,7 +26,6 @@ https://googlesamples.github.io/android-audio-high-performance/guides/opensl_es.html */ -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "../../core/android/SDL_android.h" #include "SDL_openslES.h" diff --git a/src/audio/pipewire/SDL_pipewire.c b/src/audio/pipewire/SDL_pipewire.c index 2e173ef9a..c8ce98643 100644 --- a/src/audio/pipewire/SDL_pipewire.c +++ b/src/audio/pipewire/SDL_pipewire.c @@ -20,12 +20,9 @@ */ #include "../../SDL_internal.h" -#include "SDL_hints.h" #if SDL_AUDIO_DRIVER_PIPEWIRE -#include "SDL_audio.h" -#include "SDL_loadso.h" #include "SDL_pipewire.h" #include diff --git a/src/audio/ps2/SDL_ps2audio.c b/src/audio/ps2/SDL_ps2audio.c index b050984de..c3df809be 100644 --- a/src/audio/ps2/SDL_ps2audio.c +++ b/src/audio/ps2/SDL_ps2audio.c @@ -22,8 +22,6 @@ /* Output audio to nowhere... */ -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_ps2audio.h" diff --git a/src/audio/psp/SDL_pspaudio.c b/src/audio/psp/SDL_pspaudio.c index d908170c6..c68df84f1 100644 --- a/src/audio/psp/SDL_pspaudio.c +++ b/src/audio/psp/SDL_pspaudio.c @@ -27,9 +27,6 @@ #include #include /* memalign() */ -#include "SDL_audio.h" -#include "SDL_error.h" -#include "SDL_timer.h" #include "../SDL_audio_c.h" #include "../SDL_audiodev_c.h" #include "../SDL_sysaudio.h" diff --git a/src/audio/pulseaudio/SDL_pulseaudio.c b/src/audio/pulseaudio/SDL_pulseaudio.c index 288c3d98a..6009004fd 100644 --- a/src/audio/pulseaudio/SDL_pulseaudio.c +++ b/src/audio/pulseaudio/SDL_pulseaudio.c @@ -26,7 +26,6 @@ Stéphan Kochen: stephan .a.t. kochen.nl */ #include "../../SDL_internal.h" -#include "SDL_hints.h" #if SDL_AUDIO_DRIVER_PULSEAUDIO @@ -39,11 +38,8 @@ #include #include -#include "SDL_timer.h" -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_pulseaudio.h" -#include "SDL_loadso.h" #include "../../thread/SDL_systhread.h" /* should we include monitors in the device list? Set at SDL_Init time */ diff --git a/src/audio/sndio/SDL_sndioaudio.c b/src/audio/sndio/SDL_sndioaudio.c index 29e5315b9..9557ed669 100644 --- a/src/audio/sndio/SDL_sndioaudio.c +++ b/src/audio/sndio/SDL_sndioaudio.c @@ -36,12 +36,10 @@ #include #include -#include "SDL_audio.h" #include "../SDL_audio_c.h" #include "SDL_sndioaudio.h" #ifdef SDL_AUDIO_DRIVER_SNDIO_DYNAMIC -#include "SDL_loadso.h" #endif #ifndef INFTIM diff --git a/src/audio/vita/SDL_vitaaudio.c b/src/audio/vita/SDL_vitaaudio.c index 88f4a3285..9095c52a5 100644 --- a/src/audio/vita/SDL_vitaaudio.c +++ b/src/audio/vita/SDL_vitaaudio.c @@ -27,9 +27,6 @@ #include #include /* memalign() */ -#include "SDL_audio.h" -#include "SDL_error.h" -#include "SDL_timer.h" #include "../SDL_audio_c.h" #include "../SDL_audiodev_c.h" #include "../SDL_sysaudio.h" diff --git a/src/audio/wasapi/SDL_wasapi.c b/src/audio/wasapi/SDL_wasapi.c index 3a1acfeb0..8bd331859 100644 --- a/src/audio/wasapi/SDL_wasapi.c +++ b/src/audio/wasapi/SDL_wasapi.c @@ -24,8 +24,6 @@ #include "../../core/windows/SDL_windows.h" #include "../../core/windows/SDL_immdevice.h" -#include "SDL_audio.h" -#include "SDL_timer.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" diff --git a/src/audio/wasapi/SDL_wasapi_win32.c b/src/audio/wasapi/SDL_wasapi_win32.c index 13f05b661..28b490b47 100644 --- a/src/audio/wasapi/SDL_wasapi_win32.c +++ b/src/audio/wasapi/SDL_wasapi_win32.c @@ -30,8 +30,6 @@ #include "../../core/windows/SDL_windows.h" #include "../../core/windows/SDL_immdevice.h" -#include "SDL_audio.h" -#include "SDL_timer.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" diff --git a/src/audio/wasapi/SDL_wasapi_winrt.cpp b/src/audio/wasapi/SDL_wasapi_winrt.cpp index 235ae7d32..2ce4ecc8e 100644 --- a/src/audio/wasapi/SDL_wasapi_winrt.cpp +++ b/src/audio/wasapi/SDL_wasapi_winrt.cpp @@ -36,8 +36,6 @@ extern "C" { #include "../../core/windows/SDL_windows.h" -#include "SDL_audio.h" -#include "SDL_timer.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" } diff --git a/src/core/android/SDL_android.c b/src/core/android/SDL_android.c index ebdd1041b..900af2956 100644 --- a/src/core/android/SDL_android.c +++ b/src/core/android/SDL_android.c @@ -20,16 +20,9 @@ */ #include "../../SDL_internal.h" -#include "SDL_stdinc.h" -#include "SDL_atomic.h" -#include "SDL_hints.h" -#include "SDL_main.h" -#include "SDL_timer.h" -#include "SDL_version.h" #ifdef __ANDROID__ -#include "SDL_system.h" #include "SDL_android.h" #include "../../events/SDL_events_c.h" diff --git a/src/core/android/SDL_android.h b/src/core/android/SDL_android.h index 0df411186..2827b3843 100644 --- a/src/core/android/SDL_android.h +++ b/src/core/android/SDL_android.h @@ -19,7 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "../../SDL_internal.h" -#include "SDL_system.h" /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus @@ -31,9 +30,6 @@ extern "C" { #include #include -#include "SDL_audio.h" -#include "SDL_rect.h" -#include "SDL_video.h" /* Interface from the SDL library into the Android Java activity */ extern void Android_JNI_SetActivityTitle(const char *title); @@ -64,7 +60,6 @@ extern void Android_JNI_AudioSetThreadPriority(int iscapture, int device_id); extern SDL_bool Android_IsDeXMode(void); extern SDL_bool Android_IsChromebook(void); -#include "SDL_rwops.h" int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode); Sint64 Android_JNI_FileSize(SDL_RWops* ctx); @@ -113,7 +108,6 @@ int Android_JNI_SendMessage(int command, int param); JNIEXPORT void JNICALL SDL_Android_Init(JNIEnv* mEnv, jclass cls); /* MessageBox */ -#include "SDL_messagebox.h" int Android_JNI_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); /* Cursor support */ diff --git a/src/core/freebsd/SDL_evdev_kbd_freebsd.c b/src/core/freebsd/SDL_evdev_kbd_freebsd.c index c242053ac..93f133207 100644 --- a/src/core/freebsd/SDL_evdev_kbd_freebsd.c +++ b/src/core/freebsd/SDL_evdev_kbd_freebsd.c @@ -22,7 +22,6 @@ #include "../../SDL_internal.h" #include "../linux/SDL_evdev_kbd.h" -#include "SDL_hints.h" #ifdef SDL_INPUT_FBSDKBIO diff --git a/src/core/gdk/SDL_gdk.cpp b/src/core/gdk/SDL_gdk.cpp index a9ccc1ca9..bb3a625ac 100644 --- a/src/core/gdk/SDL_gdk.cpp +++ b/src/core/gdk/SDL_gdk.cpp @@ -21,11 +21,7 @@ #include "../../SDL_internal.h" extern "C" { -#include "SDL_system.h" #include "../windows/SDL_windows.h" -#include "SDL_messagebox.h" -#include "SDL_main.h" -#include "SDL_events.h" #include "../../events/SDL_events_c.h" } #include diff --git a/src/core/linux/SDL_dbus.c b/src/core/linux/SDL_dbus.c index 9153e5052..ac3eef8a2 100644 --- a/src/core/linux/SDL_dbus.c +++ b/src/core/linux/SDL_dbus.c @@ -19,15 +19,12 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "../../SDL_internal.h" -#include "SDL_hints.h" #include "SDL_dbus.h" -#include "SDL_atomic.h" #include "SDL_sandbox.h" #include "../../stdlib/SDL_vacopy.h" #if SDL_USE_LIBDBUS /* we never link directly to libdbus. */ -#include "SDL_loadso.h" static const char *dbus_library = "libdbus-1.so.3"; static void *dbus_handle = NULL; static char *inhibit_handle = NULL; diff --git a/src/core/linux/SDL_dbus.h b/src/core/linux/SDL_dbus.h index 04ab2a80d..4de1248a7 100644 --- a/src/core/linux/SDL_dbus.h +++ b/src/core/linux/SDL_dbus.h @@ -26,7 +26,6 @@ #ifdef HAVE_DBUS_DBUS_H #define SDL_USE_LIBDBUS 1 -#include "SDL_stdinc.h" #include diff --git a/src/core/linux/SDL_evdev.c b/src/core/linux/SDL_evdev.c index b22dea9c7..6e26b458b 100644 --- a/src/core/linux/SDL_evdev.c +++ b/src/core/linux/SDL_evdev.c @@ -38,9 +38,6 @@ #include #include -#include "SDL.h" -#include "SDL_endian.h" -#include "SDL_scancode.h" #include "../../events/SDL_events_c.h" #include "../../events/SDL_scancode_tables_c.h" #include "../../core/linux/SDL_evdev_capabilities.h" diff --git a/src/core/linux/SDL_evdev.h b/src/core/linux/SDL_evdev.h index c951232fa..33805fc51 100644 --- a/src/core/linux/SDL_evdev.h +++ b/src/core/linux/SDL_evdev.h @@ -26,7 +26,6 @@ #ifdef SDL_INPUT_LINUXEV -#include "SDL_events.h" extern int SDL_EVDEV_Init(void); extern void SDL_EVDEV_Quit(void); diff --git a/src/core/linux/SDL_evdev_kbd.c b/src/core/linux/SDL_evdev_kbd.c index f090bff41..06bdf27fe 100644 --- a/src/core/linux/SDL_evdev_kbd.c +++ b/src/core/linux/SDL_evdev_kbd.c @@ -21,7 +21,6 @@ #include "../../SDL_internal.h" #include "SDL_evdev_kbd.h" -#include "SDL_hints.h" #ifdef SDL_INPUT_LINUXKD diff --git a/src/core/linux/SDL_fcitx.c b/src/core/linux/SDL_fcitx.c index b19bcff8b..1cab0ae50 100644 --- a/src/core/linux/SDL_fcitx.c +++ b/src/core/linux/SDL_fcitx.c @@ -23,9 +23,6 @@ #include #include "SDL_fcitx.h" -#include "SDL_hints.h" -#include "SDL_keycode.h" -#include "SDL_keyboard.h" #include "../../events/SDL_keyboard_c.h" #include "SDL_dbus.h" @@ -33,7 +30,7 @@ #include "../../video/x11/SDL_x11video.h" #define SDL_ENABLE_SYSWM_X11 #endif -#include "SDL_syswm.h" +#include #define FCITX_DBUS_SERVICE "org.freedesktop.portal.Fcitx" diff --git a/src/core/linux/SDL_fcitx.h b/src/core/linux/SDL_fcitx.h index 567ddceb5..8ac254260 100644 --- a/src/core/linux/SDL_fcitx.h +++ b/src/core/linux/SDL_fcitx.h @@ -24,8 +24,6 @@ #include "../../SDL_internal.h" -#include "SDL_stdinc.h" -#include "SDL_rect.h" extern SDL_bool SDL_Fcitx_Init(void); extern void SDL_Fcitx_Quit(void); diff --git a/src/core/linux/SDL_ibus.c b/src/core/linux/SDL_ibus.c index 50472c5c5..e0de9a089 100644 --- a/src/core/linux/SDL_ibus.c +++ b/src/core/linux/SDL_ibus.c @@ -21,8 +21,6 @@ #include "../../SDL_internal.h" #ifdef HAVE_IBUS_IBUS_H -#include "SDL.h" -#include "SDL_hints.h" #include "SDL_ibus.h" #include "SDL_dbus.h" #include "../../video/SDL_sysvideo.h" @@ -32,7 +30,7 @@ #include "../../video/x11/SDL_x11video.h" #define SDL_ENABLE_SYSWM_X11 #endif -#include "SDL_syswm.h" +#include #include #include diff --git a/src/core/linux/SDL_ibus.h b/src/core/linux/SDL_ibus.h index 7c0bd8da7..d95a065c8 100644 --- a/src/core/linux/SDL_ibus.h +++ b/src/core/linux/SDL_ibus.h @@ -26,7 +26,6 @@ #ifdef HAVE_IBUS_IBUS_H #define SDL_USE_IBUS 1 -#include "SDL_stdinc.h" #include extern SDL_bool SDL_IBus_Init(void); diff --git a/src/core/linux/SDL_ime.h b/src/core/linux/SDL_ime.h index 23417f6f3..10f697940 100644 --- a/src/core/linux/SDL_ime.h +++ b/src/core/linux/SDL_ime.h @@ -24,8 +24,6 @@ #include "../../SDL_internal.h" -#include "SDL_stdinc.h" -#include "SDL_rect.h" extern SDL_bool SDL_IME_Init(void); extern void SDL_IME_Quit(void); diff --git a/src/core/linux/SDL_threadprio.c b/src/core/linux/SDL_threadprio.c index 865b89cd9..5be4694f7 100644 --- a/src/core/linux/SDL_threadprio.c +++ b/src/core/linux/SDL_threadprio.c @@ -22,16 +22,12 @@ #ifdef __LINUX__ -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_thread.h" #if !SDL_THREADS_DISABLED #include #include #include #include -#include "SDL_system.h" /* RLIMIT_RTTIME requires kernel >= 2.6.25 and is in glibc >= 2.14 */ #ifndef RLIMIT_RTTIME diff --git a/src/core/linux/SDL_udev.c b/src/core/linux/SDL_udev.c index 85cde8959..f609ff568 100644 --- a/src/core/linux/SDL_udev.c +++ b/src/core/linux/SDL_udev.c @@ -32,11 +32,7 @@ #include -#include "SDL_assert.h" #include "SDL_evdev_capabilities.h" -#include "SDL_loadso.h" -#include "SDL_timer.h" -#include "SDL_hints.h" #include "../unix/SDL_poll.h" static const char *SDL_UDEV_LIBS[] = { "libudev.so.1", "libudev.so.0" }; diff --git a/src/core/linux/SDL_udev.h b/src/core/linux/SDL_udev.h index 8ac6cbe89..9ec80ab93 100644 --- a/src/core/linux/SDL_udev.h +++ b/src/core/linux/SDL_udev.h @@ -30,8 +30,6 @@ #define SDL_USE_LIBUDEV 1 #endif -#include "SDL_loadso.h" -#include "SDL_events.h" #include #include #include diff --git a/src/core/openbsd/SDL_wscons_kbd.c b/src/core/openbsd/SDL_wscons_kbd.c index 121867d6a..d35162b6a 100644 --- a/src/core/openbsd/SDL_wscons_kbd.c +++ b/src/core/openbsd/SDL_wscons_kbd.c @@ -22,11 +22,7 @@ #include "../../SDL_internal.h" #include #include -#include "SDL_scancode.h" -#include "SDL_events.h" -#include "SDL_keyboard.h" #include "SDL_wscons.h" -#include "SDL_log.h" #include #include #include diff --git a/src/core/openbsd/SDL_wscons_mouse.c b/src/core/openbsd/SDL_wscons_mouse.c index 42c83cec8..0d6be9bd3 100644 --- a/src/core/openbsd/SDL_wscons_mouse.c +++ b/src/core/openbsd/SDL_wscons_mouse.c @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_events.h" #include #include #include diff --git a/src/core/unix/SDL_poll.h b/src/core/unix/SDL_poll.h index 02d09c9f9..722cd9562 100644 --- a/src/core/unix/SDL_poll.h +++ b/src/core/unix/SDL_poll.h @@ -24,7 +24,6 @@ #ifndef SDL_poll_h_ #define SDL_poll_h_ -#include "SDL_stdinc.h" #define SDL_IOR_READ 0x1 #define SDL_IOR_WRITE 0x2 diff --git a/src/core/windows/SDL_immdevice.h b/src/core/windows/SDL_immdevice.h index 007775f9e..ef08f0fb5 100644 --- a/src/core/windows/SDL_immdevice.h +++ b/src/core/windows/SDL_immdevice.h @@ -22,8 +22,6 @@ #ifndef SDL_IMMDEVICE_H #define SDL_IMMDEVICE_H -#include "SDL_atomic.h" -#include "SDL_audio.h" #define COBJMACROS #include diff --git a/src/core/windows/SDL_windows.c b/src/core/windows/SDL_windows.c index 4ec9dbb64..5626258e8 100644 --- a/src/core/windows/SDL_windows.c +++ b/src/core/windows/SDL_windows.c @@ -23,7 +23,6 @@ #if defined(__WIN32__) || defined(__WINRT__) || defined(__GDK__) #include "SDL_windows.h" -#include "SDL_error.h" #include /* for CoInitialize/CoUninitialize (Win32 only) */ #if defined(HAVE_ROAPI_H) diff --git a/src/core/windows/SDL_windows.h b/src/core/windows/SDL_windows.h index 8b124d797..537fa1cba 100644 --- a/src/core/windows/SDL_windows.h +++ b/src/core/windows/SDL_windows.h @@ -89,8 +89,6 @@ #endif #endif -#include "SDL_rect.h" - /* Routines to convert from UTF8 to native Windows text */ #define WIN_StringToUTF8W(S) SDL_iconv_string("UTF-8", "UTF-16LE", (const char *)(S), (SDL_wcslen(S)+1)*sizeof(WCHAR)) #define WIN_UTF8ToStringW(S) (WCHAR *)SDL_iconv_string("UTF-16LE", "UTF-8", (const char *)(S), SDL_strlen(S)+1) diff --git a/src/core/winrt/SDL_winrtapp_common.cpp b/src/core/winrt/SDL_winrtapp_common.cpp index 6e98a78d9..610aba91c 100644 --- a/src/core/winrt/SDL_winrtapp_common.cpp +++ b/src/core/winrt/SDL_winrtapp_common.cpp @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_main.h" -#include "SDL_system.h" #include "SDL_winrtapp_direct3d.h" #include "SDL_winrtapp_xaml.h" diff --git a/src/core/winrt/SDL_winrtapp_direct3d.cpp b/src/core/winrt/SDL_winrtapp_direct3d.cpp index 1f0962fca..db7ccfdf6 100644 --- a/src/core/winrt/SDL_winrtapp_direct3d.cpp +++ b/src/core/winrt/SDL_winrtapp_direct3d.cpp @@ -47,11 +47,6 @@ using namespace Windows::Phone::UI::Input; /* SDL includes */ extern "C" { -#include "SDL_events.h" -#include "SDL_hints.h" -#include "SDL_main.h" -#include "SDL_stdinc.h" -#include "SDL_render.h" #include "../../video/SDL_sysvideo.h" //#include "../../SDL_hints_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/core/winrt/SDL_winrtapp_xaml.cpp b/src/core/winrt/SDL_winrtapp_xaml.cpp index 69716e11d..7b52d4156 100644 --- a/src/core/winrt/SDL_winrtapp_xaml.cpp +++ b/src/core/winrt/SDL_winrtapp_xaml.cpp @@ -30,7 +30,6 @@ /* SDL includes */ #include "../../SDL_internal.h" -#include "SDL.h" #include "../../video/winrt/SDL_winrtevents_c.h" #include "../../video/winrt/SDL_winrtvideo_cpp.h" #include "SDL_winrtapp_common.h" diff --git a/src/core/winrt/SDL_winrtapp_xaml.h b/src/core/winrt/SDL_winrtapp_xaml.h index b79f0e190..90e770925 100644 --- a/src/core/winrt/SDL_winrtapp_xaml.h +++ b/src/core/winrt/SDL_winrtapp_xaml.h @@ -23,7 +23,6 @@ #ifndef SDL_winrtapp_xaml_h_ #define SDL_winrtapp_xaml_h_ -#include "SDL_stdinc.h" #ifdef __cplusplus extern SDL_bool WINRT_XAMLWasEnabled; diff --git a/src/cpuinfo/SDL_cpuinfo.c b/src/cpuinfo/SDL_cpuinfo.c index d80d96e91..7047be49d 100644 --- a/src/cpuinfo/SDL_cpuinfo.c +++ b/src/cpuinfo/SDL_cpuinfo.c @@ -28,8 +28,6 @@ /* CPU feature detection for SDL */ -#include "SDL_cpuinfo.h" -#include "SDL_assert.h" #ifdef HAVE_SYSCONF #include diff --git a/src/dynapi/SDL_dynapi.c b/src/dynapi/SDL_dynapi.c index 6b69dfed1..c49a1ce8d 100644 --- a/src/dynapi/SDL_dynapi.c +++ b/src/dynapi/SDL_dynapi.c @@ -28,11 +28,11 @@ #include #endif -#include "SDL.h" +#include /* These headers have system specific definitions, so aren't included above */ -#include "SDL_syswm.h" -#include "SDL_vulkan.h" +#include +#include /* This is the version of the dynamic API. This doesn't match the SDL version and should not change until there's been a major revamp in API/ABI. diff --git a/src/dynapi/gendynapi.pl b/src/dynapi/gendynapi.pl index b99a8a492..5ac07e4ec 100755 --- a/src/dynapi/gendynapi.pl +++ b/src/dynapi/gendynapi.pl @@ -48,10 +48,10 @@ if (-f $sdl_dynapi_procs_h) { open(SDL_DYNAPI_PROCS_H, '>>', $sdl_dynapi_procs_h) or die("Can't open $sdl_dynapi_procs_h: $!\n"); open(SDL_DYNAPI_OVERRIDES_H, '>>', $sdl_dynapi_overrides_h) or die("Can't open $sdl_dynapi_overrides_h: $!\n"); -opendir(HEADERS, 'include') or die("Can't open include dir: $!\n"); +opendir(HEADERS, 'include/SDL3') or die("Can't open include dir: $!\n"); while (my $d = readdir(HEADERS)) { next if not $d =~ /\.h\Z/; - my $header = "include/$d"; + my $header = "include/SDL3/$d"; open(HEADER, '<', $header) or die("Can't open $header: $!\n"); while (
) { chomp; diff --git a/src/events/SDL_clipboardevents.c b/src/events/SDL_clipboardevents.c index a3247dd80..d19d7fb25 100644 --- a/src/events/SDL_clipboardevents.c +++ b/src/events/SDL_clipboardevents.c @@ -22,7 +22,6 @@ /* Clipboard event handling code for SDL */ -#include "SDL_events.h" #include "SDL_events_c.h" #include "SDL_clipboardevents_c.h" diff --git a/src/events/SDL_displayevents.c b/src/events/SDL_displayevents.c index c6a701ab5..b6e14699a 100644 --- a/src/events/SDL_displayevents.c +++ b/src/events/SDL_displayevents.c @@ -22,7 +22,6 @@ /* Display event handling code for SDL */ -#include "SDL_events.h" #include "SDL_events_c.h" diff --git a/src/events/SDL_dropevents.c b/src/events/SDL_dropevents.c index daefeb09b..127f2ad42 100644 --- a/src/events/SDL_dropevents.c +++ b/src/events/SDL_dropevents.c @@ -22,7 +22,6 @@ /* Drag and drop event handling code for SDL */ -#include "SDL_events.h" #include "SDL_events_c.h" #include "SDL_dropevents_c.h" diff --git a/src/events/SDL_events.c b/src/events/SDL_events.c index 493ae7665..0b3a6823b 100644 --- a/src/events/SDL_events.c +++ b/src/events/SDL_events.c @@ -22,9 +22,6 @@ /* General event handling code for SDL */ -#include "SDL.h" -#include "SDL_events.h" -#include "SDL_thread.h" #include "SDL_events_c.h" #include "../SDL_hints_c.h" #include "../timer/SDL_timer_c.h" @@ -32,7 +29,7 @@ #include "../joystick/SDL_joystick_c.h" #endif #include "../video/SDL_sysvideo.h" -#include "SDL_syswm.h" +#include #undef SDL_PRIs64 #if (defined(__WIN32__) || defined(__GDK__)) && !defined(__CYGWIN__) diff --git a/src/events/SDL_events_c.h b/src/events/SDL_events_c.h index ba52b1155..708a0ac63 100644 --- a/src/events/SDL_events_c.h +++ b/src/events/SDL_events_c.h @@ -25,8 +25,6 @@ #include "../SDL_internal.h" /* Useful functions and variables from SDL_events.c */ -#include "SDL_events.h" -#include "SDL_thread.h" #include "../video/SDL_sysvideo.h" #include "SDL_clipboardevents_c.h" diff --git a/src/events/SDL_gesture.c b/src/events/SDL_gesture.c index 6d823fdf6..356115645 100644 --- a/src/events/SDL_gesture.c +++ b/src/events/SDL_gesture.c @@ -23,8 +23,6 @@ /* General gesture handling code for SDL */ -#include "SDL_events.h" -#include "SDL_endian.h" #include "SDL_events_c.h" #include "SDL_gesture_c.h" diff --git a/src/events/SDL_keyboard.c b/src/events/SDL_keyboard.c index 30ec14c24..9614e0c22 100644 --- a/src/events/SDL_keyboard.c +++ b/src/events/SDL_keyboard.c @@ -22,9 +22,6 @@ /* General keyboard handling code for SDL */ -#include "SDL_hints.h" -#include "SDL_timer.h" -#include "SDL_events.h" #include "SDL_events_c.h" #include "../video/SDL_sysvideo.h" #include "scancodes_ascii.h" diff --git a/src/events/SDL_keyboard_c.h b/src/events/SDL_keyboard_c.h index 3ace4af64..dab41c6f1 100644 --- a/src/events/SDL_keyboard_c.h +++ b/src/events/SDL_keyboard_c.h @@ -23,8 +23,6 @@ #ifndef SDL_keyboard_c_h_ #define SDL_keyboard_c_h_ -#include "SDL_keycode.h" -#include "SDL_events.h" /* Initialize the keyboard subsystem */ extern int SDL_KeyboardInit(void); diff --git a/src/events/SDL_keysym_to_scancode.c b/src/events/SDL_keysym_to_scancode.c index 3df4fd056..76f23f73b 100644 --- a/src/events/SDL_keysym_to_scancode.c +++ b/src/events/SDL_keysym_to_scancode.c @@ -18,7 +18,6 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ - #include "../SDL_internal.h" #if SDL_VIDEO_DRIVER_WAYLAND || SDL_VIDEO_DRIVER_X11 diff --git a/src/events/SDL_keysym_to_scancode_c.h b/src/events/SDL_keysym_to_scancode_c.h index d2feb8c7f..e8fd6e844 100644 --- a/src/events/SDL_keysym_to_scancode_c.h +++ b/src/events/SDL_keysym_to_scancode_c.h @@ -22,7 +22,6 @@ #ifndef SDL_keysym_to_scancode_c_h_ #define SDL_keysym_to_scancode_c_h_ -#include "SDL_scancode.h" /* This function only correctly maps letters and numbers for keyboards in US QWERTY layout */ extern SDL_Scancode SDL_GetScancodeFromKeySym(Uint32 keysym, Uint32 keycode); diff --git a/src/events/SDL_mouse.c b/src/events/SDL_mouse.c index 08729430c..0e169d769 100644 --- a/src/events/SDL_mouse.c +++ b/src/events/SDL_mouse.c @@ -22,9 +22,6 @@ /* General mouse handling code for SDL */ -#include "SDL_hints.h" -#include "SDL_timer.h" -#include "SDL_events.h" #include "SDL_events_c.h" #include "../SDL_hints_c.h" #include "../video/SDL_sysvideo.h" diff --git a/src/events/SDL_mouse_c.h b/src/events/SDL_mouse_c.h index ebe4c4044..c8226ac9b 100644 --- a/src/events/SDL_mouse_c.h +++ b/src/events/SDL_mouse_c.h @@ -23,7 +23,6 @@ #ifndef SDL_mouse_c_h_ #define SDL_mouse_c_h_ -#include "SDL_mouse.h" struct SDL_Cursor { diff --git a/src/events/SDL_quit.c b/src/events/SDL_quit.c index ca583ea9c..114ec4b1e 100644 --- a/src/events/SDL_quit.c +++ b/src/events/SDL_quit.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_hints.h" /* General quit handling code for SDL */ @@ -28,7 +27,6 @@ #include #endif -#include "SDL_events.h" #include "SDL_events_c.h" #if defined(HAVE_SIGNAL_H) || defined(HAVE_SIGACTION) diff --git a/src/events/SDL_scancode_tables_c.h b/src/events/SDL_scancode_tables_c.h index c85b8ddca..883a418ae 100644 --- a/src/events/SDL_scancode_tables_c.h +++ b/src/events/SDL_scancode_tables_c.h @@ -20,8 +20,6 @@ */ #include "../SDL_internal.h" -#include "../../include/SDL_scancode.h" - typedef enum { SDL_SCANCODE_TABLE_DARWIN, diff --git a/src/events/SDL_touch.c b/src/events/SDL_touch.c index bc77b7354..0a429fc7c 100644 --- a/src/events/SDL_touch.c +++ b/src/events/SDL_touch.c @@ -22,7 +22,6 @@ /* General touch handling code for SDL */ -#include "SDL_events.h" #include "SDL_events_c.h" #include "../video/SDL_sysvideo.h" diff --git a/src/events/SDL_touch_c.h b/src/events/SDL_touch_c.h index 4d5caf134..3d957aa23 100644 --- a/src/events/SDL_touch_c.h +++ b/src/events/SDL_touch_c.h @@ -19,7 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "../SDL_internal.h" -#include "../../include/SDL_touch.h" #ifndef SDL_touch_c_h_ #define SDL_touch_c_h_ diff --git a/src/events/SDL_windowevents.c b/src/events/SDL_windowevents.c index 209295afc..1d4de3e3d 100644 --- a/src/events/SDL_windowevents.c +++ b/src/events/SDL_windowevents.c @@ -22,10 +22,8 @@ /* Window event handling code for SDL */ -#include "SDL_events.h" #include "SDL_events_c.h" #include "SDL_mouse_c.h" -#include "SDL_hints.h" typedef struct RemovePendingSizeChangedAndResizedEvents_Data { diff --git a/src/events/scancodes_ascii.h b/src/events/scancodes_ascii.h index c30cddca0..d374c646c 100644 --- a/src/events/scancodes_ascii.h +++ b/src/events/scancodes_ascii.h @@ -19,8 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_scancode.h" -#include "SDL_keycode.h" /* This file is used to convert between characters passed in from an ASCII diff --git a/src/events/scancodes_linux.h b/src/events/scancodes_linux.h index 5770d9a79..ae4d89467 100644 --- a/src/events/scancodes_linux.h +++ b/src/events/scancodes_linux.h @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "../../include/SDL_scancode.h" +#include "../SDL_internal.h" /* Linux virtual key code to SDL_Keycode mapping table Sources: diff --git a/src/events/scancodes_windows.h b/src/events/scancodes_windows.h index fc3e3db66..2198eeb2f 100644 --- a/src/events/scancodes_windows.h +++ b/src/events/scancodes_windows.h @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "../../include/SDL_scancode.h" +#include "../SDL_internal.h" /* Windows scancode to SDL scancode mapping table */ /* derived from Microsoft scan code document, http://download.microsoft.com/download/1/6/1/161ba512-40e2-4cc9-843a-923143f3456c/scancode.doc */ diff --git a/src/events/scancodes_xfree86.h b/src/events/scancodes_xfree86.h index 605a657f1..f5280f380 100644 --- a/src/events/scancodes_xfree86.h +++ b/src/events/scancodes_xfree86.h @@ -18,12 +18,11 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ +#include "../SDL_internal.h" #ifndef scancodes_xfree86_h_ #define scancodes_xfree86_h_ -#include "../../include/SDL_scancode.h" - /* XFree86 key code to SDL scancode mapping table Sources: - atKeyNames.h from XFree86 source code diff --git a/src/file/SDL_rwops.c b/src/file/SDL_rwops.c index a95cf7599..f9965aa5f 100644 --- a/src/file/SDL_rwops.c +++ b/src/file/SDL_rwops.c @@ -41,8 +41,6 @@ data sources. It can easily be extended to files, memory, etc. */ -#include "SDL_endian.h" -#include "SDL_rwops.h" #ifdef __APPLE__ #include "cocoa/SDL_rwopsbundlesupport.h" @@ -54,7 +52,6 @@ #ifdef __ANDROID__ #include "../core/android/SDL_android.h" -#include "SDL_system.h" #endif #if defined(__WIN32__) || defined(__GDK__) diff --git a/src/file/n3ds/SDL_rwopsromfs.c b/src/file/n3ds/SDL_rwopsromfs.c index 9d3ec87e9..c635ed9f9 100644 --- a/src/file/n3ds/SDL_rwopsromfs.c +++ b/src/file/n3ds/SDL_rwopsromfs.c @@ -20,7 +20,6 @@ */ #include "SDL_rwopsromfs.h" -#include "SDL_error.h" /* Checks if the mode is a kind of reading */ SDL_FORCE_INLINE SDL_bool IsReadMode(const char *mode); diff --git a/src/filesystem/android/SDL_sysfilesystem.c b/src/filesystem/android/SDL_sysfilesystem.c index 0ffe96b15..99cd97db0 100644 --- a/src/filesystem/android/SDL_sysfilesystem.c +++ b/src/filesystem/android/SDL_sysfilesystem.c @@ -27,9 +27,6 @@ #include -#include "SDL_error.h" -#include "SDL_filesystem.h" -#include "SDL_system.h" char * diff --git a/src/filesystem/cocoa/SDL_sysfilesystem.m b/src/filesystem/cocoa/SDL_sysfilesystem.m index a1506d3b8..8ac7ab9e4 100644 --- a/src/filesystem/cocoa/SDL_sysfilesystem.m +++ b/src/filesystem/cocoa/SDL_sysfilesystem.m @@ -29,9 +29,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/dummy/SDL_sysfilesystem.c b/src/filesystem/dummy/SDL_sysfilesystem.c index 7f22183f9..28a26c9ea 100644 --- a/src/filesystem/dummy/SDL_sysfilesystem.c +++ b/src/filesystem/dummy/SDL_sysfilesystem.c @@ -25,8 +25,6 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* System dependent filesystem routines */ -#include "SDL_error.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/emscripten/SDL_sysfilesystem.c b/src/filesystem/emscripten/SDL_sysfilesystem.c index f007af625..075c0e264 100644 --- a/src/filesystem/emscripten/SDL_sysfilesystem.c +++ b/src/filesystem/emscripten/SDL_sysfilesystem.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_filesystem.h" #include diff --git a/src/filesystem/haiku/SDL_sysfilesystem.cc b/src/filesystem/haiku/SDL_sysfilesystem.cc index f359f36fe..5faa1d239 100644 --- a/src/filesystem/haiku/SDL_sysfilesystem.cc +++ b/src/filesystem/haiku/SDL_sysfilesystem.cc @@ -30,9 +30,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/n3ds/SDL_sysfilesystem.c b/src/filesystem/n3ds/SDL_sysfilesystem.c index 9d0621bd4..861216014 100644 --- a/src/filesystem/n3ds/SDL_sysfilesystem.c +++ b/src/filesystem/n3ds/SDL_sysfilesystem.c @@ -29,8 +29,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_filesystem.h" SDL_FORCE_INLINE char *MakePrefPath(const char *app); SDL_FORCE_INLINE int CreatePrefPathDir(const char *pref); diff --git a/src/filesystem/ps2/SDL_sysfilesystem.c b/src/filesystem/ps2/SDL_sysfilesystem.c index 21c24b61b..5b1b8c353 100644 --- a/src/filesystem/ps2/SDL_sysfilesystem.c +++ b/src/filesystem/ps2/SDL_sysfilesystem.c @@ -28,8 +28,6 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* System dependent filesystem routines */ -#include "SDL_error.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/psp/SDL_sysfilesystem.c b/src/filesystem/psp/SDL_sysfilesystem.c index 4abb90ad7..28455d67e 100644 --- a/src/filesystem/psp/SDL_sysfilesystem.c +++ b/src/filesystem/psp/SDL_sysfilesystem.c @@ -28,8 +28,6 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* System dependent filesystem routines */ -#include "SDL_error.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/riscos/SDL_sysfilesystem.c b/src/filesystem/riscos/SDL_sysfilesystem.c index 58ff9f161..c1ef52a52 100644 --- a/src/filesystem/riscos/SDL_sysfilesystem.c +++ b/src/filesystem/riscos/SDL_sysfilesystem.c @@ -29,9 +29,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" /* Wrapper around __unixify_std that uses SDL's memory allocators */ static char * diff --git a/src/filesystem/unix/SDL_sysfilesystem.c b/src/filesystem/unix/SDL_sysfilesystem.c index 16d4f0a64..5405ee633 100644 --- a/src/filesystem/unix/SDL_sysfilesystem.c +++ b/src/filesystem/unix/SDL_sysfilesystem.c @@ -38,10 +38,6 @@ #include #endif -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" -#include "SDL_rwops.h" static char * readSymLink(const char *path) diff --git a/src/filesystem/vita/SDL_sysfilesystem.c b/src/filesystem/vita/SDL_sysfilesystem.c index 1952cadf5..671cc82b6 100644 --- a/src/filesystem/vita/SDL_sysfilesystem.c +++ b/src/filesystem/vita/SDL_sysfilesystem.c @@ -34,10 +34,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" -#include "SDL_rwops.h" char * SDL_GetBasePath(void) diff --git a/src/filesystem/windows/SDL_sysfilesystem.c b/src/filesystem/windows/SDL_sysfilesystem.c index 5d3099be6..d7ef17e8e 100644 --- a/src/filesystem/windows/SDL_sysfilesystem.c +++ b/src/filesystem/windows/SDL_sysfilesystem.c @@ -28,9 +28,6 @@ #include "../../core/windows/SDL_windows.h" #include -#include "SDL_error.h" -#include "SDL_stdinc.h" -#include "SDL_filesystem.h" char * SDL_GetBasePath(void) @@ -173,8 +170,6 @@ SDL_GetPrefPath(const char *org, const char *app) #endif /* SDL_FILESYSTEM_WINDOWS */ #ifdef SDL_FILESYSTEM_XBOX -#include "SDL_filesystem.h" -#include "SDL_error.h" char * SDL_GetBasePath(void) { diff --git a/src/filesystem/winrt/SDL_sysfilesystem.cpp b/src/filesystem/winrt/SDL_sysfilesystem.cpp index 115b45b1a..39a59ad7a 100644 --- a/src/filesystem/winrt/SDL_sysfilesystem.cpp +++ b/src/filesystem/winrt/SDL_sysfilesystem.cpp @@ -26,11 +26,6 @@ #ifdef __WINRT__ extern "C" { -#include "SDL_filesystem.h" -#include "SDL_error.h" -#include "SDL_hints.h" -#include "SDL_stdinc.h" -#include "SDL_system.h" #include "../../core/windows/SDL_windows.h" } diff --git a/src/haptic/SDL_syshaptic.h b/src/haptic/SDL_syshaptic.h index d6ee3e1ac..a8a89f67d 100644 --- a/src/haptic/SDL_syshaptic.h +++ b/src/haptic/SDL_syshaptic.h @@ -24,7 +24,6 @@ #ifndef SDL_syshaptic_h_ #define SDL_syshaptic_h_ -#include "SDL_haptic.h" /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus diff --git a/src/haptic/android/SDL_syshaptic.c b/src/haptic/android/SDL_syshaptic.c index dda573313..78e11c055 100644 --- a/src/haptic/android/SDL_syshaptic.c +++ b/src/haptic/android/SDL_syshaptic.c @@ -22,12 +22,9 @@ #ifdef SDL_HAPTIC_ANDROID -#include "SDL_timer.h" #include "SDL_syshaptic_c.h" #include "../SDL_syshaptic.h" -#include "SDL_haptic.h" #include "../../core/android/SDL_android.h" -#include "SDL_joystick.h" #include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */ #include "../../joystick/android/SDL_sysjoystick_c.h" /* For joystick hwdata */ diff --git a/src/haptic/darwin/SDL_syshaptic.c b/src/haptic/darwin/SDL_syshaptic.c index 0d26fd792..717a07b86 100644 --- a/src/haptic/darwin/SDL_syshaptic.c +++ b/src/haptic/darwin/SDL_syshaptic.c @@ -22,10 +22,7 @@ #ifdef SDL_HAPTIC_IOKIT -#include "SDL_stdinc.h" -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" -#include "SDL_joystick.h" #include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */ #include "../../joystick/darwin/SDL_iokitjoystick_c.h" /* For joystick hwdata */ #include "SDL_syshaptic_c.h" diff --git a/src/haptic/dummy/SDL_syshaptic.c b/src/haptic/dummy/SDL_syshaptic.c index f356195b7..c0b6c712a 100644 --- a/src/haptic/dummy/SDL_syshaptic.c +++ b/src/haptic/dummy/SDL_syshaptic.c @@ -22,7 +22,6 @@ #if defined(SDL_HAPTIC_DUMMY) || defined(SDL_HAPTIC_DISABLED) -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" diff --git a/src/haptic/linux/SDL_syshaptic.c b/src/haptic/linux/SDL_syshaptic.c index e1f5b2289..fa79e8b13 100644 --- a/src/haptic/linux/SDL_syshaptic.c +++ b/src/haptic/linux/SDL_syshaptic.c @@ -22,9 +22,7 @@ #ifdef SDL_HAPTIC_LINUX -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" -#include "SDL_joystick.h" #include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */ #include "../../joystick/linux/SDL_sysjoystick_c.h" /* For joystick hwdata */ #include "../../core/linux/SDL_evdev_capabilities.h" diff --git a/src/haptic/windows/SDL_dinputhaptic.c b/src/haptic/windows/SDL_dinputhaptic.c index 2229c6916..130bf9a47 100644 --- a/src/haptic/windows/SDL_dinputhaptic.c +++ b/src/haptic/windows/SDL_dinputhaptic.c @@ -20,16 +20,10 @@ */ #include "../../SDL_internal.h" -#include "SDL.h" -#include "SDL_error.h" -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" #if SDL_HAPTIC_DINPUT -#include "SDL_hints.h" -#include "SDL_stdinc.h" -#include "SDL_timer.h" #include "SDL_windowshaptic_c.h" #include "SDL_dinputhaptic_c.h" #include "../../joystick/windows/SDL_windowsjoystick_c.h" diff --git a/src/haptic/windows/SDL_dinputhaptic_c.h b/src/haptic/windows/SDL_dinputhaptic_c.h index 60fa414cd..f51c3474b 100644 --- a/src/haptic/windows/SDL_dinputhaptic_c.h +++ b/src/haptic/windows/SDL_dinputhaptic_c.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_haptic.h" #include "SDL_windowshaptic_c.h" /* Set up for C function definitions, even when using C++ */ diff --git a/src/haptic/windows/SDL_windowshaptic.c b/src/haptic/windows/SDL_windowshaptic.c index 475ae49c6..422e1051a 100644 --- a/src/haptic/windows/SDL_windowshaptic.c +++ b/src/haptic/windows/SDL_windowshaptic.c @@ -22,13 +22,7 @@ #if SDL_HAPTIC_DINPUT || SDL_HAPTIC_XINPUT -#include "SDL_thread.h" -#include "SDL_mutex.h" -#include "SDL_timer.h" -#include "SDL_hints.h" -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" -#include "SDL_joystick.h" #include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */ #include "../../joystick/windows/SDL_windowsjoystick_c.h" /* For joystick hwdata */ #include "../../joystick/windows/SDL_xinputjoystick_c.h" /* For xinput rumble */ diff --git a/src/haptic/windows/SDL_windowshaptic_c.h b/src/haptic/windows/SDL_windowshaptic_c.h index dcfb7022e..8bfe57929 100644 --- a/src/haptic/windows/SDL_windowshaptic_c.h +++ b/src/haptic/windows/SDL_windowshaptic_c.h @@ -23,7 +23,6 @@ #ifndef SDL_windowshaptic_c_h_ #define SDL_windowshaptic_c_h_ -#include "SDL_thread.h" #include "../SDL_syshaptic.h" #include "../../core/windows/SDL_directx.h" #include "../../core/windows/SDL_xinput.h" diff --git a/src/haptic/windows/SDL_xinputhaptic.c b/src/haptic/windows/SDL_xinputhaptic.c index 2622fb7a7..56b1c4908 100644 --- a/src/haptic/windows/SDL_xinputhaptic.c +++ b/src/haptic/windows/SDL_xinputhaptic.c @@ -20,15 +20,10 @@ */ #include "../../SDL_internal.h" -#include "SDL.h" -#include "SDL_error.h" -#include "SDL_haptic.h" #include "../SDL_syshaptic.h" #if SDL_HAPTIC_XINPUT -#include "SDL_hints.h" -#include "SDL_timer.h" #include "SDL_windowshaptic_c.h" #include "SDL_xinputhaptic_c.h" #include "../../core/windows/SDL_xinput.h" diff --git a/src/haptic/windows/SDL_xinputhaptic_c.h b/src/haptic/windows/SDL_xinputhaptic_c.h index 2fb5dd861..4f263e0de 100644 --- a/src/haptic/windows/SDL_xinputhaptic_c.h +++ b/src/haptic/windows/SDL_xinputhaptic_c.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_haptic.h" #include "SDL_windowshaptic_c.h" /* Set up for C function definitions, even when using C++ */ diff --git a/src/hidapi/SDL_hidapi.c b/src/hidapi/SDL_hidapi.c index 5357bfcdb..2cd0b8d0a 100644 --- a/src/hidapi/SDL_hidapi.c +++ b/src/hidapi/SDL_hidapi.c @@ -29,10 +29,6 @@ */ #include "../SDL_internal.h" -#include "SDL_loadso.h" -#include "SDL_hidapi.h" -#include "SDL_thread.h" -#include "SDL_timer.h" #include "SDL_hidapi_c.h" #if !SDL_HIDAPI_DISABLED diff --git a/src/hidapi/android/hid.cpp b/src/hidapi/android/hid.cpp index 34fda42d3..3c5e01fb8 100644 --- a/src/hidapi/android/hid.cpp +++ b/src/hidapi/android/hid.cpp @@ -50,7 +50,6 @@ #if !SDL_HIDAPI_DISABLED -#include "SDL_hints.h" #include "../../core/android/SDL_android.h" #define hid_init PLATFORM_hid_init diff --git a/src/hidapi/ios/hid.m b/src/hidapi/ios/hid.m index 55845701a..1909bfb1d 100644 --- a/src/hidapi/ios/hid.m +++ b/src/hidapi/ios/hid.m @@ -22,7 +22,6 @@ #if !SDL_HIDAPI_DISABLED -#include "SDL_hints.h" #define hid_init PLATFORM_hid_init #define hid_exit PLATFORM_hid_exit diff --git a/src/hidapi/libusb/hid.c b/src/hidapi/libusb/hid.c index 199870197..353ceda25 100644 --- a/src/hidapi/libusb/hid.c +++ b/src/hidapi/libusb/hid.c @@ -29,9 +29,6 @@ #include "../../SDL_internal.h" #include "../../thread/SDL_systhread.h" -#include "SDL_hints.h" -#include "SDL_mutex.h" -#include "SDL_thread.h" #ifdef realloc #undef realloc diff --git a/src/hidapi/linux/hid.c b/src/hidapi/linux/hid.c index cf857a675..41bfd9456 100644 --- a/src/hidapi/linux/hid.c +++ b/src/hidapi/linux/hid.c @@ -22,7 +22,6 @@ ********************************************************/ #include "../../SDL_internal.h" -#include "SDL_hints.h" #ifndef _GNU_SOURCE #define _GNU_SOURCE /* needed for wcsdup() before glibc 2.10 */ diff --git a/src/hidapi/mac/hid.c b/src/hidapi/mac/hid.c index d5dfbc296..256a6671b 100644 --- a/src/hidapi/mac/hid.c +++ b/src/hidapi/mac/hid.c @@ -21,7 +21,6 @@ ********************************************************/ #include "../../SDL_internal.h" -#include "SDL_hints.h" /* See Apple Technical Note TN2187 for details on IOHidManager. */ diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c index 27c09e52e..57d2bc19a 100644 --- a/src/hidapi/windows/hid.c +++ b/src/hidapi/windows/hid.c @@ -21,7 +21,6 @@ ********************************************************/ #include "../../SDL_internal.h" -#include "SDL_hints.h" #include @@ -87,7 +86,6 @@ extern "C" { /*#include */ /* SDL C runtime functions */ -#include "SDL_stdinc.h" #define calloc SDL_calloc #define free SDL_free diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c index c539270d3..9bd300082 100644 --- a/src/joystick/SDL_gamecontroller.c +++ b/src/joystick/SDL_gamecontroller.c @@ -22,9 +22,6 @@ /* This is the game controller API for Simple DirectMedia Layer */ -#include "SDL_events.h" -#include "SDL_hints.h" -#include "SDL_timer.h" #include "SDL_sysjoystick.h" #include "SDL_joystick_c.h" #include "SDL_gamecontrollerdb.h" @@ -37,7 +34,6 @@ #endif #if defined(__ANDROID__) -#include "SDL_system.h" #endif diff --git a/src/joystick/SDL_joystick.c b/src/joystick/SDL_joystick.c index a7351524f..73355e9fc 100644 --- a/src/joystick/SDL_joystick.c +++ b/src/joystick/SDL_joystick.c @@ -22,11 +22,7 @@ /* This is the joystick API for Simple DirectMedia Layer */ -#include "SDL.h" -#include "SDL_atomic.h" -#include "SDL_events.h" #include "SDL_sysjoystick.h" -#include "SDL_hints.h" #include "../SDL_hints_c.h" #if !SDL_EVENTS_DISABLED diff --git a/src/joystick/SDL_joystick_c.h b/src/joystick/SDL_joystick_c.h index 0f2093caf..a17b17eb5 100644 --- a/src/joystick/SDL_joystick_c.h +++ b/src/joystick/SDL_joystick_c.h @@ -25,8 +25,6 @@ #include "../SDL_internal.h" /* Useful functions and variables from SDL_joystick.c */ -#include "SDL_gamecontroller.h" -#include "SDL_joystick.h" /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus diff --git a/src/joystick/SDL_sysjoystick.h b/src/joystick/SDL_sysjoystick.h index ae8372ef7..03cc304a0 100644 --- a/src/joystick/SDL_sysjoystick.h +++ b/src/joystick/SDL_sysjoystick.h @@ -24,7 +24,6 @@ #define SDL_sysjoystick_h_ /* This is the system specific header for the SDL joystick API */ -#include "SDL_joystick.h" #include "SDL_joystick_c.h" /* Set up for C function definitions, even when using C++ */ diff --git a/src/joystick/android/SDL_sysjoystick.c b/src/joystick/android/SDL_sysjoystick.c index a1c8b8898..1c2d829d6 100644 --- a/src/joystick/android/SDL_sysjoystick.c +++ b/src/joystick/android/SDL_sysjoystick.c @@ -23,12 +23,7 @@ #ifdef SDL_JOYSTICK_ANDROID #include /* For the definition of NULL */ -#include "SDL_error.h" -#include "SDL_events.h" -#include "SDL_joystick.h" -#include "SDL_hints.h" -#include "SDL_timer.h" #include "SDL_sysjoystick_c.h" #include "../SDL_joystick_c.h" #include "../../events/SDL_keyboard_c.h" diff --git a/src/joystick/apple/SDL_mfijoystick.m b/src/joystick/apple/SDL_mfijoystick.m index d3e353093..9ff856520 100644 --- a/src/joystick/apple/SDL_mfijoystick.m +++ b/src/joystick/apple/SDL_mfijoystick.m @@ -21,10 +21,6 @@ #include "../../SDL_internal.h" /* This is the iOS implementation of the SDL joystick API */ -#include "SDL_events.h" -#include "SDL_joystick.h" -#include "SDL_hints.h" -#include "SDL_stdinc.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" #include "../hidapi/SDL_hidapijoystick_c.h" diff --git a/src/joystick/apple/SDL_mfijoystick_c.h b/src/joystick/apple/SDL_mfijoystick_c.h index 157dc829e..1e24b7c40 100644 --- a/src/joystick/apple/SDL_mfijoystick_c.h +++ b/src/joystick/apple/SDL_mfijoystick_c.h @@ -23,7 +23,6 @@ #ifndef SDL_JOYSTICK_IOS_H #define SDL_JOYSTICK_IOS_H -#include "SDL_stdinc.h" #include "../SDL_sysjoystick.h" @class GCController; diff --git a/src/joystick/bsd/SDL_bsdjoystick.c b/src/joystick/bsd/SDL_bsdjoystick.c index 598505e5f..9d44a88aa 100644 --- a/src/joystick/bsd/SDL_bsdjoystick.c +++ b/src/joystick/bsd/SDL_bsdjoystick.c @@ -73,7 +73,6 @@ #include #endif -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" #include "../hidapi/SDL_hidapijoystick_c.h" diff --git a/src/joystick/controller_type.c b/src/joystick/controller_type.c index 80ce1185e..f4a99a784 100644 --- a/src/joystick/controller_type.c +++ b/src/joystick/controller_type.c @@ -19,8 +19,6 @@ */ #include "../SDL_internal.h" -#include "SDL_hints.h" -#include "SDL_gamecontroller.h" #include "controller_type.h" diff --git a/src/joystick/darwin/SDL_iokitjoystick.c b/src/joystick/darwin/SDL_iokitjoystick.c index de43c97f3..5352da14f 100644 --- a/src/joystick/darwin/SDL_iokitjoystick.c +++ b/src/joystick/darwin/SDL_iokitjoystick.c @@ -22,8 +22,6 @@ #ifdef SDL_JOYSTICK_IOKIT -#include "SDL_events.h" -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" #include "SDL_iokitjoystick_c.h" diff --git a/src/joystick/dummy/SDL_sysjoystick.c b/src/joystick/dummy/SDL_sysjoystick.c index 3cf8da5f9..5b255c364 100644 --- a/src/joystick/dummy/SDL_sysjoystick.c +++ b/src/joystick/dummy/SDL_sysjoystick.c @@ -24,7 +24,6 @@ /* This is the dummy implementation of the SDL joystick API */ -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" diff --git a/src/joystick/emscripten/SDL_sysjoystick.c b/src/joystick/emscripten/SDL_sysjoystick.c index c875e991b..971109f2f 100644 --- a/src/joystick/emscripten/SDL_sysjoystick.c +++ b/src/joystick/emscripten/SDL_sysjoystick.c @@ -24,11 +24,7 @@ #ifdef SDL_JOYSTICK_EMSCRIPTEN #include /* For the definition of NULL */ -#include "SDL_error.h" -#include "SDL_events.h" -#include "SDL_joystick.h" -#include "SDL_timer.h" #include "SDL_sysjoystick_c.h" #include "../SDL_joystick_c.h" diff --git a/src/joystick/haiku/SDL_haikujoystick.cc b/src/joystick/haiku/SDL_haikujoystick.cc index cacaf7663..99bfdc67a 100644 --- a/src/joystick/haiku/SDL_haikujoystick.cc +++ b/src/joystick/haiku/SDL_haikujoystick.cc @@ -30,7 +30,6 @@ extern "C" { -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_combined.c b/src/joystick/hidapi/SDL_hidapi_combined.c index df092404c..356ceda6a 100644 --- a/src/joystick/hidapi/SDL_hidapi_combined.c +++ b/src/joystick/hidapi/SDL_hidapi_combined.c @@ -23,8 +23,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "SDL_hidapijoystick_c.h" #include "../SDL_sysjoystick.h" diff --git a/src/joystick/hidapi/SDL_hidapi_gamecube.c b/src/joystick/hidapi/SDL_hidapi_gamecube.c index 4e68f47b0..14b4cfed0 100644 --- a/src/joystick/hidapi/SDL_hidapi_gamecube.c +++ b/src/joystick/hidapi/SDL_hidapi_gamecube.c @@ -22,11 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_haptic.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_luna.c b/src/joystick/hidapi/SDL_hidapi_luna.c index f7c4e82d0..162368078 100644 --- a/src/joystick/hidapi/SDL_hidapi_luna.c +++ b/src/joystick/hidapi/SDL_hidapi_luna.c @@ -22,9 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" #include "SDL_hidapi_rumble.h" diff --git a/src/joystick/hidapi/SDL_hidapi_ps3.c b/src/joystick/hidapi/SDL_hidapi_ps3.c index 72006e2f9..a00d2ba29 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps3.c +++ b/src/joystick/hidapi/SDL_hidapi_ps3.c @@ -22,11 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_hints.h" -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_ps4.c b/src/joystick/hidapi/SDL_hidapi_ps4.c index cdea6ce71..de7841b80 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps4.c +++ b/src/joystick/hidapi/SDL_hidapi_ps4.c @@ -25,10 +25,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_ps5.c b/src/joystick/hidapi/SDL_hidapi_ps5.c index d491255ab..2a196d95f 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps5.c +++ b/src/joystick/hidapi/SDL_hidapi_ps5.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_rumble.c b/src/joystick/hidapi/SDL_hidapi_rumble.c index e15ecf052..5e222ed61 100644 --- a/src/joystick/hidapi/SDL_hidapi_rumble.c +++ b/src/joystick/hidapi/SDL_hidapi_rumble.c @@ -24,8 +24,6 @@ /* Handle rumble on a separate thread so it doesn't block the application */ -#include "SDL_thread.h" -#include "SDL_timer.h" #include "SDL_hidapijoystick_c.h" #include "SDL_hidapi_rumble.h" #include "../../thread/SDL_systhread.h" diff --git a/src/joystick/hidapi/SDL_hidapi_shield.c b/src/joystick/hidapi/SDL_hidapi_shield.c index 4fe00901c..1219b7004 100644 --- a/src/joystick/hidapi/SDL_hidapi_shield.c +++ b/src/joystick/hidapi/SDL_hidapi_shield.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" #include "SDL_hidapi_rumble.h" diff --git a/src/joystick/hidapi/SDL_hidapi_stadia.c b/src/joystick/hidapi/SDL_hidapi_stadia.c index a6d54b2a5..157d9eac4 100644 --- a/src/joystick/hidapi/SDL_hidapi_stadia.c +++ b/src/joystick/hidapi/SDL_hidapi_stadia.c @@ -22,9 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" #include "SDL_hidapi_rumble.h" diff --git a/src/joystick/hidapi/SDL_hidapi_steam.c b/src/joystick/hidapi/SDL_hidapi_steam.c index ad32d2c53..0cc52eec5 100644 --- a/src/joystick/hidapi/SDL_hidapi_steam.c +++ b/src/joystick/hidapi/SDL_hidapi_steam.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_switch.c b/src/joystick/hidapi/SDL_hidapi_switch.c index 25b06acdb..dd044a2fc 100644 --- a/src/joystick/hidapi/SDL_hidapi_switch.c +++ b/src/joystick/hidapi/SDL_hidapi_switch.c @@ -25,10 +25,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_wii.c b/src/joystick/hidapi/SDL_hidapi_wii.c index d056d9f30..9ef428199 100644 --- a/src/joystick/hidapi/SDL_hidapi_wii.c +++ b/src/joystick/hidapi/SDL_hidapi_wii.c @@ -22,11 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_hints.h" -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_xbox360.c b/src/joystick/hidapi/SDL_hidapi_xbox360.c index 660b5e72b..26eda3e9e 100644 --- a/src/joystick/hidapi/SDL_hidapi_xbox360.c +++ b/src/joystick/hidapi/SDL_hidapi_xbox360.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_xbox360w.c b/src/joystick/hidapi/SDL_hidapi_xbox360w.c index f0a1d2931..bdb60607c 100644 --- a/src/joystick/hidapi/SDL_hidapi_xbox360w.c +++ b/src/joystick/hidapi/SDL_hidapi_xbox360w.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapi_xboxone.c b/src/joystick/hidapi/SDL_hidapi_xboxone.c index 178b78120..b48d3a3c3 100644 --- a/src/joystick/hidapi/SDL_hidapi_xboxone.c +++ b/src/joystick/hidapi/SDL_hidapi_xboxone.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" #include "../../SDL_hints_c.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" diff --git a/src/joystick/hidapi/SDL_hidapijoystick.c b/src/joystick/hidapi/SDL_hidapijoystick.c index 2ed4aee86..a6bb2b1b1 100644 --- a/src/joystick/hidapi/SDL_hidapijoystick.c +++ b/src/joystick/hidapi/SDL_hidapijoystick.c @@ -22,11 +22,6 @@ #ifdef SDL_JOYSTICK_HIDAPI -#include "SDL_atomic.h" -#include "SDL_endian.h" -#include "SDL_hints.h" -#include "SDL_timer.h" -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "SDL_hidapijoystick_c.h" #include "SDL_hidapi_rumble.h" diff --git a/src/joystick/hidapi/SDL_hidapijoystick_c.h b/src/joystick/hidapi/SDL_hidapijoystick_c.h index 55c9b5973..f5e766ecd 100644 --- a/src/joystick/hidapi/SDL_hidapijoystick_c.h +++ b/src/joystick/hidapi/SDL_hidapijoystick_c.h @@ -23,12 +23,6 @@ #ifndef SDL_JOYSTICK_HIDAPI_H #define SDL_JOYSTICK_HIDAPI_H -#include "SDL_atomic.h" -#include "SDL_hints.h" -#include "SDL_mutex.h" -#include "SDL_joystick.h" -#include "SDL_gamecontroller.h" -#include "SDL_hidapi.h" #include "../usb_ids.h" /* This is the full set of HIDAPI drivers available */ diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c index 5d3a994f5..ed889eaf6 100644 --- a/src/joystick/linux/SDL_sysjoystick.c +++ b/src/joystick/linux/SDL_sysjoystick.c @@ -40,11 +40,6 @@ #include #include -#include "SDL_hints.h" -#include "SDL_joystick.h" -#include "SDL_log.h" -#include "SDL_endian.h" -#include "SDL_timer.h" #include "../../events/SDL_events_c.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" diff --git a/src/joystick/n3ds/SDL_sysjoystick.c b/src/joystick/n3ds/SDL_sysjoystick.c index 933f64ee0..e1e344a11 100644 --- a/src/joystick/n3ds/SDL_sysjoystick.c +++ b/src/joystick/n3ds/SDL_sysjoystick.c @@ -27,7 +27,6 @@ #include <3ds.h> #include "../SDL_sysjoystick.h" -#include "SDL_events.h" #define NB_BUTTONS 23 diff --git a/src/joystick/ps2/SDL_sysjoystick.c b/src/joystick/ps2/SDL_sysjoystick.c index 3847d79c5..a8002a4fc 100644 --- a/src/joystick/ps2/SDL_sysjoystick.c +++ b/src/joystick/ps2/SDL_sysjoystick.c @@ -34,8 +34,6 @@ #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" -#include "SDL_events.h" -#include "SDL_error.h" #define PS2_MAX_PORT 2 /* each ps2 has 2 ports */ #define PS2_MAX_SLOT 4 /* maximum - 4 slots in one multitap */ diff --git a/src/joystick/psp/SDL_sysjoystick.c b/src/joystick/psp/SDL_sysjoystick.c index 06c0f285b..0969474f2 100644 --- a/src/joystick/psp/SDL_sysjoystick.c +++ b/src/joystick/psp/SDL_sysjoystick.c @@ -31,8 +31,6 @@ #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" -#include "SDL_events.h" -#include "SDL_error.h" /* Current pad state */ static SceCtrlData pad = { .Lx = 0, .Ly = 0, .Buttons = 0 }; diff --git a/src/joystick/virtual/SDL_virtualjoystick.c b/src/joystick/virtual/SDL_virtualjoystick.c index 9a6d9430e..3b6ada424 100644 --- a/src/joystick/virtual/SDL_virtualjoystick.c +++ b/src/joystick/virtual/SDL_virtualjoystick.c @@ -24,7 +24,6 @@ /* This is the virtual implementation of the SDL joystick API */ -#include "SDL_endian.h" #include "SDL_virtualjoystick_c.h" #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" diff --git a/src/joystick/virtual/SDL_virtualjoystick_c.h b/src/joystick/virtual/SDL_virtualjoystick_c.h index 5e15f1dd6..0b8aef814 100644 --- a/src/joystick/virtual/SDL_virtualjoystick_c.h +++ b/src/joystick/virtual/SDL_virtualjoystick_c.h @@ -25,7 +25,6 @@ #if SDL_JOYSTICK_VIRTUAL -#include "SDL_joystick.h" /** * Data for a virtual, software-only joystick. diff --git a/src/joystick/vita/SDL_sysjoystick.c b/src/joystick/vita/SDL_sysjoystick.c index 994655fc6..1931c57e3 100644 --- a/src/joystick/vita/SDL_sysjoystick.c +++ b/src/joystick/vita/SDL_sysjoystick.c @@ -33,11 +33,6 @@ #include "../SDL_sysjoystick.h" #include "../SDL_joystick_c.h" -#include "SDL_events.h" -#include "SDL_error.h" -#include "SDL_thread.h" -#include "SDL_mutex.h" -#include "SDL_timer.h" /* Current pad state */ static SceCtrlData pad0 = { .lx = 0, .ly = 0, .rx = 0, .ry = 0, .lt = 0, .rt = 0, .buttons = 0 }; diff --git a/src/joystick/windows/SDL_dinputjoystick.c b/src/joystick/windows/SDL_dinputjoystick.c index 9c5a46bd0..f8d9c0715 100644 --- a/src/joystick/windows/SDL_dinputjoystick.c +++ b/src/joystick/windows/SDL_dinputjoystick.c @@ -24,8 +24,6 @@ #if SDL_JOYSTICK_DINPUT -#include "SDL_hints.h" -#include "SDL_timer.h" #include "SDL_windowsjoystick_c.h" #include "SDL_dinputjoystick_c.h" #include "SDL_rawinputjoystick_c.h" diff --git a/src/joystick/windows/SDL_rawinputjoystick.c b/src/joystick/windows/SDL_rawinputjoystick.c index fc738b07f..9568360ef 100644 --- a/src/joystick/windows/SDL_rawinputjoystick.c +++ b/src/joystick/windows/SDL_rawinputjoystick.c @@ -33,10 +33,6 @@ #if SDL_JOYSTICK_RAWINPUT -#include "SDL_endian.h" -#include "SDL_events.h" -#include "SDL_hints.h" -#include "SDL_timer.h" #include "../usb_ids.h" #include "../SDL_sysjoystick.h" #include "../../core/windows/SDL_windows.h" diff --git a/src/joystick/windows/SDL_windows_gaming_input.c b/src/joystick/windows/SDL_windows_gaming_input.c index 3a89d1154..c63b24ad5 100644 --- a/src/joystick/windows/SDL_windows_gaming_input.c +++ b/src/joystick/windows/SDL_windows_gaming_input.c @@ -22,10 +22,6 @@ #ifdef SDL_JOYSTICK_WGI -#include "SDL_assert.h" -#include "SDL_atomic.h" -#include "SDL_endian.h" -#include "SDL_events.h" #include "../SDL_sysjoystick.h" #include "../hidapi/SDL_hidapijoystick_c.h" #include "SDL_rawinputjoystick_c.h" diff --git a/src/joystick/windows/SDL_windowsjoystick.c b/src/joystick/windows/SDL_windowsjoystick.c index ccd8f37bb..f15fe8f87 100644 --- a/src/joystick/windows/SDL_windowsjoystick.c +++ b/src/joystick/windows/SDL_windowsjoystick.c @@ -32,12 +32,6 @@ * with polled devices, and it's fine to call IDirectInputDevice8_GetDeviceData and * let it return 0 events. */ -#include "SDL_error.h" -#include "SDL_events.h" -#include "SDL_hints.h" -#include "SDL_timer.h" -#include "SDL_mutex.h" -#include "SDL_joystick.h" #include "../SDL_sysjoystick.h" #include "../../thread/SDL_systhread.h" #include "../../core/windows/SDL_windows.h" diff --git a/src/joystick/windows/SDL_windowsjoystick_c.h b/src/joystick/windows/SDL_windowsjoystick_c.h index 00e1cf101..875326437 100644 --- a/src/joystick/windows/SDL_windowsjoystick_c.h +++ b/src/joystick/windows/SDL_windowsjoystick_c.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_events.h" #include "../SDL_sysjoystick.h" #include "../../core/windows/SDL_windows.h" #include "../../core/windows/SDL_directx.h" diff --git a/src/joystick/windows/SDL_xinputjoystick.c b/src/joystick/windows/SDL_xinputjoystick.c index 4fa3555b9..488136f5f 100644 --- a/src/joystick/windows/SDL_xinputjoystick.c +++ b/src/joystick/windows/SDL_xinputjoystick.c @@ -24,8 +24,6 @@ #if SDL_JOYSTICK_XINPUT -#include "SDL_hints.h" -#include "SDL_timer.h" #include "SDL_windowsjoystick_c.h" #include "SDL_xinputjoystick_c.h" #include "SDL_rawinputjoystick_c.h" diff --git a/src/libm/k_rem_pio2.c b/src/libm/k_rem_pio2.c index 536f359b3..8f2a1f1dd 100644 --- a/src/libm/k_rem_pio2.c +++ b/src/libm/k_rem_pio2.c @@ -128,7 +128,6 @@ #include "math_libm.h" #include "math_private.h" -#include "SDL_assert.h" static const int init_jk[] = {2,3,4,6}; /* initial value for jk */ diff --git a/src/libm/math_private.h b/src/libm/math_private.h index ee67c444e..8a468bf47 100644 --- a/src/libm/math_private.h +++ b/src/libm/math_private.h @@ -18,7 +18,6 @@ #define _MATH_PRIVATE_H_ /* #include */ -#include "SDL_endian.h" /* #include */ #define _IEEE_LIBM diff --git a/src/loadso/dlopen/SDL_sysloadso.c b/src/loadso/dlopen/SDL_sysloadso.c index 3b55a6e81..c9f4f5216 100644 --- a/src/loadso/dlopen/SDL_sysloadso.c +++ b/src/loadso/dlopen/SDL_sysloadso.c @@ -28,7 +28,6 @@ #include #include -#include "SDL_loadso.h" #if SDL_VIDEO_DRIVER_UIKIT #include "../../video/uikit/SDL_uikitvideo.h" diff --git a/src/loadso/dummy/SDL_sysloadso.c b/src/loadso/dummy/SDL_sysloadso.c index da45a842f..8ec840760 100644 --- a/src/loadso/dummy/SDL_sysloadso.c +++ b/src/loadso/dummy/SDL_sysloadso.c @@ -25,7 +25,6 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* System dependent library loading routines */ -#include "SDL_loadso.h" void * SDL_LoadObject(const char *sofile) diff --git a/src/loadso/windows/SDL_sysloadso.c b/src/loadso/windows/SDL_sysloadso.c index 1157ed3b5..1125f7464 100644 --- a/src/loadso/windows/SDL_sysloadso.c +++ b/src/loadso/windows/SDL_sysloadso.c @@ -27,7 +27,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_loadso.h" void * SDL_LoadObject(const char *sofile) diff --git a/src/locale/SDL_locale.c b/src/locale/SDL_locale.c index 5aaf87284..1ac15b854 100644 --- a/src/locale/SDL_locale.c +++ b/src/locale/SDL_locale.c @@ -21,7 +21,6 @@ #include "../SDL_internal.h" #include "SDL_syslocale.h" -#include "SDL_hints.h" static SDL_Locale * build_locales_from_csv_string(char *csv) diff --git a/src/locale/SDL_syslocale.h b/src/locale/SDL_syslocale.h index 6c3f2e01b..37ed7840d 100644 --- a/src/locale/SDL_syslocale.h +++ b/src/locale/SDL_syslocale.h @@ -22,7 +22,6 @@ /* This is the system specific header for the SDL locale API */ -#include "SDL_locale.h" #ifdef __cplusplus extern "C" { diff --git a/src/main/dummy/SDL_dummy_main.c b/src/main/dummy/SDL_dummy_main.c index b78d8db14..a6e99b74e 100644 --- a/src/main/dummy/SDL_dummy_main.c +++ b/src/main/dummy/SDL_dummy_main.c @@ -1,10 +1,7 @@ /* SDL_dummy_main.c, placed in the public domain by Sam Lantinga 3/13/14 */ -#include "../../SDL_internal.h" - -/* Include the SDL main definition header */ -#include "SDL_main.h" +#include #ifdef main #undef main diff --git a/src/main/gdk/SDL_gdk_main.c b/src/main/gdk/SDL_gdk_main.c index 9cc8c4a24..130110b3d 100644 --- a/src/main/gdk/SDL_gdk_main.c +++ b/src/main/gdk/SDL_gdk_main.c @@ -18,14 +18,11 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ +#include /* Include this so we define UNICODE properly */ #include "../../core/windows/SDL_windows.h" -/* Include the SDL main definition header */ -#include "SDL.h" -#include "SDL_main.h" - #ifdef main # undef main #endif /* main */ diff --git a/src/main/haiku/SDL_BApp.h b/src/main/haiku/SDL_BApp.h index 215f83662..435569d7d 100644 --- a/src/main/haiku/SDL_BApp.h +++ b/src/main/haiku/SDL_BApp.h @@ -37,7 +37,6 @@ extern "C" { #include "../../SDL_internal.h" -#include "SDL_video.h" /* Local includes */ #include "../../events/SDL_events_c.h" diff --git a/src/main/haiku/SDL_BeApp.cc b/src/main/haiku/SDL_BeApp.cc index a5e1428cc..3e31d1b18 100644 --- a/src/main/haiku/SDL_BeApp.cc +++ b/src/main/haiku/SDL_BeApp.cc @@ -33,8 +33,6 @@ #include "SDL_BApp.h" /* SDL_BApp class definition */ #include "SDL_BeApp.h" -#include "SDL_timer.h" -#include "SDL_error.h" #include "../../video/haiku/SDL_BWin.h" diff --git a/src/main/n3ds/SDL_n3ds_main.c b/src/main/n3ds/SDL_n3ds_main.c index 1ccd01480..e340e6feb 100644 --- a/src/main/n3ds/SDL_n3ds_main.c +++ b/src/main/n3ds/SDL_n3ds_main.c @@ -18,12 +18,10 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ - -#include "../../SDL_internal.h" +#include #ifdef __3DS__ -#include "SDL_main.h" #include <3ds.h> #ifdef main diff --git a/src/main/ngage/SDL_ngage_main.cpp b/src/main/ngage/SDL_ngage_main.cpp index 6dbf2f141..8d7cf0d48 100644 --- a/src/main/ngage/SDL_ngage_main.cpp +++ b/src/main/ngage/SDL_ngage_main.cpp @@ -1,10 +1,7 @@ /* SDL_ngage_main.c, originally for SDL 1.2 by Hannu Viitala */ -#include "../../SDL_internal.h" - -/* Include the SDL main definition header */ -#include "SDL_main.h" +#include #include #include @@ -16,7 +13,10 @@ #include #include -#include "SDL_error.h" + +#ifdef main +#undef main +#endif extern "C" int main(int argc, char *argv[]); diff --git a/src/main/ps2/SDL_ps2_main.c b/src/main/ps2/SDL_ps2_main.c index c58ad1838..e98d460db 100644 --- a/src/main/ps2/SDL_ps2_main.c +++ b/src/main/ps2/SDL_ps2_main.c @@ -1,14 +1,10 @@ /* SDL_ps2_main.c, fjtrujy@gmail.com */ - -#include "SDL_platform.h" +#include #ifdef __PS2__ -#include "SDL_main.h" -#include "SDL_error.h" - #include #include #include diff --git a/src/main/psp/SDL_psp_main.c b/src/main/psp/SDL_psp_main.c index 07b6d89bc..c9d121427 100644 --- a/src/main/psp/SDL_psp_main.c +++ b/src/main/psp/SDL_psp_main.c @@ -1,11 +1,10 @@ /* SDL_psp_main.c, placed in the public domain by Sam Lantinga 3/13/14 */ -#include "SDL_platform.h" +#include #ifdef __PSP__ -#include "SDL_main.h" #include #include diff --git a/src/main/uikit/SDL_uikit_main.c b/src/main/uikit/SDL_uikit_main.c index 1b4dc89d9..16fc6d0c7 100644 --- a/src/main/uikit/SDL_uikit_main.c +++ b/src/main/uikit/SDL_uikit_main.c @@ -1,9 +1,7 @@ /* SDL_uikit_main.c, placed in the public domain by Sam Lantinga 3/18/2019 */ - -/* Include the SDL main definition header */ -#include "SDL_main.h" +#include #if defined(__IOS__) || defined(__TVOS__) diff --git a/src/main/windows/SDL_windows_main.c b/src/main/windows/SDL_windows_main.c index 029f55646..e626235e6 100644 --- a/src/main/windows/SDL_windows_main.c +++ b/src/main/windows/SDL_windows_main.c @@ -3,7 +3,7 @@ The WinMain function -- calls your program's main() function */ -#include "SDL_platform.h" +#include #ifdef __WIN32__ @@ -11,10 +11,6 @@ #include "../../core/windows/SDL_windows.h" #include /* CommandLineToArgvW() */ -/* Include the SDL main definition header */ -#include "SDL.h" -#include "SDL_main.h" - #ifdef main # undef main #endif /* main */ diff --git a/src/main/winrt/SDL_winrt_main_NonXAML.cpp b/src/main/winrt/SDL_winrt_main_NonXAML.cpp index 19d22504c..ea5fabddc 100644 --- a/src/main/winrt/SDL_winrt_main_NonXAML.cpp +++ b/src/main/winrt/SDL_winrt_main_NonXAML.cpp @@ -1,8 +1,8 @@ /* SDL_winrt_main_NonXAML.cpp, placed in the public domain by David Ludwig 3/13/14 */ +#include -#include "SDL_main.h" #include /* At least one file in any SDL/WinRT app appears to require compilation diff --git a/src/misc/SDL_sysurl.h b/src/misc/SDL_sysurl.h index 28cc40daf..b01dc9e3c 100644 --- a/src/misc/SDL_sysurl.h +++ b/src/misc/SDL_sysurl.h @@ -20,8 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_misc.h" -#include "SDL_error.h" #ifdef __cplusplus extern "C" { diff --git a/src/power/SDL_power.c b/src/power/SDL_power.c index 678f5e094..88418de08 100644 --- a/src/power/SDL_power.c +++ b/src/power/SDL_power.c @@ -19,7 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "../SDL_internal.h" -#include "SDL_power.h" #include "SDL_syspower.h" /* diff --git a/src/power/SDL_syspower.h b/src/power/SDL_syspower.h index 2f81756c4..496d0d875 100644 --- a/src/power/SDL_syspower.h +++ b/src/power/SDL_syspower.h @@ -25,7 +25,6 @@ #ifndef SDL_syspower_h_ #define SDL_syspower_h_ -#include "SDL_power.h" /* Not all of these are available in a given build. Use #ifdefs, etc. */ SDL_bool SDL_GetPowerInfo_Linux_org_freedesktop_upower(SDL_PowerState *, int *, int *); diff --git a/src/power/android/SDL_syspower.c b/src/power/android/SDL_syspower.c index 4be3b1502..f71102509 100644 --- a/src/power/android/SDL_syspower.c +++ b/src/power/android/SDL_syspower.c @@ -23,7 +23,6 @@ #ifndef SDL_POWER_DISABLED #if SDL_POWER_ANDROID -#include "SDL_power.h" #include "../SDL_syspower.h" #include "../../core/android/SDL_android.h" diff --git a/src/power/emscripten/SDL_syspower.c b/src/power/emscripten/SDL_syspower.c index 4bac68602..e2a882f5b 100644 --- a/src/power/emscripten/SDL_syspower.c +++ b/src/power/emscripten/SDL_syspower.c @@ -25,7 +25,6 @@ #include -#include "SDL_power.h" SDL_bool SDL_GetPowerInfo_Emscripten(SDL_PowerState *state, int *seconds, int *percent) diff --git a/src/power/haiku/SDL_syspower.c b/src/power/haiku/SDL_syspower.c index ac1fae917..402bc8769 100644 --- a/src/power/haiku/SDL_syspower.c +++ b/src/power/haiku/SDL_syspower.c @@ -40,7 +40,6 @@ #define APM_DEVICE_ALL 1 #define APM_BIOS_CALL (B_DEVICE_OP_CODES_END + 3) -#include "SDL_power.h" SDL_bool SDL_GetPowerInfo_Haiku(SDL_PowerState * state, int *seconds, int *percent) diff --git a/src/power/linux/SDL_syspower.c b/src/power/linux/SDL_syspower.c index c33ab5c94..24d80eea2 100644 --- a/src/power/linux/SDL_syspower.c +++ b/src/power/linux/SDL_syspower.c @@ -31,7 +31,6 @@ #include #include -#include "SDL_power.h" #include "../SDL_syspower.h" #include "../../core/linux/SDL_dbus.h" diff --git a/src/power/macos/SDL_syspower.c b/src/power/macos/SDL_syspower.c index 5c3945321..14679f9b8 100644 --- a/src/power/macos/SDL_syspower.c +++ b/src/power/macos/SDL_syspower.c @@ -27,7 +27,6 @@ #include #include -#include "SDL_power.h" /* CoreFoundation is so verbose... */ #define STRMATCH(a,b) (CFStringCompare(a, b, 0) == kCFCompareEqualTo) diff --git a/src/power/n3ds/SDL_syspower.c b/src/power/n3ds/SDL_syspower.c index fe167aff6..ece736ccc 100644 --- a/src/power/n3ds/SDL_syspower.c +++ b/src/power/n3ds/SDL_syspower.c @@ -25,8 +25,6 @@ #include <3ds.h> -#include "SDL_error.h" -#include "SDL_power.h" SDL_FORCE_INLINE SDL_PowerState GetPowerState(void); SDL_FORCE_INLINE int ReadStateFromPTMU(bool *is_plugged, u8 *is_charging); diff --git a/src/power/psp/SDL_syspower.c b/src/power/psp/SDL_syspower.c index ca9ba66b7..18b8b7119 100644 --- a/src/power/psp/SDL_syspower.c +++ b/src/power/psp/SDL_syspower.c @@ -24,7 +24,6 @@ #ifndef SDL_POWER_DISABLED #if SDL_POWER_PSP -#include "SDL_power.h" #include diff --git a/src/power/uikit/SDL_syspower.h b/src/power/uikit/SDL_syspower.h index a412780b0..d454ce0df 100644 --- a/src/power/uikit/SDL_syspower.h +++ b/src/power/uikit/SDL_syspower.h @@ -22,7 +22,6 @@ #if SDL_POWER_UIKIT -#include "SDL_power.h" void SDL_UIKit_UpdateBatteryMonitoring(void); SDL_bool SDL_GetPowerInfo_UIKit(SDL_PowerState * state, int *seconds, int *percent); diff --git a/src/power/uikit/SDL_syspower.m b/src/power/uikit/SDL_syspower.m index 2a5ec9c6a..8ebccd2ef 100644 --- a/src/power/uikit/SDL_syspower.m +++ b/src/power/uikit/SDL_syspower.m @@ -25,8 +25,6 @@ #import -#include "SDL_power.h" -#include "SDL_timer.h" #include "SDL_syspower.h" #if !TARGET_OS_TV diff --git a/src/power/vita/SDL_syspower.c b/src/power/vita/SDL_syspower.c index 46eef930e..7be21b3ce 100644 --- a/src/power/vita/SDL_syspower.c +++ b/src/power/vita/SDL_syspower.c @@ -24,7 +24,6 @@ #ifndef SDL_POWER_DISABLED #if SDL_POWER_VITA -#include "SDL_power.h" #include diff --git a/src/power/windows/SDL_syspower.c b/src/power/windows/SDL_syspower.c index 666b563a7..6bb110652 100644 --- a/src/power/windows/SDL_syspower.c +++ b/src/power/windows/SDL_syspower.c @@ -25,7 +25,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_power.h" SDL_bool SDL_GetPowerInfo_Windows(SDL_PowerState * state, int *seconds, int *percent) diff --git a/src/power/winrt/SDL_syspower.cpp b/src/power/winrt/SDL_syspower.cpp index 62e7ea6d6..88e9ca056 100644 --- a/src/power/winrt/SDL_syspower.cpp +++ b/src/power/winrt/SDL_syspower.cpp @@ -23,7 +23,6 @@ #ifndef SDL_POWER_DISABLED #if SDL_POWER_WINRT -#include "SDL_power.h" extern "C" SDL_bool diff --git a/src/render/SDL_d3dmath.c b/src/render/SDL_d3dmath.c index fb7de371f..647558911 100644 --- a/src/render/SDL_d3dmath.c +++ b/src/render/SDL_d3dmath.c @@ -21,7 +21,6 @@ #include "../SDL_internal.h" #if (SDL_VIDEO_RENDER_D3D || SDL_VIDEO_RENDER_D3D11 || SDL_VIDEO_RENDER_D3D12) && !SDL_RENDER_DISABLED -#include "SDL_stdinc.h" #include "SDL_d3dmath.h" diff --git a/src/render/SDL_render.c b/src/render/SDL_render.c index 36cd9799a..6344f6f84 100644 --- a/src/render/SDL_render.c +++ b/src/render/SDL_render.c @@ -22,9 +22,6 @@ /* The SDL 2D rendering system */ -#include "SDL_hints.h" -#include "SDL_render.h" -#include "SDL_timer.h" #include "SDL_sysrender.h" #include "software/SDL_render_sw_c.h" #include "../video/SDL_pixels_c.h" diff --git a/src/render/SDL_sysrender.h b/src/render/SDL_sysrender.h index d9b6651c4..686f16e45 100644 --- a/src/render/SDL_sysrender.h +++ b/src/render/SDL_sysrender.h @@ -23,9 +23,6 @@ #ifndef SDL_sysrender_h_ #define SDL_sysrender_h_ -#include "SDL_render.h" -#include "SDL_events.h" -#include "SDL_mutex.h" #include "SDL_yuv_sw_c.h" /* Set up for C function definitions, even when using C++ */ diff --git a/src/render/SDL_yuv_sw.c b/src/render/SDL_yuv_sw.c index 10fe54e69..cd9a4fd0f 100644 --- a/src/render/SDL_yuv_sw.c +++ b/src/render/SDL_yuv_sw.c @@ -26,7 +26,6 @@ #include "SDL_yuv_sw_c.h" -#include "SDL_cpuinfo.h" SDL_SW_YUVTexture * diff --git a/src/render/SDL_yuv_sw_c.h b/src/render/SDL_yuv_sw_c.h index 8d9dc79cd..957024698 100644 --- a/src/render/SDL_yuv_sw_c.h +++ b/src/render/SDL_yuv_sw_c.h @@ -24,7 +24,6 @@ #include "../SDL_internal.h" -#include "SDL_video.h" /* This is the software implementation of the YUV texture support */ diff --git a/src/render/direct3d/SDL_render_d3d.c b/src/render/direct3d/SDL_render_d3d.c index 95fb971b7..dd33a238e 100644 --- a/src/render/direct3d/SDL_render_d3d.c +++ b/src/render/direct3d/SDL_render_d3d.c @@ -20,21 +20,17 @@ */ #include "../../SDL_internal.h" -#include "SDL_render.h" -#include "SDL_system.h" #if SDL_VIDEO_RENDER_D3D && !SDL_RENDER_DISABLED #include "../../core/windows/SDL_windows.h" -#include "SDL_hints.h" -#include "SDL_loadso.h" #include "../SDL_sysrender.h" #include "../SDL_d3dmath.h" #include "../../video/windows/SDL_windowsvideo.h" #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include #if SDL_VIDEO_RENDER_D3D #define D3D_DEBUG_INFO diff --git a/src/render/direct3d/SDL_shaders_d3d.c b/src/render/direct3d/SDL_shaders_d3d.c index d734351c8..8a510cc90 100644 --- a/src/render/direct3d/SDL_shaders_d3d.c +++ b/src/render/direct3d/SDL_shaders_d3d.c @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_render.h" -#include "SDL_system.h" #if SDL_VIDEO_RENDER_D3D && !SDL_RENDER_DISABLED diff --git a/src/render/direct3d11/SDL_render_d3d11.c b/src/render/direct3d11/SDL_render_d3d11.c index 367eebc1c..a8744f9f7 100644 --- a/src/render/direct3d11/SDL_render_d3d11.c +++ b/src/render/direct3d11/SDL_render_d3d11.c @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_render.h" -#include "SDL_system.h" #if SDL_VIDEO_RENDER_D3D11 && !SDL_RENDER_DISABLED @@ -30,13 +28,11 @@ #if !defined(__WINRT__) #include "../../video/windows/SDL_windowswindow.h" #endif -#include "SDL_hints.h" -#include "SDL_loadso.h" #include "../SDL_sysrender.h" #include "../SDL_d3dmath.h" #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include #include diff --git a/src/render/direct3d11/SDL_render_winrt.cpp b/src/render/direct3d11/SDL_render_winrt.cpp index f2fb1db14..0a34895b9 100644 --- a/src/render/direct3d11/SDL_render_winrt.cpp +++ b/src/render/direct3d11/SDL_render_winrt.cpp @@ -40,7 +40,7 @@ using namespace Windows::Graphics::Display; #include #define SDL_ENABLE_SYSWM_WINRT -#include "SDL_syswm.h" +#include #include "SDL_render_winrt.h" diff --git a/src/render/direct3d11/SDL_render_winrt.h b/src/render/direct3d11/SDL_render_winrt.h index 97d27cb27..274e06b59 100644 --- a/src/render/direct3d11/SDL_render_winrt.h +++ b/src/render/direct3d11/SDL_render_winrt.h @@ -22,7 +22,6 @@ #if SDL_VIDEO_RENDER_D3D11 && !SDL_RENDER_DISABLED -#include "SDL_render.h" #ifdef __cplusplus extern "C" { diff --git a/src/render/direct3d11/SDL_shaders_d3d11.c b/src/render/direct3d11/SDL_shaders_d3d11.c index 3a6807b5f..372d3ef67 100644 --- a/src/render/direct3d11/SDL_shaders_d3d11.c +++ b/src/render/direct3d11/SDL_shaders_d3d11.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_RENDER_D3D11 && !SDL_RENDER_DISABLED -#include "SDL_stdinc.h" #define COBJMACROS #include "../../core/windows/SDL_windows.h" diff --git a/src/render/direct3d12/SDL_render_d3d12.c b/src/render/direct3d12/SDL_render_d3d12.c index 673b01734..18cb5b65b 100644 --- a/src/render/direct3d12/SDL_render_d3d12.c +++ b/src/render/direct3d12/SDL_render_d3d12.c @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_render.h" -#include "SDL_system.h" #if SDL_VIDEO_RENDER_D3D12 && !SDL_RENDER_DISABLED @@ -32,13 +30,11 @@ #include "../../core/windows/SDL_windows.h" #include "../../video/windows/SDL_windowswindow.h" -#include "SDL_hints.h" -#include "SDL_loadso.h" #include "../SDL_sysrender.h" #include "../SDL_d3dmath.h" #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include #if defined(__XBOXONE__) || defined(__XBOXSERIES__) #include "SDL_render_d3d12_xbox.h" diff --git a/src/render/direct3d12/SDL_shaders_d3d12.c b/src/render/direct3d12/SDL_shaders_d3d12.c index 2bb56d5d5..6bcf898f4 100644 --- a/src/render/direct3d12/SDL_shaders_d3d12.c +++ b/src/render/direct3d12/SDL_shaders_d3d12.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_RENDER_D3D12 && !SDL_RENDER_DISABLED && !defined(__XBOXONE__) && !defined(__XBOXSERIES__) -#include "SDL_stdinc.h" #include "../../core/windows/SDL_windows.h" #include diff --git a/src/render/metal/SDL_render_metal.m b/src/render/metal/SDL_render_metal.m index 852234218..5325db98c 100644 --- a/src/render/metal/SDL_render_metal.m +++ b/src/render/metal/SDL_render_metal.m @@ -22,8 +22,6 @@ #if SDL_VIDEO_RENDER_METAL && !SDL_RENDER_DISABLED -#include "SDL_hints.h" -#include "SDL_metal.h" #include "../SDL_sysrender.h" #include @@ -39,7 +37,7 @@ #import #define SDL_ENABLE_SYSWM_UIKIT #endif -#include "SDL_syswm.h" +#include /* Regenerate these with build-metal-shaders.sh */ #ifdef __MACOS__ diff --git a/src/render/opengl/SDL_render_gl.c b/src/render/opengl/SDL_render_gl.c index fcdf900c5..fd93b69de 100644 --- a/src/render/opengl/SDL_render_gl.c +++ b/src/render/opengl/SDL_render_gl.c @@ -21,9 +21,8 @@ #include "../../SDL_internal.h" #if SDL_VIDEO_RENDER_OGL && !SDL_RENDER_DISABLED -#include "SDL_hints.h" #include "../../video/SDL_sysvideo.h" /* For SDL_GL_SwapWindowWithResult */ -#include "SDL_opengl.h" +#include #include "../SDL_sysrender.h" #include "SDL_shaders_gl.h" #include "../../SDL_utils_c.h" diff --git a/src/render/opengl/SDL_shaders_gl.c b/src/render/opengl/SDL_shaders_gl.c index 4db083555..dfdf924a8 100644 --- a/src/render/opengl/SDL_shaders_gl.c +++ b/src/render/opengl/SDL_shaders_gl.c @@ -22,9 +22,7 @@ #if SDL_VIDEO_RENDER_OGL && !SDL_RENDER_DISABLED -#include "SDL_stdinc.h" -#include "SDL_opengl.h" -#include "SDL_video.h" +#include #include "SDL_shaders_gl.h" /* OpenGL shader implementation */ diff --git a/src/render/opengles/SDL_render_gles.c b/src/render/opengles/SDL_render_gles.c index 8e918c665..35d8d5ae0 100644 --- a/src/render/opengles/SDL_render_gles.c +++ b/src/render/opengles/SDL_render_gles.c @@ -22,9 +22,8 @@ #if SDL_VIDEO_RENDER_OGL_ES && !SDL_RENDER_DISABLED -#include "SDL_hints.h" #include "../../video/SDL_sysvideo.h" /* For SDL_GL_SwapWindowWithResult */ -#include "SDL_opengles.h" +#include #include "../SDL_sysrender.h" #include "../../SDL_utils_c.h" diff --git a/src/render/opengles2/SDL_render_gles2.c b/src/render/opengles2/SDL_render_gles2.c index da48e4d6e..8a6175b68 100644 --- a/src/render/opengles2/SDL_render_gles2.c +++ b/src/render/opengles2/SDL_render_gles2.c @@ -22,9 +22,8 @@ #if SDL_VIDEO_RENDER_OGL_ES2 && !SDL_RENDER_DISABLED -#include "SDL_hints.h" #include "../../video/SDL_sysvideo.h" /* For SDL_GL_SwapWindowWithResult */ -#include "SDL_opengles2.h" +#include #include "../SDL_sysrender.h" #include "../../video/SDL_blit.h" #include "SDL_shaders_gles2.h" diff --git a/src/render/opengles2/SDL_shaders_gles2.c b/src/render/opengles2/SDL_shaders_gles2.c index cd7f6f12a..5c6a03efd 100644 --- a/src/render/opengles2/SDL_shaders_gles2.c +++ b/src/render/opengles2/SDL_shaders_gles2.c @@ -22,11 +22,8 @@ #if SDL_VIDEO_RENDER_OGL_ES2 && !SDL_RENDER_DISABLED -#include "SDL_hints.h" -#include "SDL_video.h" -#include "SDL_opengles2.h" +#include #include "SDL_shaders_gles2.h" -#include "SDL_stdinc.h" /************************************************************************************************* * Vertex/fragment shader source * diff --git a/src/render/ps2/SDL_render_ps2.c b/src/render/ps2/SDL_render_ps2.c index f385f5354..d4db196f7 100644 --- a/src/render/ps2/SDL_render_ps2.c +++ b/src/render/ps2/SDL_render_ps2.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_RENDER_PS2 #include "../SDL_sysrender.h" -#include "SDL_hints.h" #include #include diff --git a/src/render/psp/SDL_render_psp.c b/src/render/psp/SDL_render_psp.c index 9a4e5c7bb..1e026f5c7 100644 --- a/src/render/psp/SDL_render_psp.c +++ b/src/render/psp/SDL_render_psp.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_RENDER_PSP -#include "SDL_hints.h" #include "../SDL_sysrender.h" #include diff --git a/src/render/software/SDL_render_sw.c b/src/render/software/SDL_render_sw.c index 6e54b67c6..34b1c88f5 100644 --- a/src/render/software/SDL_render_sw.c +++ b/src/render/software/SDL_render_sw.c @@ -24,7 +24,6 @@ #include "../SDL_sysrender.h" #include "SDL_render_sw_c.h" -#include "SDL_hints.h" #include "SDL_draw.h" #include "SDL_blendfillrect.h" diff --git a/src/render/software/SDL_rotate.c b/src/render/software/SDL_rotate.c index 140d398d7..96c262887 100644 --- a/src/render/software/SDL_rotate.c +++ b/src/render/software/SDL_rotate.c @@ -39,7 +39,6 @@ Andreas Schiffler -- aschiffler at ferzkopp dot net #include #include -#include "SDL.h" #include "SDL_rotate.h" /* ---- Internally used structures */ diff --git a/src/render/software/SDL_triangle.c b/src/render/software/SDL_triangle.c index f70c07933..4f9b8838a 100644 --- a/src/render/software/SDL_triangle.c +++ b/src/render/software/SDL_triangle.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_RENDER_SW && !SDL_RENDER_DISABLED -#include "SDL_surface.h" #include "SDL_triangle.h" #include "../../video/SDL_blit.h" diff --git a/src/render/vitagxm/SDL_render_vita_gxm.c b/src/render/vitagxm/SDL_render_vita_gxm.c index 1391b19a4..3c4b33a05 100644 --- a/src/render/vitagxm/SDL_render_vita_gxm.c +++ b/src/render/vitagxm/SDL_render_vita_gxm.c @@ -22,9 +22,7 @@ #if SDL_VIDEO_RENDER_VITA_GXM -#include "SDL_hints.h" #include "../SDL_sysrender.h" -#include "SDL_log.h" #include #include diff --git a/src/render/vitagxm/SDL_render_vita_gxm_tools.c b/src/render/vitagxm/SDL_render_vita_gxm_tools.c index 10deb556a..9f3f91420 100644 --- a/src/render/vitagxm/SDL_render_vita_gxm_tools.c +++ b/src/render/vitagxm/SDL_render_vita_gxm_tools.c @@ -22,9 +22,7 @@ #if SDL_VIDEO_RENDER_VITA_GXM -#include "SDL_hints.h" #include "../SDL_sysrender.h" -#include "SDL_log.h" #include #include diff --git a/src/render/vitagxm/SDL_render_vita_gxm_tools.h b/src/render/vitagxm/SDL_render_vita_gxm_tools.h index 67659889d..2cb12a0c4 100644 --- a/src/render/vitagxm/SDL_render_vita_gxm_tools.h +++ b/src/render/vitagxm/SDL_render_vita_gxm_tools.h @@ -24,7 +24,6 @@ #include "../../SDL_internal.h" -#include "SDL_hints.h" #include "../SDL_sysrender.h" #include diff --git a/src/render/vitagxm/SDL_render_vita_gxm_types.h b/src/render/vitagxm/SDL_render_vita_gxm_types.h index c5cbf5898..59bbf0b00 100644 --- a/src/render/vitagxm/SDL_render_vita_gxm_types.h +++ b/src/render/vitagxm/SDL_render_vita_gxm_types.h @@ -24,7 +24,6 @@ #include "../../SDL_internal.h" -#include "SDL_hints.h" #include "../SDL_sysrender.h" #include diff --git a/src/sensor/SDL_sensor.c b/src/sensor/SDL_sensor.c index 6db4c633f..5c501fffb 100644 --- a/src/sensor/SDL_sensor.c +++ b/src/sensor/SDL_sensor.c @@ -22,9 +22,6 @@ /* This is the sensor API for Simple DirectMedia Layer */ -#include "SDL.h" -#include "SDL_atomic.h" -#include "SDL_events.h" #include "SDL_syssensor.h" #if !SDL_EVENTS_DISABLED diff --git a/src/sensor/SDL_sensor_c.h b/src/sensor/SDL_sensor_c.h index 9bfbb1598..091174450 100644 --- a/src/sensor/SDL_sensor_c.h +++ b/src/sensor/SDL_sensor_c.h @@ -26,7 +26,6 @@ struct _SDL_SensorDriver; /* Useful functions and variables from SDL_sensor.c */ -#include "SDL_sensor.h" /* Function to get the next available sensor instance ID */ extern SDL_SensorID SDL_GetNextSensorInstanceID(void); diff --git a/src/sensor/SDL_syssensor.h b/src/sensor/SDL_syssensor.h index 7f6460370..2464aca56 100644 --- a/src/sensor/SDL_syssensor.h +++ b/src/sensor/SDL_syssensor.h @@ -25,7 +25,6 @@ /* This is the system specific header for the SDL sensor API */ -#include "SDL_sensor.h" #include "SDL_sensor_c.h" /* The SDL sensor structure */ diff --git a/src/sensor/android/SDL_androidsensor.c b/src/sensor/android/SDL_androidsensor.c index 4f8973581..ddc6b304c 100644 --- a/src/sensor/android/SDL_androidsensor.c +++ b/src/sensor/android/SDL_androidsensor.c @@ -25,8 +25,6 @@ /* This is the system specific header for the SDL sensor API */ #include -#include "SDL_error.h" -#include "SDL_sensor.h" #include "SDL_androidsensor.h" #include "../SDL_syssensor.h" #include "../SDL_sensor_c.h" diff --git a/src/sensor/coremotion/SDL_coremotionsensor.m b/src/sensor/coremotion/SDL_coremotionsensor.m index 56935b2a7..595e55a0c 100644 --- a/src/sensor/coremotion/SDL_coremotionsensor.m +++ b/src/sensor/coremotion/SDL_coremotionsensor.m @@ -25,8 +25,6 @@ /* This is the system specific header for the SDL sensor API */ #include -#include "SDL_error.h" -#include "SDL_sensor.h" #include "SDL_coremotionsensor.h" #include "../SDL_syssensor.h" #include "../SDL_sensor_c.h" diff --git a/src/sensor/dummy/SDL_dummysensor.c b/src/sensor/dummy/SDL_dummysensor.c index d03b7db3a..f6691defd 100644 --- a/src/sensor/dummy/SDL_dummysensor.c +++ b/src/sensor/dummy/SDL_dummysensor.c @@ -22,8 +22,6 @@ #if defined(SDL_SENSOR_DUMMY) || defined(SDL_SENSOR_DISABLED) -#include "SDL_error.h" -#include "SDL_sensor.h" #include "SDL_dummysensor.h" #include "../SDL_syssensor.h" diff --git a/src/sensor/vita/SDL_vitasensor.c b/src/sensor/vita/SDL_vitasensor.c index d3ede40f0..9fcc85fc1 100644 --- a/src/sensor/vita/SDL_vitasensor.c +++ b/src/sensor/vita/SDL_vitasensor.c @@ -22,8 +22,6 @@ #if defined(SDL_SENSOR_VITA) -#include "SDL_error.h" -#include "SDL_sensor.h" #include "SDL_vitasensor.h" #include "../SDL_syssensor.h" #include diff --git a/src/sensor/windows/SDL_windowssensor.c b/src/sensor/windows/SDL_windowssensor.c index 7ad28491f..4e0ea508c 100644 --- a/src/sensor/windows/SDL_windowssensor.c +++ b/src/sensor/windows/SDL_windowssensor.c @@ -22,9 +22,6 @@ #if defined(SDL_SENSOR_WINDOWS) -#include "SDL_error.h" -#include "SDL_mutex.h" -#include "SDL_sensor.h" #include "SDL_windowssensor.h" #include "../SDL_syssensor.h" #include "../../core/windows/SDL_windows.h" diff --git a/src/stdlib/SDL_crc16.c b/src/stdlib/SDL_crc16.c index 0008b2e3e..8f6fb48c0 100644 --- a/src/stdlib/SDL_crc16.c +++ b/src/stdlib/SDL_crc16.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_stdinc.h" /* Public domain CRC implementation adapted from: diff --git a/src/stdlib/SDL_crc32.c b/src/stdlib/SDL_crc32.c index cd7229c96..48717f444 100644 --- a/src/stdlib/SDL_crc32.c +++ b/src/stdlib/SDL_crc32.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_stdinc.h" /* Public domain CRC implementation adapted from: diff --git a/src/stdlib/SDL_getenv.c b/src/stdlib/SDL_getenv.c index b74974c34..4047cee3a 100644 --- a/src/stdlib/SDL_getenv.c +++ b/src/stdlib/SDL_getenv.c @@ -33,7 +33,6 @@ #include "../core/android/SDL_android.h" #endif -#include "SDL_stdinc.h" #if (defined(__WIN32__) || defined(__WINGDK__)) && (!defined(HAVE_SETENV) || !defined(HAVE_GETENV)) /* Note this isn't thread-safe! */ diff --git a/src/stdlib/SDL_iconv.c b/src/stdlib/SDL_iconv.c index bee60d506..487b08cce 100644 --- a/src/stdlib/SDL_iconv.c +++ b/src/stdlib/SDL_iconv.c @@ -27,8 +27,6 @@ /* This file contains portable iconv functions for SDL */ -#include "SDL_stdinc.h" -#include "SDL_endian.h" #if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) #ifdef __FreeBSD__ diff --git a/src/stdlib/SDL_malloc.c b/src/stdlib/SDL_malloc.c index de02b5eef..9fa4f4722 100644 --- a/src/stdlib/SDL_malloc.c +++ b/src/stdlib/SDL_malloc.c @@ -26,9 +26,6 @@ #include "../SDL_internal.h" /* This file contains portable memory management functions for SDL */ -#include "SDL_stdinc.h" -#include "SDL_atomic.h" -#include "SDL_error.h" #ifndef HAVE_MALLOC #define LACKS_SYS_TYPES_H diff --git a/src/stdlib/SDL_qsort.c b/src/stdlib/SDL_qsort.c index d17b6a31c..7bc036ff6 100644 --- a/src/stdlib/SDL_qsort.c +++ b/src/stdlib/SDL_qsort.c @@ -25,7 +25,6 @@ #include "../SDL_internal.h" -#include "SDL_stdinc.h" #if defined(HAVE_QSORT) void diff --git a/src/stdlib/SDL_stdlib.c b/src/stdlib/SDL_stdlib.c index d8db1d940..a7e19a657 100644 --- a/src/stdlib/SDL_stdlib.c +++ b/src/stdlib/SDL_stdlib.c @@ -27,7 +27,6 @@ /* This file contains portable stdlib functions for SDL */ -#include "SDL_stdinc.h" #include "../libm/math_libm.h" diff --git a/src/stdlib/SDL_strtokr.c b/src/stdlib/SDL_strtokr.c index 4b624d3fd..507bd1af1 100644 --- a/src/stdlib/SDL_strtokr.c +++ b/src/stdlib/SDL_strtokr.c @@ -24,7 +24,6 @@ #include "../SDL_internal.h" -#include "SDL_stdinc.h" char *SDL_strtokr(char *s1, const char *s2, char **ptr) { diff --git a/src/test/SDL_test_assert.c b/src/test/SDL_test_assert.c index 27f93e839..ec0be9b30 100644 --- a/src/test/SDL_test_assert.c +++ b/src/test/SDL_test_assert.c @@ -24,7 +24,7 @@ Used by the test framework and test cases. */ -#include "SDL_test.h" +#include /* Assert check message format */ #define SDLTEST_ASSERT_CHECK_FORMAT "Assert '%s': %s" diff --git a/src/test/SDL_test_common.c b/src/test/SDL_test_common.c index e5aaf7ca7..54ba5d821 100644 --- a/src/test/SDL_test_common.c +++ b/src/test/SDL_test_common.c @@ -20,7 +20,7 @@ */ /* Ported from original test/common.c file. */ -#include "SDL_test.h" +#include static const char *video_usage[] = { "[--video driver]", "[--renderer driver]", "[--gldebug]", diff --git a/src/test/SDL_test_compare.c b/src/test/SDL_test_compare.c index 3bf8e924d..c854ff98e 100644 --- a/src/test/SDL_test_compare.c +++ b/src/test/SDL_test_compare.c @@ -26,7 +26,7 @@ Rewritten for test lib by Andreas Schiffler. */ -#include "SDL_test.h" +#include /* Counter for _CompareSurface calls; used for filename creation when comparisons fail */ diff --git a/src/test/SDL_test_crc32.c b/src/test/SDL_test_crc32.c index c720434b9..8e7b81080 100644 --- a/src/test/SDL_test_crc32.c +++ b/src/test/SDL_test_crc32.c @@ -25,7 +25,7 @@ Original source code contributed by A. Schiffler for GSOC project. */ -#include "SDL_test.h" +#include int SDLTest_Crc32Init(SDLTest_Crc32Context *crcContext) diff --git a/src/test/SDL_test_font.c b/src/test/SDL_test_font.c index 538f25638..db20d343d 100644 --- a/src/test/SDL_test_font.c +++ b/src/test/SDL_test_font.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* ---- 8x8 font definition ---- */ diff --git a/src/test/SDL_test_fuzzer.c b/src/test/SDL_test_fuzzer.c index 22ecb9cfa..310df4c7e 100644 --- a/src/test/SDL_test_fuzzer.c +++ b/src/test/SDL_test_fuzzer.c @@ -24,7 +24,7 @@ Data generators for fuzzing test data in a reproducible way. */ -#include "SDL_test.h" +#include #include /* Needed for FLT_MAX and DBL_EPSILON */ #include /* Needed for UCHAR_MAX, etc. */ diff --git a/src/test/SDL_test_harness.c b/src/test/SDL_test_harness.c index 82d0533be..cb5dd31bc 100644 --- a/src/test/SDL_test_harness.c +++ b/src/test/SDL_test_harness.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include #include /* Needed for exit() */ diff --git a/src/test/SDL_test_imageBlit.c b/src/test/SDL_test_imageBlit.c index 001d2a3ac..9b931dc5e 100644 --- a/src/test/SDL_test_imageBlit.c +++ b/src/test/SDL_test_imageBlit.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* GIMP RGB C-Source image dump (blit.c) */ diff --git a/src/test/SDL_test_imageBlitBlend.c b/src/test/SDL_test_imageBlitBlend.c index 5fc75fc1a..487c08491 100644 --- a/src/test/SDL_test_imageBlitBlend.c +++ b/src/test/SDL_test_imageBlitBlend.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* GIMP RGB C-Source image dump (alpha.c) */ diff --git a/src/test/SDL_test_imageFace.c b/src/test/SDL_test_imageFace.c index 23f010ed7..8952f6496 100644 --- a/src/test/SDL_test_imageFace.c +++ b/src/test/SDL_test_imageFace.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* GIMP RGBA C-Source image dump (face.c) */ diff --git a/src/test/SDL_test_imagePrimitives.c b/src/test/SDL_test_imagePrimitives.c index 232df87fb..0a6c380ad 100644 --- a/src/test/SDL_test_imagePrimitives.c +++ b/src/test/SDL_test_imagePrimitives.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* GIMP RGB C-Source image dump (primitives.c) */ diff --git a/src/test/SDL_test_imagePrimitivesBlend.c b/src/test/SDL_test_imagePrimitivesBlend.c index 7843656c6..287121fd9 100644 --- a/src/test/SDL_test_imagePrimitivesBlend.c +++ b/src/test/SDL_test_imagePrimitivesBlend.c @@ -18,7 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_test.h" +#include /* GIMP RGB C-Source image dump (alpha.c) */ diff --git a/src/test/SDL_test_log.c b/src/test/SDL_test_log.c index 3b695a100..5cf1f2e17 100644 --- a/src/test/SDL_test_log.c +++ b/src/test/SDL_test_log.c @@ -29,8 +29,7 @@ #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) # define _CRT_SECURE_NO_WARNINGS #endif -#include "SDL.h" -#include "SDL_test.h" +#include #include /* Needed for localtime() */ diff --git a/src/test/SDL_test_md5.c b/src/test/SDL_test_md5.c index bdda739e7..0654059b8 100644 --- a/src/test/SDL_test_md5.c +++ b/src/test/SDL_test_md5.c @@ -50,7 +50,7 @@ ** documentation and/or software. ** *********************************************************************** */ -#include "SDL_test.h" +#include /* Forward declaration of static helper function */ static void SDLTest_Md5Transform(MD5UINT4 * buf, const MD5UINT4 * in); diff --git a/src/test/SDL_test_memory.c b/src/test/SDL_test_memory.c index a7195bd8d..6ecb76d4c 100644 --- a/src/test/SDL_test_memory.c +++ b/src/test/SDL_test_memory.c @@ -18,11 +18,7 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_assert.h" -#include "SDL_stdinc.h" -#include "SDL_log.h" -#include "SDL_test_crc32.h" -#include "SDL_test_memory.h" +#include #ifdef HAVE_LIBUNWIND_H #define UNW_LOCAL_ONLY diff --git a/src/test/SDL_test_random.c b/src/test/SDL_test_random.c index 762c68c14..5d43c8438 100644 --- a/src/test/SDL_test_random.c +++ b/src/test/SDL_test_random.c @@ -27,7 +27,7 @@ Original source code contributed by A. Schiffler for GSOC project. */ -#include "SDL_test.h" +#include #include /* Needed for srand() and rand() */ #include /* Needed for time() */ diff --git a/src/thread/SDL_systhread.h b/src/thread/SDL_systhread.h index ab6872c02..11b557fd4 100644 --- a/src/thread/SDL_systhread.h +++ b/src/thread/SDL_systhread.h @@ -25,7 +25,6 @@ #ifndef SDL_systhread_h_ #define SDL_systhread_h_ -#include "SDL_thread.h" #include "SDL_thread_c.h" /* Set up for C function definitions, even when using C++ */ diff --git a/src/thread/SDL_thread.c b/src/thread/SDL_thread.c index 4e51be68b..b695fa4d5 100644 --- a/src/thread/SDL_thread.c +++ b/src/thread/SDL_thread.c @@ -22,10 +22,8 @@ /* System independent thread management routines for SDL */ -#include "SDL_thread.h" #include "SDL_thread_c.h" #include "SDL_systhread.h" -#include "SDL_hints.h" #include "../SDL_error_c.h" diff --git a/src/thread/SDL_thread_c.h b/src/thread/SDL_thread_c.h index faa66d715..1ff38fcdc 100644 --- a/src/thread/SDL_thread_c.h +++ b/src/thread/SDL_thread_c.h @@ -23,7 +23,6 @@ #ifndef SDL_thread_c_h_ #define SDL_thread_c_h_ -#include "SDL_thread.h" /* Need the definitions of SYS_ThreadHandle */ #if SDL_THREADS_DISABLED diff --git a/src/thread/generic/SDL_syscond.c b/src/thread/generic/SDL_syscond.c index 59e8ce076..91c455221 100644 --- a/src/thread/generic/SDL_syscond.c +++ b/src/thread/generic/SDL_syscond.c @@ -26,7 +26,6 @@ implementation, written by Christopher Tate and Owen Smith. Thanks! */ -#include "SDL_thread.h" #include "../generic/SDL_syscond_c.h" diff --git a/src/thread/generic/SDL_syscond_c.h b/src/thread/generic/SDL_syscond_c.h index b7dadc781..130283a1e 100644 --- a/src/thread/generic/SDL_syscond_c.h +++ b/src/thread/generic/SDL_syscond_c.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_thread.h" #ifndef SDL_syscond_generic_h_ #define SDL_syscond_generic_h_ diff --git a/src/thread/generic/SDL_sysmutex.c b/src/thread/generic/SDL_sysmutex.c index 12cc58041..bfb099618 100644 --- a/src/thread/generic/SDL_sysmutex.c +++ b/src/thread/generic/SDL_sysmutex.c @@ -22,7 +22,6 @@ /* An implementation of mutexes using semaphores */ -#include "SDL_thread.h" #include "SDL_systhread_c.h" diff --git a/src/thread/generic/SDL_syssem.c b/src/thread/generic/SDL_syssem.c index c21ff196a..049e485cd 100644 --- a/src/thread/generic/SDL_syssem.c +++ b/src/thread/generic/SDL_syssem.c @@ -22,8 +22,6 @@ /* An implementation of semaphores using mutexes and condition variables */ -#include "SDL_timer.h" -#include "SDL_thread.h" #include "SDL_systhread_c.h" diff --git a/src/thread/generic/SDL_systhread.c b/src/thread/generic/SDL_systhread.c index e36bf4c1c..78be410a5 100644 --- a/src/thread/generic/SDL_systhread.c +++ b/src/thread/generic/SDL_systhread.c @@ -22,7 +22,6 @@ /* Thread management routines for SDL */ -#include "SDL_thread.h" #include "../SDL_systhread.h" #ifdef SDL_PASSED_BEGINTHREAD_ENDTHREAD diff --git a/src/thread/n3ds/SDL_sysmutex_c.h b/src/thread/n3ds/SDL_sysmutex_c.h index d7658e1fd..b0425514b 100644 --- a/src/thread/n3ds/SDL_sysmutex_c.h +++ b/src/thread/n3ds/SDL_sysmutex_c.h @@ -25,7 +25,6 @@ #include <3ds.h> -#include "SDL_mutex.h" struct SDL_mutex { diff --git a/src/thread/n3ds/SDL_syssem.c b/src/thread/n3ds/SDL_syssem.c index 29d3415aa..d90ec57ce 100644 --- a/src/thread/n3ds/SDL_syssem.c +++ b/src/thread/n3ds/SDL_syssem.c @@ -26,7 +26,6 @@ #include <3ds.h> -#include "SDL_thread.h" struct SDL_semaphore { diff --git a/src/thread/ngage/SDL_sysmutex.cpp b/src/thread/ngage/SDL_sysmutex.cpp index f7ec1bbb1..e2ce86376 100644 --- a/src/thread/ngage/SDL_sysmutex.cpp +++ b/src/thread/ngage/SDL_sysmutex.cpp @@ -24,7 +24,6 @@ #include -#include "SDL_thread.h" #include "SDL_systhread_c.h" struct SDL_mutex diff --git a/src/thread/ngage/SDL_syssem.cpp b/src/thread/ngage/SDL_syssem.cpp index a999524e8..07612e58b 100644 --- a/src/thread/ngage/SDL_syssem.cpp +++ b/src/thread/ngage/SDL_syssem.cpp @@ -24,8 +24,6 @@ #include -#include "SDL_error.h" -#include "SDL_thread.h" #define SDL_MUTEX_TIMEOUT -2 diff --git a/src/thread/ngage/SDL_systhread.cpp b/src/thread/ngage/SDL_systhread.cpp index f2c30f7b6..9d4eecd0a 100644 --- a/src/thread/ngage/SDL_systhread.cpp +++ b/src/thread/ngage/SDL_systhread.cpp @@ -28,8 +28,6 @@ extern "C" { #undef NULL -#include "SDL_error.h" -#include "SDL_thread.h" #include "../SDL_systhread.h" #include "../SDL_thread_c.h" }; diff --git a/src/thread/ps2/SDL_syssem.c b/src/thread/ps2/SDL_syssem.c index e6b0aee25..a25fb74fa 100644 --- a/src/thread/ps2/SDL_syssem.c +++ b/src/thread/ps2/SDL_syssem.c @@ -28,8 +28,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include diff --git a/src/thread/ps2/SDL_systhread.c b/src/thread/ps2/SDL_systhread.c index 4df65abf1..ced563447 100644 --- a/src/thread/ps2/SDL_systhread.c +++ b/src/thread/ps2/SDL_systhread.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include "../SDL_systhread.h" #include "../SDL_thread_c.h" #include diff --git a/src/thread/psp/SDL_syscond.c b/src/thread/psp/SDL_syscond.c index 02307ed9c..d89184a35 100644 --- a/src/thread/psp/SDL_syscond.c +++ b/src/thread/psp/SDL_syscond.c @@ -28,7 +28,6 @@ implementation, written by Christopher Tate and Owen Smith. Thanks! */ -#include "SDL_thread.h" struct SDL_cond { diff --git a/src/thread/psp/SDL_sysmutex.c b/src/thread/psp/SDL_sysmutex.c index d672ec516..fb0f8334a 100644 --- a/src/thread/psp/SDL_sysmutex.c +++ b/src/thread/psp/SDL_sysmutex.c @@ -24,7 +24,6 @@ /* An implementation of mutexes using semaphores */ -#include "SDL_thread.h" #include "SDL_systhread_c.h" #include diff --git a/src/thread/psp/SDL_syssem.c b/src/thread/psp/SDL_syssem.c index 293354e08..985000403 100644 --- a/src/thread/psp/SDL_syssem.c +++ b/src/thread/psp/SDL_syssem.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include #include diff --git a/src/thread/psp/SDL_systhread.c b/src/thread/psp/SDL_systhread.c index 50417cb24..b3ead176d 100644 --- a/src/thread/psp/SDL_systhread.c +++ b/src/thread/psp/SDL_systhread.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include "../SDL_systhread.h" #include "../SDL_thread_c.h" #include diff --git a/src/thread/pthread/SDL_syscond.c b/src/thread/pthread/SDL_syscond.c index c84ec7ada..fdc338b0b 100644 --- a/src/thread/pthread/SDL_syscond.c +++ b/src/thread/pthread/SDL_syscond.c @@ -26,7 +26,6 @@ #include #include -#include "SDL_thread.h" #include "SDL_sysmutex_c.h" struct SDL_cond diff --git a/src/thread/pthread/SDL_sysmutex.c b/src/thread/pthread/SDL_sysmutex.c index c26982aed..1f936d42f 100644 --- a/src/thread/pthread/SDL_sysmutex.c +++ b/src/thread/pthread/SDL_sysmutex.c @@ -23,7 +23,6 @@ #include #include -#include "SDL_thread.h" #if !SDL_THREAD_PTHREAD_RECURSIVE_MUTEX && \ !SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP diff --git a/src/thread/pthread/SDL_syssem.c b/src/thread/pthread/SDL_syssem.c index 8341ebd41..c189b21b7 100644 --- a/src/thread/pthread/SDL_syssem.c +++ b/src/thread/pthread/SDL_syssem.c @@ -26,8 +26,6 @@ #include #include -#include "SDL_thread.h" -#include "SDL_timer.h" /* Wrapper around POSIX 1003.1b semaphores */ diff --git a/src/thread/pthread/SDL_systhread.c b/src/thread/pthread/SDL_systhread.c index a05e15ff5..f4f2e70cc 100644 --- a/src/thread/pthread/SDL_systhread.c +++ b/src/thread/pthread/SDL_systhread.c @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_system.h" -#include "SDL_hints.h" #include @@ -48,7 +46,6 @@ #endif #endif -#include "SDL_thread.h" #include "../SDL_thread_c.h" #include "../SDL_systhread.h" #ifdef __ANDROID__ diff --git a/src/thread/pthread/SDL_systls.c b/src/thread/pthread/SDL_systls.c index c55c69720..af4012013 100644 --- a/src/thread/pthread/SDL_systls.c +++ b/src/thread/pthread/SDL_systls.c @@ -19,7 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "../../SDL_internal.h" -#include "SDL_thread.h" #include "../SDL_systhread.h" #include "../SDL_thread_c.h" diff --git a/src/thread/stdcpp/SDL_syscond.cpp b/src/thread/stdcpp/SDL_syscond.cpp index 90c38adba..c41ef5360 100644 --- a/src/thread/stdcpp/SDL_syscond.cpp +++ b/src/thread/stdcpp/SDL_syscond.cpp @@ -21,7 +21,6 @@ #include "../../SDL_internal.h" extern "C" { -#include "SDL_thread.h" } #include diff --git a/src/thread/stdcpp/SDL_sysmutex.cpp b/src/thread/stdcpp/SDL_sysmutex.cpp index 828801046..c10aa9242 100644 --- a/src/thread/stdcpp/SDL_sysmutex.cpp +++ b/src/thread/stdcpp/SDL_sysmutex.cpp @@ -21,7 +21,6 @@ #include "../../SDL_internal.h" extern "C" { -#include "SDL_thread.h" #include "SDL_systhread_c.h" } diff --git a/src/thread/stdcpp/SDL_systhread.cpp b/src/thread/stdcpp/SDL_systhread.cpp index 3d818ac56..89865f632 100644 --- a/src/thread/stdcpp/SDL_systhread.cpp +++ b/src/thread/stdcpp/SDL_systhread.cpp @@ -23,7 +23,6 @@ /* Thread management routines for SDL */ extern "C" { -#include "SDL_thread.h" #include "../SDL_thread_c.h" #include "../SDL_systhread.h" } diff --git a/src/thread/vita/SDL_syscond.c b/src/thread/vita/SDL_syscond.c index c6e46c475..25f677437 100644 --- a/src/thread/vita/SDL_syscond.c +++ b/src/thread/vita/SDL_syscond.c @@ -28,7 +28,6 @@ implementation, written by Christopher Tate and Owen Smith. Thanks! */ -#include "SDL_thread.h" struct SDL_cond { diff --git a/src/thread/vita/SDL_sysmutex.c b/src/thread/vita/SDL_sysmutex.c index 6327182cc..24af14446 100644 --- a/src/thread/vita/SDL_sysmutex.c +++ b/src/thread/vita/SDL_sysmutex.c @@ -22,7 +22,6 @@ #if SDL_THREAD_VITA -#include "SDL_thread.h" #include "SDL_systhread_c.h" #include diff --git a/src/thread/vita/SDL_syssem.c b/src/thread/vita/SDL_syssem.c index 7fecd6ca2..2609a4ce8 100644 --- a/src/thread/vita/SDL_syssem.c +++ b/src/thread/vita/SDL_syssem.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include #include diff --git a/src/thread/vita/SDL_systhread.c b/src/thread/vita/SDL_systhread.c index 91ae06256..7ff9e7a44 100644 --- a/src/thread/vita/SDL_systhread.c +++ b/src/thread/vita/SDL_systhread.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_thread.h" #include "../SDL_systhread.h" #include "../SDL_thread_c.h" #include diff --git a/src/thread/windows/SDL_syscond_cv.c b/src/thread/windows/SDL_syscond_cv.c index 9c0ceb3a8..152cdd2c5 100644 --- a/src/thread/windows/SDL_syscond_cv.c +++ b/src/thread/windows/SDL_syscond_cv.c @@ -20,8 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_hints.h" -#include "SDL_thread.h" #include "../generic/SDL_syscond_c.h" #include "SDL_sysmutex_c.h" diff --git a/src/thread/windows/SDL_sysmutex.c b/src/thread/windows/SDL_sysmutex.c index 3974b3362..44218b185 100644 --- a/src/thread/windows/SDL_sysmutex.c +++ b/src/thread/windows/SDL_sysmutex.c @@ -31,7 +31,6 @@ */ -#include "SDL_hints.h" #include "SDL_sysmutex_c.h" diff --git a/src/thread/windows/SDL_sysmutex_c.h b/src/thread/windows/SDL_sysmutex_c.h index a97c5293d..25b01d20c 100644 --- a/src/thread/windows/SDL_sysmutex_c.h +++ b/src/thread/windows/SDL_sysmutex_c.h @@ -22,7 +22,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_mutex.h" typedef SDL_mutex * (*pfnSDL_CreateMutex)(void); typedef int (*pfnSDL_LockMutex)(SDL_mutex *); diff --git a/src/thread/windows/SDL_syssem.c b/src/thread/windows/SDL_syssem.c index 629f2a9cc..4b01fe437 100644 --- a/src/thread/windows/SDL_syssem.c +++ b/src/thread/windows/SDL_syssem.c @@ -35,9 +35,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_hints.h" -#include "SDL_thread.h" -#include "SDL_timer.h" typedef SDL_sem * (*pfnSDL_CreateSemaphore)(Uint32); typedef void (*pfnSDL_DestroySemaphore)(SDL_sem *); diff --git a/src/thread/windows/SDL_systhread.c b/src/thread/windows/SDL_systhread.c index 3701cf01f..859be4bd1 100644 --- a/src/thread/windows/SDL_systhread.c +++ b/src/thread/windows/SDL_systhread.c @@ -24,8 +24,6 @@ /* Win32 thread management routines for SDL */ -#include "SDL_hints.h" -#include "SDL_thread.h" #include "../SDL_thread_c.h" #include "../SDL_systhread.h" #include "SDL_systhread_c.h" diff --git a/src/thread/windows/SDL_systls.c b/src/thread/windows/SDL_systls.c index 22e507a7a..7f23b3e18 100644 --- a/src/thread/windows/SDL_systls.c +++ b/src/thread/windows/SDL_systls.c @@ -25,7 +25,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_thread.h" #include "../SDL_thread_c.h" #if WINAPI_FAMILY_WINRT diff --git a/src/timer/SDL_timer.c b/src/timer/SDL_timer.c index 6741e97cb..7e2bcbebe 100644 --- a/src/timer/SDL_timer.c +++ b/src/timer/SDL_timer.c @@ -20,10 +20,7 @@ */ #include "../SDL_internal.h" -#include "SDL_timer.h" #include "SDL_timer_c.h" -#include "SDL_atomic.h" -#include "SDL_cpuinfo.h" #include "../thread/SDL_systhread.h" /* #define DEBUG_TIMERS */ diff --git a/src/timer/SDL_timer_c.h b/src/timer/SDL_timer_c.h index 555913e4d..55ac5b2e8 100644 --- a/src/timer/SDL_timer_c.h +++ b/src/timer/SDL_timer_c.h @@ -25,7 +25,6 @@ #include "../SDL_internal.h" /* Useful functions and variables from SDL_timer.c */ -#include "SDL_timer.h" #define ROUND_RESOLUTION(X) \ (((X+TIMER_RESOLUTION-1)/TIMER_RESOLUTION)*TIMER_RESOLUTION) diff --git a/src/timer/dummy/SDL_systimer.c b/src/timer/dummy/SDL_systimer.c index 8e34959f0..f88580f8a 100644 --- a/src/timer/dummy/SDL_systimer.c +++ b/src/timer/dummy/SDL_systimer.c @@ -22,7 +22,6 @@ #if defined(SDL_TIMER_DUMMY) || defined(SDL_TIMERS_DISABLED) -#include "SDL_timer.h" static SDL_bool ticks_started = SDL_FALSE; diff --git a/src/timer/haiku/SDL_systimer.c b/src/timer/haiku/SDL_systimer.c index fb358b9d2..f63f6e2a9 100644 --- a/src/timer/haiku/SDL_systimer.c +++ b/src/timer/haiku/SDL_systimer.c @@ -24,7 +24,6 @@ #include -#include "SDL_timer.h" static bigtime_t start; static SDL_bool ticks_started = SDL_FALSE; diff --git a/src/timer/ngage/SDL_systimer.cpp b/src/timer/ngage/SDL_systimer.cpp index 543d8494d..43d89f4f2 100644 --- a/src/timer/ngage/SDL_systimer.cpp +++ b/src/timer/ngage/SDL_systimer.cpp @@ -25,7 +25,6 @@ #include #include -#include "SDL_timer.h" static SDL_bool ticks_started = SDL_FALSE; static TUint start = 0; diff --git a/src/timer/ps2/SDL_systimer.c b/src/timer/ps2/SDL_systimer.c index 42d296803..3eb78fed9 100644 --- a/src/timer/ps2/SDL_systimer.c +++ b/src/timer/ps2/SDL_systimer.c @@ -22,9 +22,6 @@ #ifdef SDL_TIMER_PS2 -#include "SDL_thread.h" -#include "SDL_timer.h" -#include "SDL_error.h" #include "../SDL_timer_c.h" #include #include diff --git a/src/timer/psp/SDL_systimer.c b/src/timer/psp/SDL_systimer.c index df6225fa3..c8effda37 100644 --- a/src/timer/psp/SDL_systimer.c +++ b/src/timer/psp/SDL_systimer.c @@ -22,9 +22,6 @@ #ifdef SDL_TIMER_PSP -#include "SDL_thread.h" -#include "SDL_timer.h" -#include "SDL_error.h" #include "../SDL_timer_c.h" #include #include diff --git a/src/timer/unix/SDL_systimer.c b/src/timer/unix/SDL_systimer.c index 03f8e3d73..82aa5f14b 100644 --- a/src/timer/unix/SDL_systimer.c +++ b/src/timer/unix/SDL_systimer.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_timer.h" -#include "SDL_hints.h" #include "../SDL_timer_c.h" #ifdef __EMSCRIPTEN__ diff --git a/src/timer/vita/SDL_systimer.c b/src/timer/vita/SDL_systimer.c index db382378e..ae900d9af 100644 --- a/src/timer/vita/SDL_systimer.c +++ b/src/timer/vita/SDL_systimer.c @@ -22,9 +22,6 @@ #ifdef SDL_TIMER_VITA -#include "SDL_thread.h" -#include "SDL_timer.h" -#include "SDL_error.h" #include "../SDL_timer_c.h" #include #include diff --git a/src/timer/windows/SDL_systimer.c b/src/timer/windows/SDL_systimer.c index b9c96461d..4bf458e1d 100644 --- a/src/timer/windows/SDL_systimer.c +++ b/src/timer/windows/SDL_systimer.c @@ -25,8 +25,6 @@ #include "../../core/windows/SDL_windows.h" #include -#include "SDL_timer.h" -#include "SDL_hints.h" /* The first (low-resolution) ticks value of the application */ diff --git a/src/video/SDL_RLEaccel.c b/src/video/SDL_RLEaccel.c index b67b765e9..4e8e42841 100644 --- a/src/video/SDL_RLEaccel.c +++ b/src/video/SDL_RLEaccel.c @@ -87,7 +87,6 @@ * beginning of an opaque line. */ -#include "SDL_video.h" #include "SDL_sysvideo.h" #include "SDL_blit.h" #include "SDL_RLEaccel_c.h" diff --git a/src/video/SDL_blit.c b/src/video/SDL_blit.c index 26739ca00..c9f8aed19 100644 --- a/src/video/SDL_blit.c +++ b/src/video/SDL_blit.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_sysvideo.h" #include "SDL_blit.h" #include "SDL_blit_auto.h" diff --git a/src/video/SDL_blit.h b/src/video/SDL_blit.h index 2f99fa8d9..9c10d6ba8 100644 --- a/src/video/SDL_blit.h +++ b/src/video/SDL_blit.h @@ -23,9 +23,6 @@ #ifndef SDL_blit_h_ #define SDL_blit_h_ -#include "SDL_cpuinfo.h" -#include "SDL_endian.h" -#include "SDL_surface.h" /* pixman ARM blitters are 32 bit only : */ #if defined(__aarch64__)||defined(_M_ARM64) diff --git a/src/video/SDL_blit_0.c b/src/video/SDL_blit_0.c index 54882f8b1..4dcfb6817 100644 --- a/src/video/SDL_blit_0.c +++ b/src/video/SDL_blit_0.c @@ -22,7 +22,6 @@ #if SDL_HAVE_BLIT_0 -#include "SDL_video.h" #include "SDL_blit.h" /* Functions to blit from bitmaps to other surfaces */ diff --git a/src/video/SDL_blit_1.c b/src/video/SDL_blit_1.c index 2c353fd27..4c258f3fe 100644 --- a/src/video/SDL_blit_1.c +++ b/src/video/SDL_blit_1.c @@ -22,10 +22,8 @@ #if SDL_HAVE_BLIT_1 -#include "SDL_video.h" #include "SDL_blit.h" #include "SDL_sysvideo.h" -#include "SDL_endian.h" /* Functions to blit from 8-bit surfaces to other surfaces */ diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index 56ba024c9..ef8cfcebe 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -22,7 +22,6 @@ #if SDL_HAVE_BLIT_A -#include "SDL_video.h" #include "SDL_blit.h" /* Functions to perform alpha blended blitting */ diff --git a/src/video/SDL_blit_N.c b/src/video/SDL_blit_N.c index f94ba808e..f88cf22b3 100644 --- a/src/video/SDL_blit_N.c +++ b/src/video/SDL_blit_N.c @@ -22,9 +22,6 @@ #if SDL_HAVE_BLIT_N -#include "SDL_video.h" -#include "SDL_endian.h" -#include "SDL_cpuinfo.h" #include "SDL_blit.h" #include "SDL_blit_copy.h" diff --git a/src/video/SDL_blit_auto.c b/src/video/SDL_blit_auto.c index f15a43622..d9613320a 100644 --- a/src/video/SDL_blit_auto.c +++ b/src/video/SDL_blit_auto.c @@ -25,7 +25,6 @@ /* *INDENT-OFF* */ /* clang-format off */ -#include "SDL_video.h" #include "SDL_blit.h" #include "SDL_blit_auto.h" diff --git a/src/video/SDL_blit_copy.c b/src/video/SDL_blit_copy.c index 0223d9a16..1aa5febdb 100644 --- a/src/video/SDL_blit_copy.c +++ b/src/video/SDL_blit_copy.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_blit.h" #include "SDL_blit_copy.h" diff --git a/src/video/SDL_blit_slow.c b/src/video/SDL_blit_slow.c index ed9c692b1..a7a977dc6 100644 --- a/src/video/SDL_blit_slow.c +++ b/src/video/SDL_blit_slow.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_blit.h" #include "SDL_blit_slow.h" diff --git a/src/video/SDL_bmp.c b/src/video/SDL_bmp.c index 369b925a6..22bbce723 100644 --- a/src/video/SDL_bmp.c +++ b/src/video/SDL_bmp.c @@ -32,9 +32,6 @@ This code currently supports Win32 DIBs in uncompressed 8 and 24 bpp. */ -#include "SDL_hints.h" -#include "SDL_video.h" -#include "SDL_endian.h" #include "SDL_pixels_c.h" #define SAVE_32BIT_BMP diff --git a/src/video/SDL_clipboard.c b/src/video/SDL_clipboard.c index b5ea5ed53..effc3dc95 100644 --- a/src/video/SDL_clipboard.c +++ b/src/video/SDL_clipboard.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_clipboard.h" #include "SDL_sysvideo.h" diff --git a/src/video/SDL_egl.c b/src/video/SDL_egl.c index bdd99ff75..bc5376cdf 100644 --- a/src/video/SDL_egl.c +++ b/src/video/SDL_egl.c @@ -35,8 +35,6 @@ #include "SDL_sysvideo.h" #include "SDL_egl_c.h" -#include "SDL_loadso.h" -#include "SDL_hints.h" #ifdef EGL_KHR_create_context /* EGL_OPENGL_ES3_BIT_KHR was added in version 13 of the extension. */ @@ -107,7 +105,7 @@ #endif /* SDL_VIDEO_DRIVER_RPI */ #if SDL_VIDEO_OPENGL && !SDL_VIDEO_VITA_PVR_OGL -#include "SDL_opengl.h" +#include #endif /** If we happen to not have this defined because of an older EGL version, just define it 0x0 diff --git a/src/video/SDL_egl_c.h b/src/video/SDL_egl_c.h index 3cf3cbb57..5772ee2d8 100644 --- a/src/video/SDL_egl_c.h +++ b/src/video/SDL_egl_c.h @@ -25,7 +25,7 @@ #if SDL_VIDEO_OPENGL_EGL -#include "SDL_egl.h" +#include #include "SDL_sysvideo.h" diff --git a/src/video/SDL_fillrect.c b/src/video/SDL_fillrect.c index 222d69e22..c93246948 100644 --- a/src/video/SDL_fillrect.c +++ b/src/video/SDL_fillrect.c @@ -20,9 +20,7 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_blit.h" -#include "SDL_cpuinfo.h" #ifdef __SSE__ diff --git a/src/video/SDL_pixels.c b/src/video/SDL_pixels.c index 90077cd50..8119ad4ad 100644 --- a/src/video/SDL_pixels.c +++ b/src/video/SDL_pixels.c @@ -22,8 +22,6 @@ /* General (mostly internal) pixel/color manipulation routines for SDL */ -#include "SDL_endian.h" -#include "SDL_video.h" #include "SDL_sysvideo.h" #include "SDL_blit.h" #include "SDL_pixels_c.h" diff --git a/src/video/SDL_rect.c b/src/video/SDL_rect.c index dfa939032..fd2c52aac 100644 --- a/src/video/SDL_rect.c +++ b/src/video/SDL_rect.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_rect.h" #include "SDL_rect_c.h" /* There's no float version of this at the moment, because it's not a public API diff --git a/src/video/SDL_shape.c b/src/video/SDL_shape.c index 6c95164f2..1490451e1 100644 --- a/src/video/SDL_shape.c +++ b/src/video/SDL_shape.c @@ -20,12 +20,7 @@ */ #include "../SDL_internal.h" -#include "SDL.h" -#include "SDL_video.h" #include "SDL_sysvideo.h" -#include "SDL_pixels.h" -#include "SDL_surface.h" -#include "SDL_shape.h" #include "SDL_shape_internals.h" SDL_Window* diff --git a/src/video/SDL_shape_internals.h b/src/video/SDL_shape_internals.h index 16d659ef1..378f68a32 100644 --- a/src/video/SDL_shape_internals.h +++ b/src/video/SDL_shape_internals.h @@ -23,18 +23,6 @@ #ifndef SDL_shape_internals_h_ #define SDL_shape_internals_h_ -#include "SDL_rect.h" -#include "SDL_shape.h" -#include "SDL_surface.h" - -#include "begin_code.h" -/* Set up for C function definitions, even when using C++ */ -#ifdef __cplusplus -/* *INDENT-OFF* */ -extern "C" { -/* *INDENT-ON* */ -#endif - struct SDL_ShapeTree; typedef struct { @@ -60,12 +48,6 @@ extern SDL_ShapeTree* SDL_CalculateShapeTree(SDL_WindowShapeMode mode,SDL_Surfac extern void SDL_TraverseShapeTree(SDL_ShapeTree *tree,SDL_TraversalFunction function,void* closure); extern void SDL_FreeShapeTree(SDL_ShapeTree** shape_tree); -/* Ends C function definitions when using C++ */ -#ifdef __cplusplus -/* *INDENT-OFF* */ -} -/* *INDENT-ON* */ -#endif -#include "close_code.h" +#endif /* SDL_shape_internals_h_ */ -#endif +/* vi: set sts=4 ts=4 sw=4 expandtab: */ diff --git a/src/video/SDL_stretch.c b/src/video/SDL_stretch.c index bc7b4e551..e712d5f53 100644 --- a/src/video/SDL_stretch.c +++ b/src/video/SDL_stretch.c @@ -20,9 +20,7 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_blit.h" -#include "SDL_render.h" static int SDL_LowerSoftStretchNearest(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); static int SDL_LowerSoftStretchLinear(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c index 5930e4055..384b6a7ae 100644 --- a/src/video/SDL_surface.c +++ b/src/video/SDL_surface.c @@ -20,7 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_video.h" #include "SDL_sysvideo.h" #include "SDL_blit.h" #include "SDL_RLEaccel_c.h" diff --git a/src/video/SDL_sysvideo.h b/src/video/SDL_sysvideo.h index 592f28e35..0135ca0d2 100644 --- a/src/video/SDL_sysvideo.h +++ b/src/video/SDL_sysvideo.h @@ -23,10 +23,6 @@ #ifndef SDL_sysvideo_h_ #define SDL_sysvideo_h_ -#include "SDL_messagebox.h" -#include "SDL_shape.h" -#include "SDL_thread.h" -#include "SDL_metal.h" #include "SDL_vulkan_internal.h" diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index 55aee4754..1b3e75fb0 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -22,8 +22,6 @@ /* The high-level video driver subsystem */ -#include "SDL.h" -#include "SDL_video.h" #include "SDL_sysvideo.h" #include "SDL_egl_c.h" #include "SDL_blit.h" @@ -32,19 +30,19 @@ #include "../events/SDL_events_c.h" #include "../timer/SDL_timer_c.h" -#include "SDL_syswm.h" +#include #if SDL_VIDEO_OPENGL -#include "SDL_opengl.h" +#include #endif /* SDL_VIDEO_OPENGL */ #if SDL_VIDEO_OPENGL_ES && !SDL_VIDEO_OPENGL -#include "SDL_opengles.h" +#include #endif /* SDL_VIDEO_OPENGL_ES && !SDL_VIDEO_OPENGL */ /* GL and GLES2 headers conflict on Linux 32 bits */ #if SDL_VIDEO_OPENGL_ES2 && !SDL_VIDEO_OPENGL -#include "SDL_opengles2.h" +#include #endif /* SDL_VIDEO_OPENGL_ES2 && !SDL_VIDEO_OPENGL */ #if !SDL_VIDEO_OPENGL diff --git a/src/video/SDL_vulkan_internal.h b/src/video/SDL_vulkan_internal.h index 95521b05a..3cc7244d9 100644 --- a/src/video/SDL_vulkan_internal.h +++ b/src/video/SDL_vulkan_internal.h @@ -23,7 +23,6 @@ #include "../SDL_internal.h" -#include "SDL_stdinc.h" #if SDL_VIDEO_VULKAN #if SDL_LOADSO_DISABLED || SDL_LOADSO_DUMMY @@ -57,7 +56,7 @@ #define VK_NO_PROTOTYPES #include "./khronos/vulkan/vulkan.h" -#include "SDL_vulkan.h" +#include extern const char *SDL_Vulkan_GetResultString(VkResult result); @@ -83,7 +82,7 @@ extern SDL_bool SDL_Vulkan_Display_CreateSurface(void *vkGetInstanceProcAddr, #else /* No SDL Vulkan support, just include the header for typedefs */ -#include "SDL_vulkan.h" +#include typedef void (*PFN_vkGetInstanceProcAddr) (void); typedef int (*PFN_vkEnumerateInstanceExtensionProperties) (void); diff --git a/src/video/SDL_vulkan_utils.c b/src/video/SDL_vulkan_utils.c index 33761a591..4a3170767 100644 --- a/src/video/SDL_vulkan_utils.c +++ b/src/video/SDL_vulkan_utils.c @@ -21,7 +21,6 @@ #include "../SDL_internal.h" #include "SDL_vulkan_internal.h" -#include "SDL_error.h" #if SDL_VIDEO_VULKAN diff --git a/src/video/SDL_yuv.c b/src/video/SDL_yuv.c index 38cf9e733..686d94e14 100644 --- a/src/video/SDL_yuv.c +++ b/src/video/SDL_yuv.c @@ -20,8 +20,6 @@ */ #include "../SDL_internal.h" -#include "SDL_endian.h" -#include "SDL_video.h" #include "SDL_pixels_c.h" #include "SDL_yuv_c.h" diff --git a/src/video/android/SDL_androidevents.c b/src/video/android/SDL_androidevents.c index 3424a8254..5b22b9369 100644 --- a/src/video/android/SDL_androidevents.c +++ b/src/video/android/SDL_androidevents.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_ANDROID #include "SDL_androidevents.h" -#include "SDL_events.h" #include "SDL_androidkeyboard.h" #include "SDL_androidwindow.h" #include "../SDL_sysvideo.h" diff --git a/src/video/android/SDL_androidgl.c b/src/video/android/SDL_androidgl.c index fe1b17b26..92d442840 100644 --- a/src/video/android/SDL_androidgl.c +++ b/src/video/android/SDL_androidgl.c @@ -24,7 +24,6 @@ /* Android SDL video driver implementation */ -#include "SDL_video.h" #include "../SDL_egl_c.h" #include "SDL_androidwindow.h" diff --git a/src/video/android/SDL_androidmessagebox.c b/src/video/android/SDL_androidmessagebox.c index dc8b8ad03..71efa17e2 100644 --- a/src/video/android/SDL_androidmessagebox.c +++ b/src/video/android/SDL_androidmessagebox.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_ANDROID -#include "SDL_messagebox.h" #include "SDL_androidmessagebox.h" #include "../../core/android/SDL_android.h" diff --git a/src/video/android/SDL_androidmouse.c b/src/video/android/SDL_androidmouse.c index 38953fa07..36d19f8fe 100644 --- a/src/video/android/SDL_androidmouse.c +++ b/src/video/android/SDL_androidmouse.c @@ -25,7 +25,6 @@ #include "SDL_androidmouse.h" -#include "SDL_events.h" #include "../../events/SDL_mouse_c.h" #include "../../core/android/SDL_android.h" diff --git a/src/video/android/SDL_androidtouch.c b/src/video/android/SDL_androidtouch.c index 24d985b0e..c30eaa99b 100644 --- a/src/video/android/SDL_androidtouch.c +++ b/src/video/android/SDL_androidtouch.c @@ -24,8 +24,6 @@ #include -#include "SDL_hints.h" -#include "SDL_events.h" #include "SDL_androidtouch.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_touch_c.h" diff --git a/src/video/android/SDL_androidvideo.c b/src/video/android/SDL_androidvideo.c index d405e7004..ef652f7f1 100644 --- a/src/video/android/SDL_androidvideo.c +++ b/src/video/android/SDL_androidvideo.c @@ -24,9 +24,6 @@ /* Android SDL video driver implementation */ -#include "SDL_video.h" -#include "SDL_mouse.h" -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/android/SDL_androidvideo.h b/src/video/android/SDL_androidvideo.h index 371419ba3..6d76887d7 100644 --- a/src/video/android/SDL_androidvideo.h +++ b/src/video/android/SDL_androidvideo.h @@ -23,8 +23,6 @@ #ifndef SDL_androidvideo_h_ #define SDL_androidvideo_h_ -#include "SDL_mutex.h" -#include "SDL_rect.h" #include "../SDL_sysvideo.h" /* Called by the JNI layer when the screen changes size or format */ diff --git a/src/video/android/SDL_androidvulkan.c b/src/video/android/SDL_androidvulkan.c index fdedd430e..4e950d089 100644 --- a/src/video/android/SDL_androidvulkan.c +++ b/src/video/android/SDL_androidvulkan.c @@ -31,11 +31,10 @@ #include "SDL_androidvideo.h" #include "SDL_androidwindow.h" -#include "SDL_loadso.h" #include "SDL_androidvulkan.h" #define SDL_ENABLE_SYSWM_ANDROID -#include "SDL_syswm.h" +#include int Android_Vulkan_LoadLibrary(_THIS, const char *path) { diff --git a/src/video/android/SDL_androidwindow.c b/src/video/android/SDL_androidwindow.c index a36a62514..d7dea3923 100644 --- a/src/video/android/SDL_androidwindow.c +++ b/src/video/android/SDL_androidwindow.c @@ -30,10 +30,9 @@ #include "SDL_androidvideo.h" #include "SDL_androidwindow.h" -#include "SDL_hints.h" #define SDL_ENABLE_SYSWM_ANDROID -#include "SDL_syswm.h" +#include /* Currently only one window */ SDL_Window *Android_Window = NULL; diff --git a/src/video/cocoa/SDL_cocoaevents.m b/src/video/cocoa/SDL_cocoaevents.m index 3edc40bcf..10ba356a2 100644 --- a/src/video/cocoa/SDL_cocoaevents.m +++ b/src/video/cocoa/SDL_cocoaevents.m @@ -22,11 +22,9 @@ #if SDL_VIDEO_DRIVER_COCOA -#include "SDL_timer.h" #include "SDL_cocoavideo.h" #include "../../events/SDL_events_c.h" -#include "SDL_hints.h" /* This define was added in the 10.9 SDK. */ #ifndef kIOPMAssertPreventUserIdleDisplaySleep diff --git a/src/video/cocoa/SDL_cocoamessagebox.m b/src/video/cocoa/SDL_cocoamessagebox.m index 1f8eddc3a..6482262fa 100644 --- a/src/video/cocoa/SDL_cocoamessagebox.m +++ b/src/video/cocoa/SDL_cocoamessagebox.m @@ -22,9 +22,6 @@ #if SDL_VIDEO_DRIVER_COCOA -#include "SDL_events.h" -#include "SDL_timer.h" -#include "SDL_messagebox.h" #include "SDL_cocoavideo.h" @interface SDLMessageBoxPresenter : NSObject { diff --git a/src/video/cocoa/SDL_cocoametalview.m b/src/video/cocoa/SDL_cocoametalview.m index 67b73708f..ccd30db36 100644 --- a/src/video/cocoa/SDL_cocoametalview.m +++ b/src/video/cocoa/SDL_cocoametalview.m @@ -30,10 +30,9 @@ #if SDL_VIDEO_DRIVER_COCOA && (SDL_VIDEO_VULKAN || SDL_VIDEO_METAL) -#include "SDL_events.h" #define SDL_ENABLE_SYSWM_COCOA -#include "SDL_syswm.h" +#include static int SDLCALL diff --git a/src/video/cocoa/SDL_cocoamouse.m b/src/video/cocoa/SDL_cocoamouse.m index e8957cc6e..bc621aefa 100644 --- a/src/video/cocoa/SDL_cocoamouse.m +++ b/src/video/cocoa/SDL_cocoamouse.m @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_COCOA -#include "SDL_events.h" #include "SDL_cocoamouse.h" #include "SDL_cocoavideo.h" diff --git a/src/video/cocoa/SDL_cocoaopengl.h b/src/video/cocoa/SDL_cocoaopengl.h index 9330b5744..aaff1f882 100644 --- a/src/video/cocoa/SDL_cocoaopengl.h +++ b/src/video/cocoa/SDL_cocoaopengl.h @@ -25,7 +25,6 @@ #if SDL_VIDEO_OPENGL_CGL -#include "SDL_atomic.h" #import #import diff --git a/src/video/cocoa/SDL_cocoaopengl.m b/src/video/cocoa/SDL_cocoaopengl.m index 58df449a3..883c1939d 100644 --- a/src/video/cocoa/SDL_cocoaopengl.m +++ b/src/video/cocoa/SDL_cocoaopengl.m @@ -31,9 +31,7 @@ #include #include -#include "SDL_hints.h" -#include "SDL_loadso.h" -#include "SDL_opengl.h" +#include #include "../../SDL_hints_c.h" #define DEFAULT_OPENGL "/System/Library/Frameworks/OpenGL.framework/Libraries/libGL.dylib" diff --git a/src/video/cocoa/SDL_cocoashape.h b/src/video/cocoa/SDL_cocoashape.h index 358d878ef..661c3489a 100644 --- a/src/video/cocoa/SDL_cocoashape.h +++ b/src/video/cocoa/SDL_cocoashape.h @@ -24,9 +24,6 @@ #ifndef SDL_cocoashape_h_ #define SDL_cocoashape_h_ -#include "SDL_stdinc.h" -#include "SDL_video.h" -#include "SDL_shape.h" #include "../SDL_shape_internals.h" @interface SDL_ShapeData : NSObject diff --git a/src/video/cocoa/SDL_cocoashape.m b/src/video/cocoa/SDL_cocoashape.m index ac3459c56..3bd9b5a15 100644 --- a/src/video/cocoa/SDL_cocoashape.m +++ b/src/video/cocoa/SDL_cocoashape.m @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_COCOA #include "SDL_cocoavideo.h" -#include "SDL_shape.h" #include "SDL_cocoashape.h" #include "../SDL_sysvideo.h" diff --git a/src/video/cocoa/SDL_cocoavideo.h b/src/video/cocoa/SDL_cocoavideo.h index 8f4a413e9..223199a39 100644 --- a/src/video/cocoa/SDL_cocoavideo.h +++ b/src/video/cocoa/SDL_cocoavideo.h @@ -23,13 +23,12 @@ #ifndef SDL_cocoavideo_h_ #define SDL_cocoavideo_h_ -#include "SDL_opengl.h" +#include #include #include #include -#include "SDL_keycode.h" #include "../SDL_sysvideo.h" #include "SDL_cocoaclipboard.h" diff --git a/src/video/cocoa/SDL_cocoavideo.m b/src/video/cocoa/SDL_cocoavideo.m index 0f83cfe51..c999ca623 100644 --- a/src/video/cocoa/SDL_cocoavideo.m +++ b/src/video/cocoa/SDL_cocoavideo.m @@ -26,8 +26,6 @@ #error SDL must be built with Objective-C ARC (automatic reference counting) enabled #endif -#include "SDL.h" -#include "SDL_endian.h" #include "SDL_cocoavideo.h" #include "SDL_cocoashape.h" #include "SDL_cocoavulkan.h" diff --git a/src/video/cocoa/SDL_cocoavulkan.m b/src/video/cocoa/SDL_cocoavulkan.m index 05a2eb1e1..de9fe1f14 100644 --- a/src/video/cocoa/SDL_cocoavulkan.m +++ b/src/video/cocoa/SDL_cocoavulkan.m @@ -30,12 +30,11 @@ #include "SDL_cocoavideo.h" #include "SDL_cocoawindow.h" -#include "SDL_loadso.h" #include "SDL_cocoametalview.h" #include "SDL_cocoavulkan.h" #define SDL_ENABLE_SYSWM_COCOA -#include "SDL_syswm.h" +#include #include diff --git a/src/video/cocoa/SDL_cocoawindow.m b/src/video/cocoa/SDL_cocoawindow.m index 833f03580..4b75b0886 100644 --- a/src/video/cocoa/SDL_cocoawindow.m +++ b/src/video/cocoa/SDL_cocoawindow.m @@ -26,8 +26,6 @@ # error SDL for macOS must be built with a 10.7 SDK or above. #endif /* MAC_OS_X_VERSION_MAX_ALLOWED < 1070 */ -#include "SDL_timer.h" /* For SDL_GetTicks() */ -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../../events/SDL_keyboard_c.h" #include "../../events/SDL_mouse_c.h" @@ -42,7 +40,7 @@ #include "SDL_cocoaopengles.h" #define SDL_ENABLE_SYSWM_COCOA -#include "SDL_syswm.h" +#include /* #define DEBUG_COCOAWINDOW */ diff --git a/src/video/dummy/SDL_nullvideo.c b/src/video/dummy/SDL_nullvideo.c index df6c769cf..fc0af1553 100644 --- a/src/video/dummy/SDL_nullvideo.c +++ b/src/video/dummy/SDL_nullvideo.c @@ -37,8 +37,6 @@ * SDL video driver. Renamed to "DUMMY" by Sam Lantinga. */ -#include "SDL_video.h" -#include "SDL_mouse.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" @@ -46,7 +44,6 @@ #include "SDL_nullvideo.h" #include "SDL_nullevents_c.h" #include "SDL_nullframebuffer_c.h" -#include "SDL_hints.h" #define DUMMYVID_DRIVER_NAME "dummy" #define DUMMYVID_DRIVER_EVDEV_NAME "evdev" diff --git a/src/video/emscripten/SDL_emscriptenevents.c b/src/video/emscripten/SDL_emscriptenevents.c index deb12b47a..0fe0bdcbb 100644 --- a/src/video/emscripten/SDL_emscriptenevents.c +++ b/src/video/emscripten/SDL_emscriptenevents.c @@ -34,7 +34,6 @@ #include "SDL_emscriptenevents.h" #include "SDL_emscriptenvideo.h" -#include "SDL_hints.h" #define FULLSCREEN_MASK ( SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_FULLSCREEN ) diff --git a/src/video/emscripten/SDL_emscriptenframebuffer.c b/src/video/emscripten/SDL_emscriptenframebuffer.c index 379cb2495..8c461a940 100644 --- a/src/video/emscripten/SDL_emscriptenframebuffer.c +++ b/src/video/emscripten/SDL_emscriptenframebuffer.c @@ -24,7 +24,6 @@ #include "SDL_emscriptenvideo.h" #include "SDL_emscriptenframebuffer.h" -#include "SDL_hints.h" #include diff --git a/src/video/emscripten/SDL_emscriptenmouse.h b/src/video/emscripten/SDL_emscriptenmouse.h index cfc36aee3..82e3882fc 100644 --- a/src/video/emscripten/SDL_emscriptenmouse.h +++ b/src/video/emscripten/SDL_emscriptenmouse.h @@ -23,7 +23,6 @@ #ifndef SDL_emscriptenmouse_h_ #define SDL_emscriptenmouse_h_ -#include "SDL_stdinc.h" typedef struct _Emscripten_CursorData { diff --git a/src/video/emscripten/SDL_emscriptenopengles.c b/src/video/emscripten/SDL_emscriptenopengles.c index ccec124ce..63a198466 100644 --- a/src/video/emscripten/SDL_emscriptenopengles.c +++ b/src/video/emscripten/SDL_emscriptenopengles.c @@ -28,7 +28,6 @@ #include "SDL_emscriptenvideo.h" #include "SDL_emscriptenopengles.h" -#include "SDL_hints.h" int diff --git a/src/video/emscripten/SDL_emscriptenvideo.c b/src/video/emscripten/SDL_emscriptenvideo.c index c8efac48f..1ccc485b4 100644 --- a/src/video/emscripten/SDL_emscriptenvideo.c +++ b/src/video/emscripten/SDL_emscriptenvideo.c @@ -22,9 +22,6 @@ #if SDL_VIDEO_DRIVER_EMSCRIPTEN -#include "SDL_video.h" -#include "SDL_mouse.h" -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/haiku/SDL_BApp.h b/src/video/haiku/SDL_BApp.h index 215f83662..435569d7d 100644 --- a/src/video/haiku/SDL_BApp.h +++ b/src/video/haiku/SDL_BApp.h @@ -37,7 +37,6 @@ extern "C" { #include "../../SDL_internal.h" -#include "SDL_video.h" /* Local includes */ #include "../../events/SDL_events_c.h" diff --git a/src/video/haiku/SDL_BWin.h b/src/video/haiku/SDL_BWin.h index 3c4b12f4b..3361fbe53 100644 --- a/src/video/haiku/SDL_BWin.h +++ b/src/video/haiku/SDL_BWin.h @@ -27,10 +27,9 @@ extern "C" { #endif #include "../../SDL_internal.h" -#include "SDL.h" #include "SDL_bframebuffer.h" -#include "SDL_syswm.h" +#include #ifdef __cplusplus } @@ -43,7 +42,6 @@ extern "C" { #if SDL_VIDEO_OPENGL #include #endif -#include "SDL_events.h" #include "../../main/haiku/SDL_BApp.h" diff --git a/src/video/haiku/SDL_bclipboard.cc b/src/video/haiku/SDL_bclipboard.cc index 37cec38d3..1a3d84a78 100644 --- a/src/video/haiku/SDL_bclipboard.cc +++ b/src/video/haiku/SDL_bclipboard.cc @@ -28,7 +28,6 @@ #include #include "SDL_BWin.h" -#include "SDL_timer.h" #include "../SDL_sysvideo.h" #ifdef __cplusplus diff --git a/src/video/haiku/SDL_bkeyboard.cc b/src/video/haiku/SDL_bkeyboard.cc index a4aea4d48..036998727 100644 --- a/src/video/haiku/SDL_bkeyboard.cc +++ b/src/video/haiku/SDL_bkeyboard.cc @@ -29,8 +29,6 @@ extern "C" { #endif -#include "SDL_events.h" -#include "SDL_keycode.h" #include "SDL_bkeyboard.h" diff --git a/src/video/haiku/SDL_bkeyboard.h b/src/video/haiku/SDL_bkeyboard.h index 4c2a5903a..4c76b4134 100644 --- a/src/video/haiku/SDL_bkeyboard.h +++ b/src/video/haiku/SDL_bkeyboard.h @@ -28,8 +28,6 @@ extern "C" { #endif -#include "../../../include/SDL_keyboard.h" - extern void HAIKU_InitOSKeymap(void); extern SDL_Scancode HAIKU_GetScancodeFromBeKey(int32 bkey); extern int8 HAIKU_GetKeyState(int32 bkey); diff --git a/src/video/haiku/SDL_bmessagebox.cc b/src/video/haiku/SDL_bmessagebox.cc index 22b453cbb..ab95e41d2 100644 --- a/src/video/haiku/SDL_bmessagebox.cc +++ b/src/video/haiku/SDL_bmessagebox.cc @@ -24,7 +24,6 @@ #if SDL_VIDEO_DRIVER_HAIKU -#include "SDL_messagebox.h" /* For application signature. */ #include "../../main/haiku/SDL_BeApp.h" diff --git a/src/video/haiku/SDL_bwindow.cc b/src/video/haiku/SDL_bwindow.cc index 039d22cb0..26cdb7c29 100644 --- a/src/video/haiku/SDL_bwindow.cc +++ b/src/video/haiku/SDL_bwindow.cc @@ -26,7 +26,7 @@ #include "SDL_BWin.h" #include -#include "SDL_syswm.h" +#include /* Define a path to window's BWIN data */ #ifdef __cplusplus diff --git a/src/video/kmsdrm/SDL_kmsdrmdyn.c b/src/video/kmsdrm/SDL_kmsdrmdyn.c index bf3ff2e3e..96a63b96f 100644 --- a/src/video/kmsdrm/SDL_kmsdrmdyn.c +++ b/src/video/kmsdrm/SDL_kmsdrmdyn.c @@ -29,8 +29,7 @@ #ifdef SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC -#include "SDL_name.h" -#include "SDL_loadso.h" +#include typedef struct { diff --git a/src/video/kmsdrm/SDL_kmsdrmopengles.c b/src/video/kmsdrm/SDL_kmsdrmopengles.c index 0580e0ec5..883d38db1 100644 --- a/src/video/kmsdrm/SDL_kmsdrmopengles.c +++ b/src/video/kmsdrm/SDL_kmsdrmopengles.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_KMSDRM -#include "SDL_log.h" #include "SDL_kmsdrmvideo.h" #include "SDL_kmsdrmopengles.h" diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.c b/src/video/kmsdrm/SDL_kmsdrmvideo.c index ba1dd3193..78a2ce26b 100644 --- a/src/video/kmsdrm/SDL_kmsdrmvideo.c +++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c @@ -25,8 +25,6 @@ /* SDL internals */ #include "../SDL_sysvideo.h" -#include "SDL_log.h" -#include "SDL_hints.h" #include "../../events/SDL_events_c.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_keyboard_c.h" @@ -38,7 +36,7 @@ #endif #define SDL_ENABLE_SYSWM_KMSDRM -#include "SDL_syswm.h" +#include /* KMS/DRM declarations */ #include "SDL_kmsdrmvideo.h" diff --git a/src/video/kmsdrm/SDL_kmsdrmvulkan.c b/src/video/kmsdrm/SDL_kmsdrmvulkan.c index 345cd151d..1a97d0949 100644 --- a/src/video/kmsdrm/SDL_kmsdrmvulkan.c +++ b/src/video/kmsdrm/SDL_kmsdrmvulkan.c @@ -28,15 +28,13 @@ #if SDL_VIDEO_VULKAN && SDL_VIDEO_DRIVER_KMSDRM -#include "SDL_assert.h" -#include "SDL_loadso.h" #include "SDL_kmsdrmvideo.h" #include "SDL_kmsdrmdyn.h" #include "SDL_kmsdrmvulkan.h" #define SDL_ENABLE_SYSWM_KMSDRM -#include "SDL_syswm.h" +#include #include diff --git a/src/video/ngage/SDL_ngagevideo.cpp b/src/video/ngage/SDL_ngagevideo.cpp index d0ed05f20..7611b273d 100644 --- a/src/video/ngage/SDL_ngagevideo.cpp +++ b/src/video/ngage/SDL_ngagevideo.cpp @@ -31,7 +31,6 @@ extern "C" { #endif -#include "SDL_video.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/ngage/SDL_ngagewindow.h b/src/video/ngage/SDL_ngagewindow.h index ed1f983b9..46220b9de 100644 --- a/src/video/ngage/SDL_ngagewindow.h +++ b/src/video/ngage/SDL_ngagewindow.h @@ -24,7 +24,7 @@ #include "../SDL_sysvideo.h" -#include "SDL_syswm.h" +#include #include "SDL_ngagevideo.h" diff --git a/src/video/offscreen/SDL_offscreenvideo.c b/src/video/offscreen/SDL_offscreenvideo.c index 8e62e88fb..a065f73fa 100644 --- a/src/video/offscreen/SDL_offscreenvideo.c +++ b/src/video/offscreen/SDL_offscreenvideo.c @@ -30,7 +30,6 @@ * for automated testing. */ -#include "SDL_video.h" #include "SDL_offscreenvideo.h" #include "SDL_offscreenevents_c.h" diff --git a/src/video/ps2/SDL_ps2video.c b/src/video/ps2/SDL_ps2video.c index 9ada4edaf..b5422dc30 100644 --- a/src/video/ps2/SDL_ps2video.c +++ b/src/video/ps2/SDL_ps2video.c @@ -37,14 +37,11 @@ * SDL video driver. Renamed to "PS2" by Sam Lantinga. */ -#include "SDL_video.h" -#include "SDL_mouse.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" #include "SDL_ps2video.h" -#include "SDL_hints.h" /* PS2 driver bootstrap functions */ diff --git a/src/video/psp/SDL_pspevents.c b/src/video/psp/SDL_pspevents.c index dd2c67f17..62bfdf175 100644 --- a/src/video/psp/SDL_pspevents.c +++ b/src/video/psp/SDL_pspevents.c @@ -25,13 +25,11 @@ /* Being a null driver, there's no event stream. We just define stubs for most of the API. */ -#include "SDL.h" #include "../../events/SDL_events_c.h" #include "../../events/SDL_keyboard_c.h" #include "../SDL_sysvideo.h" #include "SDL_pspvideo.h" #include "SDL_pspevents_c.h" -#include "SDL_keyboard.h" #include "../../thread/SDL_systhread.h" #include #include diff --git a/src/video/psp/SDL_pspgl.c b/src/video/psp/SDL_pspgl.c index ca55ea251..ec9bf82d5 100644 --- a/src/video/psp/SDL_pspgl.c +++ b/src/video/psp/SDL_pspgl.c @@ -25,7 +25,6 @@ #include #include -#include "SDL_error.h" #include "SDL_pspvideo.h" #include "SDL_pspgl_c.h" diff --git a/src/video/psp/SDL_pspmouse.c b/src/video/psp/SDL_pspmouse.c index 926f63977..d05a27c1e 100644 --- a/src/video/psp/SDL_pspmouse.c +++ b/src/video/psp/SDL_pspmouse.c @@ -24,8 +24,6 @@ #include -#include "SDL_error.h" -#include "SDL_mouse.h" #include "../../events/SDL_events_c.h" #include "SDL_pspmouse_c.h" diff --git a/src/video/psp/SDL_pspvideo.c b/src/video/psp/SDL_pspvideo.c index 9c1524bf4..19d7992b3 100644 --- a/src/video/psp/SDL_pspvideo.c +++ b/src/video/psp/SDL_pspvideo.c @@ -25,13 +25,10 @@ /* SDL internals */ #include "../SDL_sysvideo.h" -#include "SDL_version.h" -#include "SDL_loadso.h" -#include "SDL_events.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_keyboard_c.h" -#include "SDL_syswm.h" +#include /* PSP declarations */ diff --git a/src/video/raspberry/SDL_rpimouse.c b/src/video/raspberry/SDL_rpimouse.c index 7614fb8c0..bff83fce2 100644 --- a/src/video/raspberry/SDL_rpimouse.c +++ b/src/video/raspberry/SDL_rpimouse.c @@ -22,8 +22,6 @@ #if SDL_VIDEO_DRIVER_RPI -#include "SDL_surface.h" -#include "SDL_hints.h" #include "SDL_rpivideo.h" #include "SDL_rpimouse.h" diff --git a/src/video/raspberry/SDL_rpiopengles.c b/src/video/raspberry/SDL_rpiopengles.c index fe7d52175..c35f3c085 100644 --- a/src/video/raspberry/SDL_rpiopengles.c +++ b/src/video/raspberry/SDL_rpiopengles.c @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_hints.h" #if SDL_VIDEO_DRIVER_RPI && SDL_VIDEO_OPENGL_EGL diff --git a/src/video/raspberry/SDL_rpivideo.c b/src/video/raspberry/SDL_rpivideo.c index 6673baf41..877e26291 100644 --- a/src/video/raspberry/SDL_rpivideo.c +++ b/src/video/raspberry/SDL_rpivideo.c @@ -32,14 +32,10 @@ /* SDL internals */ #include "../SDL_sysvideo.h" -#include "SDL_version.h" -#include "SDL_loadso.h" -#include "SDL_events.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_keyboard_c.h" -#include "SDL_hints.h" -#include "SDL_syswm.h" +#include #ifdef SDL_INPUT_LINUXEV #include "../../core/linux/SDL_evdev.h" diff --git a/src/video/riscos/SDL_riscosevents.c b/src/video/riscos/SDL_riscosevents.c index fcca47011..f9f5728cc 100644 --- a/src/video/riscos/SDL_riscosevents.c +++ b/src/video/riscos/SDL_riscosevents.c @@ -24,7 +24,6 @@ #include "../../events/SDL_events_c.h" -#include "SDL_log.h" #include "SDL_riscosvideo.h" #include "SDL_riscosevents_c.h" #include "scancodes_riscos.h" diff --git a/src/video/riscos/SDL_riscosmessagebox.c b/src/video/riscos/SDL_riscosmessagebox.c index 8144a9df6..c506e8004 100644 --- a/src/video/riscos/SDL_riscosmessagebox.c +++ b/src/video/riscos/SDL_riscosmessagebox.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_RISCOS -#include "SDL_messagebox.h" #include "SDL_riscosmessagebox.h" #include diff --git a/src/video/riscos/SDL_riscosvideo.c b/src/video/riscos/SDL_riscosvideo.c index 476301100..163b91e53 100644 --- a/src/video/riscos/SDL_riscosvideo.c +++ b/src/video/riscos/SDL_riscosvideo.c @@ -22,8 +22,6 @@ #if SDL_VIDEO_DRIVER_RISCOS -#include "SDL_video.h" -#include "SDL_mouse.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/riscos/SDL_riscoswindow.c b/src/video/riscos/SDL_riscoswindow.c index 8b92942de..d8f9c8136 100644 --- a/src/video/riscos/SDL_riscoswindow.c +++ b/src/video/riscos/SDL_riscoswindow.c @@ -22,11 +22,10 @@ #if SDL_VIDEO_DRIVER_RISCOS -#include "SDL_version.h" #include "../SDL_sysvideo.h" #include "../../events/SDL_mouse_c.h" -#include "SDL_syswm.h" +#include #include "SDL_riscosvideo.h" #include "SDL_riscoswindow.h" diff --git a/src/video/riscos/scancodes_riscos.h b/src/video/riscos/scancodes_riscos.h index dbba9d1a1..c02f227cb 100644 --- a/src/video/riscos/scancodes_riscos.h +++ b/src/video/riscos/scancodes_riscos.h @@ -18,7 +18,6 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ -#include "SDL_scancode.h" /* RISC OS key code to SDL_Keycode mapping table Sources: diff --git a/src/video/sdlgenblit.pl b/src/video/sdlgenblit.pl index de07b19e5..0df471a15 100755 --- a/src/video/sdlgenblit.pl +++ b/src/video/sdlgenblit.pl @@ -594,7 +594,6 @@ sub output_copyfunc_h sub output_copyinc { print FILE <<__EOF__; -#include "SDL_video.h" #include "SDL_blit.h" #include "SDL_blit_auto.h" diff --git a/src/video/uikit/SDL_uikitappdelegate.m b/src/video/uikit/SDL_uikitappdelegate.m index 3186cc6e8..f41ac6954 100644 --- a/src/video/uikit/SDL_uikitappdelegate.m +++ b/src/video/uikit/SDL_uikitappdelegate.m @@ -23,9 +23,6 @@ #if SDL_VIDEO_DRIVER_UIKIT #include "../SDL_sysvideo.h" -#include "SDL_hints.h" -#include "SDL_system.h" -#include "SDL_main.h" #import "SDL_uikitappdelegate.h" #import "SDL_uikitmodes.h" diff --git a/src/video/uikit/SDL_uikitevents.m b/src/video/uikit/SDL_uikitevents.m index e1bc5a29e..fe3fb20aa 100644 --- a/src/video/uikit/SDL_uikitevents.m +++ b/src/video/uikit/SDL_uikitevents.m @@ -24,7 +24,6 @@ #include "../../events/SDL_events_c.h" -#include "SDL_system.h" #include "SDL_uikitevents.h" #include "SDL_uikitopengles.h" #include "SDL_uikitvideo.h" diff --git a/src/video/uikit/SDL_uikitmessagebox.m b/src/video/uikit/SDL_uikitmessagebox.m index 2c42ba746..f6a7a3576 100644 --- a/src/video/uikit/SDL_uikitmessagebox.m +++ b/src/video/uikit/SDL_uikitmessagebox.m @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_UIKIT -#include "SDL.h" #include "SDL_uikitvideo.h" #include "SDL_uikitwindow.h" diff --git a/src/video/uikit/SDL_uikitmetalview.m b/src/video/uikit/SDL_uikitmetalview.m index 15810e17a..109f0c7f8 100644 --- a/src/video/uikit/SDL_uikitmetalview.m +++ b/src/video/uikit/SDL_uikitmetalview.m @@ -36,7 +36,7 @@ #import "SDL_uikitmetalview.h" #define SDL_ENABLE_SYSWM_UIKIT -#include "SDL_syswm.h" +#include @implementation SDL_uikitmetalview diff --git a/src/video/uikit/SDL_uikitmodes.m b/src/video/uikit/SDL_uikitmodes.m index 322240d18..380677699 100644 --- a/src/video/uikit/SDL_uikitmodes.m +++ b/src/video/uikit/SDL_uikitmodes.m @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_UIKIT -#include "SDL_system.h" #include "SDL_uikitmodes.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/uikit/SDL_uikitopengles.m b/src/video/uikit/SDL_uikitopengles.m index 15ea2e350..b5bbd63af 100644 --- a/src/video/uikit/SDL_uikitopengles.m +++ b/src/video/uikit/SDL_uikitopengles.m @@ -31,7 +31,6 @@ #include "../../events/SDL_keyboard_c.h" #include "../../events/SDL_mouse_c.h" #include "../../power/uikit/SDL_syspower.h" -#include "SDL_loadso.h" #include @interface SDLEAGLContext : EAGLContext diff --git a/src/video/uikit/SDL_uikitvideo.m b/src/video/uikit/SDL_uikitvideo.m index 4e8a57755..0df6bcd8d 100644 --- a/src/video/uikit/SDL_uikitvideo.m +++ b/src/video/uikit/SDL_uikitvideo.m @@ -24,9 +24,6 @@ #import -#include "SDL_video.h" -#include "SDL_mouse.h" -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/uikit/SDL_uikitview.h b/src/video/uikit/SDL_uikitview.h index dcd63c7a5..c9a267721 100644 --- a/src/video/uikit/SDL_uikitview.h +++ b/src/video/uikit/SDL_uikitview.h @@ -23,7 +23,6 @@ #include "../SDL_sysvideo.h" -#include "SDL_touch.h" #if !TARGET_OS_TV && defined(__IPHONE_13_4) @interface SDL_uikitview : UIView diff --git a/src/video/uikit/SDL_uikitview.m b/src/video/uikit/SDL_uikitview.m index 8c48cfa50..fcb704177 100644 --- a/src/video/uikit/SDL_uikitview.m +++ b/src/video/uikit/SDL_uikitview.m @@ -24,7 +24,6 @@ #include "SDL_uikitview.h" -#include "SDL_hints.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_touch_c.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/uikit/SDL_uikitviewcontroller.h b/src/video/uikit/SDL_uikitviewcontroller.h index 2e64a5279..ab5597263 100644 --- a/src/video/uikit/SDL_uikitviewcontroller.h +++ b/src/video/uikit/SDL_uikitviewcontroller.h @@ -24,7 +24,6 @@ #include "../SDL_sysvideo.h" -#include "SDL_touch.h" #if TARGET_OS_TV #import diff --git a/src/video/uikit/SDL_uikitviewcontroller.m b/src/video/uikit/SDL_uikitviewcontroller.m index ee7ee83b0..0a19d252f 100644 --- a/src/video/uikit/SDL_uikitviewcontroller.m +++ b/src/video/uikit/SDL_uikitviewcontroller.m @@ -22,8 +22,6 @@ #if SDL_VIDEO_DRIVER_UIKIT -#include "SDL_video.h" -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/uikit/SDL_uikitvulkan.m b/src/video/uikit/SDL_uikitvulkan.m index 9721053fa..2ca0ca055 100644 --- a/src/video/uikit/SDL_uikitvulkan.m +++ b/src/video/uikit/SDL_uikitvulkan.m @@ -31,12 +31,11 @@ #include "SDL_uikitvideo.h" #include "SDL_uikitwindow.h" -#include "SDL_loadso.h" #include "SDL_uikitvulkan.h" #include "SDL_uikitmetalview.h" #define SDL_ENABLE_SYSWM_UIKIT -#include "SDL_syswm.h" +#include #include diff --git a/src/video/uikit/SDL_uikitwindow.m b/src/video/uikit/SDL_uikitwindow.m index 45bbc27fe..9e640e8cd 100644 --- a/src/video/uikit/SDL_uikitwindow.m +++ b/src/video/uikit/SDL_uikitwindow.m @@ -22,10 +22,6 @@ #if SDL_VIDEO_DRIVER_UIKIT -#include "SDL_hints.h" -#include "SDL_mouse.h" -#include "SDL_system.h" -#include "SDL_video.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" @@ -39,7 +35,7 @@ #include "SDL_uikitopenglview.h" #define SDL_ENABLE_SYSWM_UIKIT -#include "SDL_syswm.h" +#include #include diff --git a/src/video/vita/SDL_vitagl_pvr.c b/src/video/vita/SDL_vitagl_pvr.c index d51150c03..189d06e80 100644 --- a/src/video/vita/SDL_vitagl_pvr.c +++ b/src/video/vita/SDL_vitagl_pvr.c @@ -27,8 +27,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_log.h" #include "SDL_vitavideo.h" #include "../SDL_egl_c.h" #include "SDL_vitagl_pvr_c.h" diff --git a/src/video/vita/SDL_vitagles.c b/src/video/vita/SDL_vitagles.c index 18ca7d57b..7dc96b77d 100644 --- a/src/video/vita/SDL_vitagles.c +++ b/src/video/vita/SDL_vitagles.c @@ -24,8 +24,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_log.h" #include "SDL_vitavideo.h" #include "SDL_vitagles_c.h" diff --git a/src/video/vita/SDL_vitagles_pvr.c b/src/video/vita/SDL_vitagles_pvr.c index bb06d2946..a94efe135 100644 --- a/src/video/vita/SDL_vitagles_pvr.c +++ b/src/video/vita/SDL_vitagles_pvr.c @@ -26,8 +26,6 @@ #include #include -#include "SDL_error.h" -#include "SDL_log.h" #include "SDL_vitavideo.h" #include "../SDL_egl_c.h" #include "SDL_vitagles_pvr_c.h" diff --git a/src/video/vita/SDL_vitakeyboard.c b/src/video/vita/SDL_vitakeyboard.c index 409d424b1..c4c9cbbad 100644 --- a/src/video/vita/SDL_vitakeyboard.c +++ b/src/video/vita/SDL_vitakeyboard.c @@ -26,8 +26,6 @@ #include #include -#include "SDL_events.h" -#include "SDL_log.h" #include "SDL_vitavideo.h" #include "SDL_vitakeyboard.h" #include "../../events/SDL_keyboard_c.h" diff --git a/src/video/vita/SDL_vitamouse.c b/src/video/vita/SDL_vitamouse.c index 398a19483..d2337ba3a 100644 --- a/src/video/vita/SDL_vitamouse.c +++ b/src/video/vita/SDL_vitamouse.c @@ -26,9 +26,6 @@ #include #include -#include "SDL_events.h" -#include "SDL_log.h" -#include "SDL_mouse.h" #include "SDL_vitavideo.h" #include "SDL_vitamouse_c.h" #include "../../events/SDL_mouse_c.h" diff --git a/src/video/vita/SDL_vitatouch.c b/src/video/vita/SDL_vitatouch.c index 43a3ecbd2..5ac01652d 100644 --- a/src/video/vita/SDL_vitatouch.c +++ b/src/video/vita/SDL_vitatouch.c @@ -25,8 +25,6 @@ #include #include -#include "SDL_events.h" -#include "SDL_log.h" #include "SDL_vitavideo.h" #include "SDL_vitatouch.h" #include "../../events/SDL_mouse_c.h" diff --git a/src/video/vita/SDL_vitavideo.c b/src/video/vita/SDL_vitavideo.c index d8c16115d..ddda96bb2 100644 --- a/src/video/vita/SDL_vitavideo.c +++ b/src/video/vita/SDL_vitavideo.c @@ -25,13 +25,10 @@ /* SDL internals */ #include "../SDL_sysvideo.h" -#include "SDL_version.h" -#include "SDL_loadso.h" -#include "SDL_events.h" #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_keyboard_c.h" -#include "SDL_syswm.h" +#include /* VITA declarations */ #include diff --git a/src/video/vivante/SDL_vivantevideo.c b/src/video/vivante/SDL_vivantevideo.c index ae7826c60..f87e08758 100644 --- a/src/video/vivante/SDL_vivantevideo.c +++ b/src/video/vivante/SDL_vivantevideo.c @@ -24,12 +24,9 @@ /* SDL internals */ #include "../SDL_sysvideo.h" -#include "SDL_version.h" -#include "SDL_loadso.h" -#include "SDL_events.h" #include "../../events/SDL_events_c.h" -#include "SDL_syswm.h" +#include #ifdef SDL_INPUT_LINUXEV #include "../../core/linux/SDL_evdev.h" diff --git a/src/video/vivante/SDL_vivantevideo.h b/src/video/vivante/SDL_vivantevideo.h index 9acef5ffe..ea2346458 100644 --- a/src/video/vivante/SDL_vivantevideo.h +++ b/src/video/vivante/SDL_vivantevideo.h @@ -25,7 +25,7 @@ #include "../../SDL_internal.h" #include "../SDL_sysvideo.h" -#include "SDL_egl.h" +#include #if SDL_VIDEO_DRIVER_VIVANTE_VDK #include diff --git a/src/video/vivante/SDL_vivantevulkan.c b/src/video/vivante/SDL_vivantevulkan.c index fe6a6b0ae..798c5e446 100644 --- a/src/video/vivante/SDL_vivantevulkan.c +++ b/src/video/vivante/SDL_vivantevulkan.c @@ -31,9 +31,8 @@ #include "SDL_vivantevideo.h" -#include "SDL_loadso.h" #include "SDL_vivantevulkan.h" -#include "SDL_syswm.h" +#include int VIVANTE_Vulkan_LoadLibrary(_THIS, const char *path) { diff --git a/src/video/wayland/SDL_waylanddatamanager.c b/src/video/wayland/SDL_waylanddatamanager.c index 63e9d489c..403741ad8 100644 --- a/src/video/wayland/SDL_waylanddatamanager.c +++ b/src/video/wayland/SDL_waylanddatamanager.c @@ -28,7 +28,6 @@ #include #include -#include "SDL_stdinc.h" #include "../../core/unix/SDL_poll.h" #include "SDL_waylandvideo.h" diff --git a/src/video/wayland/SDL_waylanddyn.c b/src/video/wayland/SDL_waylanddyn.c index 6c91e0bcf..bdceeb6ef 100644 --- a/src/video/wayland/SDL_waylanddyn.c +++ b/src/video/wayland/SDL_waylanddyn.c @@ -29,8 +29,7 @@ #ifdef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC -#include "SDL_name.h" -#include "SDL_loadso.h" +#include typedef struct { diff --git a/src/video/wayland/SDL_waylandevents.c b/src/video/wayland/SDL_waylandevents.c index 5ccffd9dd..15a19eba5 100644 --- a/src/video/wayland/SDL_waylandevents.c +++ b/src/video/wayland/SDL_waylandevents.c @@ -23,9 +23,6 @@ #if SDL_VIDEO_DRIVER_WAYLAND -#include "SDL_stdinc.h" -#include "SDL_timer.h" -#include "SDL_hints.h" #include "../../core/unix/SDL_poll.h" #include "../../events/SDL_events_c.h" diff --git a/src/video/wayland/SDL_waylandmessagebox.c b/src/video/wayland/SDL_waylandmessagebox.c index fe66c61fd..484eca5f2 100644 --- a/src/video/wayland/SDL_waylandmessagebox.c +++ b/src/video/wayland/SDL_waylandmessagebox.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_WAYLAND -#include "SDL.h" #include /* fgets */ #include /* FILE, STDOUT_FILENO, fdopen, fclose */ #include /* pid_t, pipe, fork, close, dup2, execvp, _exit */ diff --git a/src/video/wayland/SDL_waylandmouse.c b/src/video/wayland/SDL_waylandmouse.c index 20c5efca0..7884fb93e 100644 --- a/src/video/wayland/SDL_waylandmouse.c +++ b/src/video/wayland/SDL_waylandmouse.c @@ -31,7 +31,6 @@ #include "../SDL_sysvideo.h" -#include "SDL_mouse.h" #include "../../events/SDL_mouse_c.h" #include "SDL_waylandvideo.h" #include "../SDL_pixels_c.h" @@ -40,7 +39,6 @@ #include "wayland-cursor.h" #include "SDL_waylandmouse.h" -#include "SDL_hints.h" #include "../../SDL_hints_c.h" static int diff --git a/src/video/wayland/SDL_waylandmouse.h b/src/video/wayland/SDL_waylandmouse.h index 00a56af43..77b2a8a44 100644 --- a/src/video/wayland/SDL_waylandmouse.h +++ b/src/video/wayland/SDL_waylandmouse.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_mouse.h" #include "SDL_waylandvideo.h" #if SDL_VIDEO_DRIVER_WAYLAND diff --git a/src/video/wayland/SDL_waylandopengles.c b/src/video/wayland/SDL_waylandopengles.c index f90d7ac00..72346348e 100644 --- a/src/video/wayland/SDL_waylandopengles.c +++ b/src/video/wayland/SDL_waylandopengles.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_WAYLAND && SDL_VIDEO_OPENGL_EGL -#include "SDL_timer.h" #include "../../core/unix/SDL_poll.h" #include "../SDL_sysvideo.h" #include "../../events/SDL_windowevents_c.h" diff --git a/src/video/wayland/SDL_waylandtouch.c b/src/video/wayland/SDL_waylandtouch.c index b3879f176..9f1f0285b 100644 --- a/src/video/wayland/SDL_waylandtouch.c +++ b/src/video/wayland/SDL_waylandtouch.c @@ -25,8 +25,6 @@ #ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH -#include "SDL_mouse.h" -#include "SDL_keyboard.h" #include "SDL_waylandtouch.h" #include "../../events/SDL_touch_c.h" diff --git a/src/video/wayland/SDL_waylandvideo.c b/src/video/wayland/SDL_waylandvideo.c index 38e1b2810..09c3125b5 100644 --- a/src/video/wayland/SDL_waylandvideo.c +++ b/src/video/wayland/SDL_waylandvideo.c @@ -23,9 +23,6 @@ #if SDL_VIDEO_DRIVER_WAYLAND -#include "SDL_video.h" -#include "SDL_mouse.h" -#include "SDL_stdinc.h" #include "../../events/SDL_events_c.h" #include "SDL_waylandvideo.h" @@ -37,7 +34,6 @@ #include "SDL_waylandtouch.h" #include "SDL_waylandclipboard.h" #include "SDL_waylandvulkan.h" -#include "SDL_hints.h" #include #include diff --git a/src/video/wayland/SDL_waylandvideo.h b/src/video/wayland/SDL_waylandvideo.h index e7f66fe2d..d08c2643b 100644 --- a/src/video/wayland/SDL_waylandvideo.h +++ b/src/video/wayland/SDL_waylandvideo.h @@ -20,7 +20,6 @@ */ #include "../../SDL_internal.h" -#include "SDL_stdinc.h" #ifndef SDL_waylandvideo_h_ #define SDL_waylandvideo_h_ diff --git a/src/video/wayland/SDL_waylandvulkan.c b/src/video/wayland/SDL_waylandvulkan.c index ff934eb0f..96b525ada 100644 --- a/src/video/wayland/SDL_waylandvulkan.c +++ b/src/video/wayland/SDL_waylandvulkan.c @@ -31,11 +31,10 @@ #include "SDL_waylandvideo.h" #include "SDL_waylandwindow.h" -#include "SDL_loadso.h" #include "SDL_waylandvulkan.h" #define SDL_ENABLE_SYSWM_WAYLAND -#include "SDL_syswm.h" +#include #if defined(__OpenBSD__) #define DEFAULT_VULKAN "libvulkan.so" diff --git a/src/video/wayland/SDL_waylandwindow.c b/src/video/wayland/SDL_waylandwindow.c index 96b559ae2..d37a526a5 100644 --- a/src/video/wayland/SDL_waylandwindow.c +++ b/src/video/wayland/SDL_waylandwindow.c @@ -31,9 +31,7 @@ #include "SDL_waylandwindow.h" #include "SDL_waylandvideo.h" #include "SDL_waylandtouch.h" -#include "SDL_hints.h" #include "../../SDL_hints_c.h" -#include "SDL_events.h" #include "xdg-shell-client-protocol.h" #include "xdg-decoration-unstable-v1-client-protocol.h" diff --git a/src/video/wayland/SDL_waylandwindow.h b/src/video/wayland/SDL_waylandwindow.h index a5a5cd43d..cfdb4dff1 100644 --- a/src/video/wayland/SDL_waylandwindow.h +++ b/src/video/wayland/SDL_waylandwindow.h @@ -28,7 +28,7 @@ #include "../../events/SDL_touch_c.h" #define SDL_ENABLE_SYSWM_WAYLAND -#include "SDL_syswm.h" +#include #include "SDL_waylandvideo.h" diff --git a/src/video/windows/SDL_windowsevents.c b/src/video/windows/SDL_windowsevents.c index c60690585..c230df8cc 100644 --- a/src/video/windows/SDL_windowsevents.c +++ b/src/video/windows/SDL_windowsevents.c @@ -24,19 +24,13 @@ #include "SDL_windowsvideo.h" #include "SDL_windowsshape.h" -#include "SDL_system.h" -#include "SDL_timer.h" #include "SDL_vkeys.h" -#include "SDL_hints.h" -#include "SDL_main.h" #include "../../events/SDL_events_c.h" #include "../../events/SDL_touch_c.h" #include "../../events/scancodes_windows.h" -#include "SDL_hints.h" -#include "SDL_log.h" #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include /* Dropfile support */ #include diff --git a/src/video/windows/SDL_windowskeyboard.c b/src/video/windows/SDL_windowskeyboard.c index a62ba0717..bd9dacc18 100644 --- a/src/video/windows/SDL_windowskeyboard.c +++ b/src/video/windows/SDL_windowskeyboard.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_WINDOWS && !defined(__XBOXONE__) && !defined(__XBOXSERIES__) #include "SDL_windowsvideo.h" -#include "SDL_hints.h" #include "../../events/SDL_keyboard_c.h" #include "../../events/scancodes_windows.h" diff --git a/src/video/windows/SDL_windowsopengl.c b/src/video/windows/SDL_windowsopengl.c index ffb0d040f..ba9247418 100644 --- a/src/video/windows/SDL_windowsopengl.c +++ b/src/video/windows/SDL_windowsopengl.c @@ -22,15 +22,13 @@ #if SDL_VIDEO_DRIVER_WINDOWS && !defined(__XBOXONE__) && !defined(__XBOXSERIES__) -#include "SDL_loadso.h" #include "SDL_windowsvideo.h" #include "SDL_windowsopengles.h" -#include "SDL_hints.h" /* WGL implementation of SDL OpenGL support */ #if SDL_VIDEO_OPENGL_WGL -#include "SDL_opengl.h" +#include #define DEFAULT_OPENGL "OPENGL32.DLL" diff --git a/src/video/windows/SDL_windowsopengles.c b/src/video/windows/SDL_windowsopengles.c index 4ba30ba4f..7e00748d6 100644 --- a/src/video/windows/SDL_windowsopengles.c +++ b/src/video/windows/SDL_windowsopengles.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_WINDOWS && SDL_VIDEO_OPENGL_EGL && !defined(__XBOXONE__) && !defined(__XBOXSERIES__) -#include "SDL_hints.h" #include "SDL_windowsvideo.h" #include "SDL_windowsopengles.h" #include "SDL_windowsopengl.h" diff --git a/src/video/windows/SDL_windowsshape.h b/src/video/windows/SDL_windowsshape.h index 982807357..22852e283 100644 --- a/src/video/windows/SDL_windowsshape.h +++ b/src/video/windows/SDL_windowsshape.h @@ -24,8 +24,6 @@ #ifndef SDL_windowsshape_h_ #define SDL_windowsshape_h_ -#include "SDL_video.h" -#include "SDL_shape.h" #include "../SDL_sysvideo.h" #include "../SDL_shape_internals.h" diff --git a/src/video/windows/SDL_windowsvideo.c b/src/video/windows/SDL_windowsvideo.c index efcbbc9f9..08f36b548 100644 --- a/src/video/windows/SDL_windowsvideo.c +++ b/src/video/windows/SDL_windowsvideo.c @@ -22,11 +22,6 @@ #if SDL_VIDEO_DRIVER_WINDOWS -#include "SDL_main.h" -#include "SDL_video.h" -#include "SDL_hints.h" -#include "SDL_mouse.h" -#include "SDL_system.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" diff --git a/src/video/windows/SDL_windowsvideo.h b/src/video/windows/SDL_windowsvideo.h index cdebb4cfa..94a32ab07 100644 --- a/src/video/windows/SDL_windowsvideo.h +++ b/src/video/windows/SDL_windowsvideo.h @@ -51,8 +51,6 @@ #endif #include "SDL_windowswindow.h" -#include "SDL_events.h" -#include "SDL_loadso.h" #if WINVER < 0x0601 diff --git a/src/video/windows/SDL_windowsvulkan.c b/src/video/windows/SDL_windowsvulkan.c index 41417f3c0..d6ea57824 100644 --- a/src/video/windows/SDL_windowsvulkan.c +++ b/src/video/windows/SDL_windowsvulkan.c @@ -31,11 +31,10 @@ #include "SDL_windowsvideo.h" #include "SDL_windowswindow.h" -#include "SDL_loadso.h" #include "SDL_windowsvulkan.h" #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include int WIN_Vulkan_LoadLibrary(_THIS, const char *path) { diff --git a/src/video/windows/SDL_windowswindow.c b/src/video/windows/SDL_windowswindow.c index 331ab83c2..1a01a3468 100644 --- a/src/video/windows/SDL_windowswindow.c +++ b/src/video/windows/SDL_windowswindow.c @@ -24,7 +24,6 @@ #include "../../core/windows/SDL_windows.h" -#include "SDL_log.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_keyboard_c.h" @@ -35,15 +34,12 @@ #include "SDL_windowsvideo.h" #include "SDL_windowswindow.h" #include "SDL_windowsshape.h" -#include "SDL_hints.h" -#include "SDL_timer.h" -#include "SDL_version.h" /* Dropfile support */ #include #define SDL_ENABLE_SYSWM_WINDOWS -#include "SDL_syswm.h" +#include /* Windows CE compatibility */ #ifndef SWP_NOCOPYBITS diff --git a/src/video/winrt/SDL_winrtevents.cpp b/src/video/winrt/SDL_winrtevents.cpp index 646bde773..bebca7ce6 100644 --- a/src/video/winrt/SDL_winrtevents.cpp +++ b/src/video/winrt/SDL_winrtevents.cpp @@ -36,7 +36,6 @@ using Windows::UI::Core::CoreCursor; #include "../../core/winrt/SDL_winrtapp_common.h" #include "../../core/winrt/SDL_winrtapp_direct3d.h" #include "../../core/winrt/SDL_winrtapp_xaml.h" -#include "SDL_system.h" extern "C" { #include "../../thread/SDL_systhread.h" diff --git a/src/video/winrt/SDL_winrtgamebar.cpp b/src/video/winrt/SDL_winrtgamebar.cpp index 2b1235721..e7005a416 100644 --- a/src/video/winrt/SDL_winrtgamebar.cpp +++ b/src/video/winrt/SDL_winrtgamebar.cpp @@ -30,7 +30,6 @@ /* SDL includes */ extern "C" { -#include "SDL_mouse.h" #include "../SDL_sysvideo.h" } #include "SDL_winrtvideo_cpp.h" diff --git a/src/video/winrt/SDL_winrtkeyboard.cpp b/src/video/winrt/SDL_winrtkeyboard.cpp index f6ff0a409..7247cd6ee 100644 --- a/src/video/winrt/SDL_winrtkeyboard.cpp +++ b/src/video/winrt/SDL_winrtkeyboard.cpp @@ -28,7 +28,6 @@ /* SDL-specific includes */ -#include "SDL.h" #include "SDL_winrtevents_c.h" extern "C" { diff --git a/src/video/winrt/SDL_winrtmessagebox.cpp b/src/video/winrt/SDL_winrtmessagebox.cpp index f74a7f483..c91ff6f60 100644 --- a/src/video/winrt/SDL_winrtmessagebox.cpp +++ b/src/video/winrt/SDL_winrtmessagebox.cpp @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_WINRT extern "C" { -#include "SDL_messagebox.h" #include "../../core/windows/SDL_windows.h" } diff --git a/src/video/winrt/SDL_winrtmouse.cpp b/src/video/winrt/SDL_winrtmouse.cpp index 24e44682e..61140540d 100644 --- a/src/video/winrt/SDL_winrtmouse.cpp +++ b/src/video/winrt/SDL_winrtmouse.cpp @@ -37,7 +37,6 @@ extern "C" { #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_touch_c.h" #include "../SDL_sysvideo.h" -#include "SDL_events.h" } #include "../../core/winrt/SDL_winrtapp_direct3d.h" diff --git a/src/video/winrt/SDL_winrtopengles.cpp b/src/video/winrt/SDL_winrtopengles.cpp index d5301006e..45aef6781 100644 --- a/src/video/winrt/SDL_winrtopengles.cpp +++ b/src/video/winrt/SDL_winrtopengles.cpp @@ -27,7 +27,6 @@ #include "SDL_winrtvideo_cpp.h" extern "C" { #include "SDL_winrtopengles.h" -#include "SDL_loadso.h" #include "../SDL_egl_c.h" } diff --git a/src/video/winrt/SDL_winrtpointerinput.cpp b/src/video/winrt/SDL_winrtpointerinput.cpp index 51cc93727..aeb8298a5 100644 --- a/src/video/winrt/SDL_winrtpointerinput.cpp +++ b/src/video/winrt/SDL_winrtpointerinput.cpp @@ -26,7 +26,6 @@ #include "SDL_winrtevents_c.h" #include "SDL_winrtmouse_c.h" #include "SDL_winrtvideo_cpp.h" -#include "SDL_system.h" extern "C" { #include "../SDL_sysvideo.h" diff --git a/src/video/winrt/SDL_winrtvideo.cpp b/src/video/winrt/SDL_winrtvideo.cpp index fbe16b2dc..e3ef11a0a 100644 --- a/src/video/winrt/SDL_winrtvideo.cpp +++ b/src/video/winrt/SDL_winrtvideo.cpp @@ -68,14 +68,9 @@ extern "C" { #include "SDL_winrtevents_c.h" #include "SDL_winrtgamebar_cpp.h" #include "SDL_winrtmouse_c.h" -#include "SDL_main.h" -#include "SDL_mouse.h" -#include "SDL_video.h" -#include "SDL_system.h" -#include "SDL_hints.h" #define SDL_ENABLE_SYSWM_WINRT -#include "SDL_syswm.h" +#include /* Initialization/Query functions */ diff --git a/src/video/winrt/SDL_winrtvideo_cpp.h b/src/video/winrt/SDL_winrtvideo_cpp.h index 8e6d63bdc..b46ed4520 100644 --- a/src/video/winrt/SDL_winrtvideo_cpp.h +++ b/src/video/winrt/SDL_winrtvideo_cpp.h @@ -26,8 +26,6 @@ #endif /* SDL includes: */ -#include "SDL_video.h" -#include "SDL_events.h" #if NTDDI_VERSION >= NTDDI_WINBLUE /* ApplicationView's functionality only becomes useful for SDL in Win[Phone] 8.1 and up. diff --git a/src/video/x11/SDL_x11clipboard.c b/src/video/x11/SDL_x11clipboard.c index fd198bd20..d58e73e55 100644 --- a/src/video/x11/SDL_x11clipboard.c +++ b/src/video/x11/SDL_x11clipboard.c @@ -24,9 +24,7 @@ #include /* For INT_MAX */ -#include "SDL_events.h" #include "SDL_x11video.h" -#include "SDL_timer.h" #include "SDL_x11clipboard.h" /* Get any application owned window handle for clipboard association */ diff --git a/src/video/x11/SDL_x11dyn.c b/src/video/x11/SDL_x11dyn.c index 3c6474a07..c20dc6854 100644 --- a/src/video/x11/SDL_x11dyn.c +++ b/src/video/x11/SDL_x11dyn.c @@ -32,8 +32,7 @@ #ifdef SDL_VIDEO_DRIVER_X11_DYNAMIC -#include "SDL_name.h" -#include "SDL_loadso.h" +#include typedef struct { diff --git a/src/video/x11/SDL_x11events.c b/src/video/x11/SDL_x11events.c index 4fcad5386..2b92198ad 100644 --- a/src/video/x11/SDL_x11events.c +++ b/src/video/x11/SDL_x11events.c @@ -37,11 +37,9 @@ #include "../../events/SDL_mouse_c.h" #include "../../events/SDL_touch_c.h" -#include "SDL_hints.h" -#include "SDL_timer.h" #define SDL_ENABLE_SYSWM_X11 -#include "SDL_syswm.h" +#include #include diff --git a/src/video/x11/SDL_x11keyboard.c b/src/video/x11/SDL_x11keyboard.c index bad202964..fcaafeef1 100644 --- a/src/video/x11/SDL_x11keyboard.c +++ b/src/video/x11/SDL_x11keyboard.c @@ -22,8 +22,6 @@ #if SDL_VIDEO_DRIVER_X11 -#include "SDL_hints.h" -#include "SDL_misc.h" #include "SDL_x11video.h" #include "../../events/SDL_keyboard_c.h" diff --git a/src/video/x11/SDL_x11messagebox.c b/src/video/x11/SDL_x11messagebox.c index 9bc9702c0..351b9726b 100644 --- a/src/video/x11/SDL_x11messagebox.c +++ b/src/video/x11/SDL_x11messagebox.c @@ -23,7 +23,6 @@ #if SDL_VIDEO_DRIVER_X11 -#include "SDL.h" #include "SDL_x11video.h" #include "SDL_x11dyn.h" #include "SDL_x11messagebox.h" diff --git a/src/video/x11/SDL_x11modes.c b/src/video/x11/SDL_x11modes.c index da63afdcb..6322319af 100644 --- a/src/video/x11/SDL_x11modes.c +++ b/src/video/x11/SDL_x11modes.c @@ -22,9 +22,7 @@ #if SDL_VIDEO_DRIVER_X11 -#include "SDL_hints.h" #include "SDL_x11video.h" -#include "SDL_timer.h" #include "edid.h" /* #define X11MODES_DEBUG */ diff --git a/src/video/x11/SDL_x11opengl.c b/src/video/x11/SDL_x11opengl.c index 081e3dba7..0336798b9 100644 --- a/src/video/x11/SDL_x11opengl.c +++ b/src/video/x11/SDL_x11opengl.c @@ -24,12 +24,10 @@ #if SDL_VIDEO_DRIVER_X11 #include "SDL_x11video.h" -#include "SDL_hints.h" /* GLX implementation of SDL OpenGL support */ #if SDL_VIDEO_OPENGL_GLX -#include "SDL_loadso.h" #include "SDL_x11opengles.h" #if defined(__IRIX__) || defined(__NetBSD__) || defined(__OpenBSD__) diff --git a/src/video/x11/SDL_x11opengl.h b/src/video/x11/SDL_x11opengl.h index 71e03c0c9..79c39a93d 100644 --- a/src/video/x11/SDL_x11opengl.h +++ b/src/video/x11/SDL_x11opengl.h @@ -24,7 +24,7 @@ #define SDL_x11opengl_h_ #if SDL_VIDEO_OPENGL_GLX -#include "SDL_opengl.h" +#include #include struct SDL_GLDriverData diff --git a/src/video/x11/SDL_x11opengles.c b/src/video/x11/SDL_x11opengles.c index f3a02356e..9fc5bd185 100644 --- a/src/video/x11/SDL_x11opengles.c +++ b/src/video/x11/SDL_x11opengles.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_X11 && SDL_VIDEO_OPENGL_EGL -#include "SDL_hints.h" #include "SDL_x11video.h" #include "SDL_x11opengles.h" #include "SDL_x11opengl.h" diff --git a/src/video/x11/SDL_x11shape.h b/src/video/x11/SDL_x11shape.h index 4d54fb168..f64e72362 100644 --- a/src/video/x11/SDL_x11shape.h +++ b/src/video/x11/SDL_x11shape.h @@ -23,8 +23,6 @@ #ifndef SDL_x11shape_h_ #define SDL_x11shape_h_ -#include "SDL_video.h" -#include "SDL_shape.h" #include "../SDL_sysvideo.h" typedef struct { diff --git a/src/video/x11/SDL_x11video.c b/src/video/x11/SDL_x11video.c index 624db0059..aa4112a31 100644 --- a/src/video/x11/SDL_x11video.c +++ b/src/video/x11/SDL_x11video.c @@ -24,10 +24,6 @@ #include /* For getpid() and readlink() */ -#include "SDL_video.h" -#include "SDL_mouse.h" -#include "SDL_timer.h" -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" diff --git a/src/video/x11/SDL_x11video.h b/src/video/x11/SDL_x11video.h index 511ed365c..e6a03a378 100644 --- a/src/video/x11/SDL_x11video.h +++ b/src/video/x11/SDL_x11video.h @@ -23,7 +23,6 @@ #ifndef SDL_x11video_h_ #define SDL_x11video_h_ -#include "SDL_keycode.h" #include "../SDL_sysvideo.h" diff --git a/src/video/x11/SDL_x11vulkan.c b/src/video/x11/SDL_x11vulkan.c index b9eb34b88..19697f03d 100644 --- a/src/video/x11/SDL_x11vulkan.c +++ b/src/video/x11/SDL_x11vulkan.c @@ -24,7 +24,6 @@ #include "SDL_x11video.h" -#include "SDL_loadso.h" #include "SDL_x11vulkan.h" #include diff --git a/src/video/x11/SDL_x11window.c b/src/video/x11/SDL_x11window.c index 407135729..14acec2d1 100644 --- a/src/video/x11/SDL_x11window.c +++ b/src/video/x11/SDL_x11window.c @@ -22,7 +22,6 @@ #if SDL_VIDEO_DRIVER_X11 -#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_keyboard_c.h" @@ -39,10 +38,9 @@ #include "SDL_x11opengles.h" #endif -#include "SDL_timer.h" #define SDL_ENABLE_SYSWM_X11 -#include "SDL_syswm.h" +#include #define _NET_WM_STATE_REMOVE 0l #define _NET_WM_STATE_ADD 1l diff --git a/src/video/x11/edid-parse.c b/src/video/x11/edid-parse.c index 52c5d5f80..b795d538e 100644 --- a/src/video/x11/edid-parse.c +++ b/src/video/x11/edid-parse.c @@ -22,7 +22,6 @@ /* Author: Soren Sandmann */ #include "../../SDL_internal.h" -#include "SDL_stdinc.h" #include "edid.h" #include diff --git a/src/video/yuv2rgb/yuv_rgb.c b/src/video/yuv2rgb/yuv_rgb.c index c7415aa72..e19b5cf57 100644 --- a/src/video/yuv2rgb/yuv_rgb.c +++ b/src/video/yuv2rgb/yuv_rgb.c @@ -6,7 +6,6 @@ #include "yuv_rgb.h" -#include "SDL_cpuinfo.h" /*#include */ #define PRECISION 6 diff --git a/src/video/yuv2rgb/yuv_rgb.h b/src/video/yuv2rgb/yuv_rgb.h index 5668c0fc4..d57bbd106 100644 --- a/src/video/yuv2rgb/yuv_rgb.h +++ b/src/video/yuv2rgb/yuv_rgb.h @@ -16,7 +16,6 @@ // For all methods, width and height should be even, if not, the last row/column of the result image won't be affected. // For sse methods, if the width if not divisable by 32, the last (width%32) pixels of each line won't be affected. -#include "SDL_stdinc.h" /*#include */ typedef enum diff --git a/test/checkkeys.c b/test/checkkeys.c index 601ebbda8..b6d9a3e68 100644 --- a/test/checkkeys.c +++ b/test/checkkeys.c @@ -21,8 +21,8 @@ #include #endif -#include "SDL.h" -#include "SDL_test_font.h" +#include +#include static SDL_Window *window; static SDL_Renderer *renderer; diff --git a/test/checkkeysthreads.c b/test/checkkeysthreads.c index f8a5b922e..728a1c54d 100644 --- a/test/checkkeysthreads.c +++ b/test/checkkeysthreads.c @@ -22,7 +22,7 @@ #include #endif -#include "SDL.h" +#include int done; diff --git a/test/controllermap.c b/test/controllermap.c index cfb4a2f9f..9f5c7f34f 100644 --- a/test/controllermap.c +++ b/test/controllermap.c @@ -16,7 +16,7 @@ #include #include -#include "SDL.h" +#include #include "testutils.h" /* Define this for verbose output while mapping controllers */ diff --git a/test/loopwave.c b/test/loopwave.c index 181e04e16..e45022563 100644 --- a/test/loopwave.c +++ b/test/loopwave.c @@ -21,7 +21,7 @@ #include #endif -#include "SDL.h" +#include #include "testutils.h" static struct diff --git a/test/loopwavequeue.c b/test/loopwavequeue.c index b4e590396..6009a134f 100644 --- a/test/loopwavequeue.c +++ b/test/loopwavequeue.c @@ -18,7 +18,7 @@ #include #endif -#include "SDL.h" +#include #if HAVE_SIGNAL_H #include diff --git a/test/testatomic.c b/test/testatomic.c index db0ef30e5..bcda24e04 100644 --- a/test/testatomic.c +++ b/test/testatomic.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include /* Absolutely basic tests just to see if we get the expected value diff --git a/test/testaudiocapture.c b/test/testaudiocapture.c index e06aacf08..ae56d3535 100644 --- a/test/testaudiocapture.c +++ b/test/testaudiocapture.c @@ -12,7 +12,7 @@ #include -#include "SDL.h" +#include #ifdef __EMSCRIPTEN__ #include diff --git a/test/testaudiohotplug.c b/test/testaudiohotplug.c index ca5a68e70..2ab0a0787 100644 --- a/test/testaudiohotplug.c +++ b/test/testaudiohotplug.c @@ -22,7 +22,7 @@ #include #endif -#include "SDL.h" +#include #include "testutils.h" static SDL_AudioSpec spec; diff --git a/test/testaudioinfo.c b/test/testaudioinfo.c index acefa3c51..14ebb6623 100644 --- a/test/testaudioinfo.c +++ b/test/testaudioinfo.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include static void print_devices(int iscapture) diff --git a/test/testautomation.c b/test/testautomation.c index d8c1458d9..00f6bf675 100644 --- a/test/testautomation.c +++ b/test/testautomation.c @@ -12,8 +12,8 @@ #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include #include "testautomation_suites.h" diff --git a/test/testautomation_audio.c b/test/testautomation_audio.c index 4d921b105..535de074c 100644 --- a/test/testautomation_audio.c +++ b/test/testautomation_audio.c @@ -10,8 +10,8 @@ #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_clipboard.c b/test/testautomation_clipboard.c index 3555d4318..7ffa64e9f 100644 --- a/test/testautomation_clipboard.c +++ b/test/testautomation_clipboard.c @@ -1,8 +1,8 @@ /** * New/updated tests: aschiffler at ferzkopp dot net */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_events.c b/test/testautomation_events.c index 0bbd0dca8..d1413c052 100644 --- a/test/testautomation_events.c +++ b/test/testautomation_events.c @@ -1,8 +1,8 @@ /** * Events test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_guid.c b/test/testautomation_guid.c index b344a29fd..ec6f06fe2 100644 --- a/test/testautomation_guid.c +++ b/test/testautomation_guid.c @@ -2,8 +2,8 @@ * GUID test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_hints.c b/test/testautomation_hints.c index 2ebe13cf6..1b7e8de29 100644 --- a/test/testautomation_hints.c +++ b/test/testautomation_hints.c @@ -2,8 +2,8 @@ * Hints test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include const char* _HintsEnum[] = diff --git a/test/testautomation_joystick.c b/test/testautomation_joystick.c index 483f5b7e0..736f7de9c 100644 --- a/test/testautomation_joystick.c +++ b/test/testautomation_joystick.c @@ -2,8 +2,8 @@ * Joystick test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include #include "../src/joystick/usb_ids.h" /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_keyboard.c b/test/testautomation_keyboard.c index b080741b2..cfe770dc2 100644 --- a/test/testautomation_keyboard.c +++ b/test/testautomation_keyboard.c @@ -2,8 +2,8 @@ * Keyboard test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_main.c b/test/testautomation_main.c index 7e2cc1672..56da6d5a2 100644 --- a/test/testautomation_main.c +++ b/test/testautomation_main.c @@ -6,8 +6,8 @@ * Released under Public Domain. */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ! diff --git a/test/testautomation_math.c b/test/testautomation_math.c index 229735bee..3fa9adea4 100644 --- a/test/testautomation_math.c +++ b/test/testautomation_math.c @@ -5,8 +5,8 @@ #include #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Constants ================== */ diff --git a/test/testautomation_mouse.c b/test/testautomation_mouse.c index aa573df00..9e96c0239 100644 --- a/test/testautomation_mouse.c +++ b/test/testautomation_mouse.c @@ -3,8 +3,8 @@ */ #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_pixels.c b/test/testautomation_pixels.c index b465f052f..31905eabe 100644 --- a/test/testautomation_pixels.c +++ b/test/testautomation_pixels.c @@ -1,8 +1,8 @@ /** * Pixels test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* Test case functions */ diff --git a/test/testautomation_platform.c b/test/testautomation_platform.c index 0013cdbe9..be38b098f 100644 --- a/test/testautomation_platform.c +++ b/test/testautomation_platform.c @@ -2,8 +2,8 @@ * Original code: automated SDL platform test written by Edgar Simo "bobbens" * Extended and updated by aschiffler at ferzkopp dot net */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_rect.c b/test/testautomation_rect.c index e00600068..b5fae942e 100644 --- a/test/testautomation_rect.c +++ b/test/testautomation_rect.c @@ -2,8 +2,8 @@ * Original code: automated SDL rect test written by Edgar Simo "bobbens" * New/updated tests: aschiffler at ferzkopp dot net */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_render.c b/test/testautomation_render.c index 2e79827e9..1651b5757 100644 --- a/test/testautomation_render.c +++ b/test/testautomation_render.c @@ -2,8 +2,8 @@ * Original code: automated SDL platform test written by Edgar Simo "bobbens" * Extended and extensively updated by aschiffler at ferzkopp dot net */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_rwops.c b/test/testautomation_rwops.c index 5db0a8364..36537e74a 100644 --- a/test/testautomation_rwops.c +++ b/test/testautomation_rwops.c @@ -16,8 +16,8 @@ #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* ================= Test Case Implementation ================== */ diff --git a/test/testautomation_sdltest.c b/test/testautomation_sdltest.c index 02bcc8b84..33ae6d848 100644 --- a/test/testautomation_sdltest.c +++ b/test/testautomation_sdltest.c @@ -5,8 +5,8 @@ #include #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* Test case functions */ diff --git a/test/testautomation_stdlib.c b/test/testautomation_stdlib.c index 66000240f..e818a4fc1 100644 --- a/test/testautomation_stdlib.c +++ b/test/testautomation_stdlib.c @@ -1,8 +1,8 @@ /** * Standard C library routine test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* Test case functions */ diff --git a/test/testautomation_suites.h b/test/testautomation_suites.h index 7fcce1b1c..3adbcfa65 100644 --- a/test/testautomation_suites.h +++ b/test/testautomation_suites.h @@ -6,7 +6,7 @@ #ifndef _testsuites_h #define _testsuites_h -#include "SDL_test.h" +#include /* Test collections */ extern SDLTest_TestSuiteReference audioTestSuite; diff --git a/test/testautomation_surface.c b/test/testautomation_surface.c index dd7a03e8c..b74ee5361 100644 --- a/test/testautomation_surface.c +++ b/test/testautomation_surface.c @@ -13,8 +13,8 @@ #endif #include -#include "SDL.h" -#include "SDL_test.h" +#include +#include #ifdef __MACOS__ #include /* For unlink() */ diff --git a/test/testautomation_syswm.c b/test/testautomation_syswm.c index fd3e3de3c..876dc80ef 100644 --- a/test/testautomation_syswm.c +++ b/test/testautomation_syswm.c @@ -1,9 +1,9 @@ /** * SysWM test suite */ -#include "SDL.h" -#include "SDL_syswm.h" -#include "SDL_test.h" +#include +#include +#include /* Test case functions */ diff --git a/test/testautomation_timer.c b/test/testautomation_timer.c index 79ca525b1..9573d28ec 100644 --- a/test/testautomation_timer.c +++ b/test/testautomation_timer.c @@ -1,8 +1,8 @@ /** * Timer test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* Flag indicating if the param should be checked */ int _paramCheck = 0; diff --git a/test/testautomation_video.c b/test/testautomation_video.c index 8bc7dada3..75a196bcc 100644 --- a/test/testautomation_video.c +++ b/test/testautomation_video.c @@ -1,8 +1,8 @@ /** * Video test suite */ -#include "SDL.h" -#include "SDL_test.h" +#include +#include /* Private helpers */ diff --git a/test/testbounds.c b/test/testbounds.c index 1eda2b368..1d9e941c5 100644 --- a/test/testbounds.c +++ b/test/testbounds.c @@ -10,7 +10,7 @@ freely. */ -#include "SDL.h" +#include int main(int argc, char **argv) { diff --git a/test/testcustomcursor.c b/test/testcustomcursor.c index 68f1ce476..23b502ce3 100644 --- a/test/testcustomcursor.c +++ b/test/testcustomcursor.c @@ -15,7 +15,7 @@ #include #endif -#include "SDL_test_common.h" +#include /* Stolen from the mailing list */ /* Creates a new mouse cursor from an XPM */ diff --git a/test/testdisplayinfo.c b/test/testdisplayinfo.c index 793f7bc75..73b26695b 100644 --- a/test/testdisplayinfo.c +++ b/test/testdisplayinfo.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include static void print_mode(const char *prefix, const SDL_DisplayMode *mode) diff --git a/test/testdraw2.c b/test/testdraw2.c index 68a28041f..a89f1e5fe 100644 --- a/test/testdraw2.c +++ b/test/testdraw2.c @@ -19,7 +19,7 @@ #include #endif -#include "SDL_test_common.h" +#include #define NUM_OBJECTS 100 diff --git a/test/testdrawchessboard.c b/test/testdrawchessboard.c index 69ce78756..eefbe6368 100644 --- a/test/testdrawchessboard.c +++ b/test/testdrawchessboard.c @@ -18,7 +18,7 @@ #include #endif -#include "SDL.h" +#include SDL_Window *window; SDL_Renderer *renderer; diff --git a/test/testdropfile.c b/test/testdropfile.c index 3135bb936..3f2051e33 100644 --- a/test/testdropfile.c +++ b/test/testdropfile.c @@ -12,7 +12,7 @@ #include -#include "SDL_test_common.h" +#include static SDLTest_CommonState *state; diff --git a/test/testerror.c b/test/testerror.c index dd5dc6187..9c9875c20 100644 --- a/test/testerror.c +++ b/test/testerror.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include static int alive = 0; diff --git a/test/testevdev.c b/test/testevdev.c index 64a2490cd..f7dad14e6 100644 --- a/test/testevdev.c +++ b/test/testevdev.c @@ -23,8 +23,6 @@ static int run_test(void); #include -#include "SDL_stdinc.h" -#include "SDL_endian.h" #include "../src/core/linux/SDL_evdev_capabilities.h" #include "../src/core/linux/SDL_evdev_capabilities.c" diff --git a/test/testfile.c b/test/testfile.c index 4dc479f9e..38a04fe62 100644 --- a/test/testfile.c +++ b/test/testfile.c @@ -22,7 +22,7 @@ #include #endif -#include "SDL.h" +#include /* WARNING ! those 2 files will be destroyed by this test program */ diff --git a/test/testfilesystem.c b/test/testfilesystem.c index 4dd4477c2..9ea9dd10e 100644 --- a/test/testfilesystem.c +++ b/test/testfilesystem.c @@ -11,7 +11,7 @@ */ /* Simple test of filesystem functions. */ -#include "SDL.h" +#include int main(int argc, char *argv[]) diff --git a/test/testgamecontroller.c b/test/testgamecontroller.c index 35fac7c49..5b8ee8b90 100644 --- a/test/testgamecontroller.c +++ b/test/testgamecontroller.c @@ -12,7 +12,7 @@ /* Simple program to test the SDL game controller routines */ -#include "SDL.h" +#include #include "testutils.h" #ifdef __EMSCRIPTEN__ diff --git a/test/testgeometry.c b/test/testgeometry.c index 2b8c5d3de..d7465f59c 100644 --- a/test/testgeometry.c +++ b/test/testgeometry.c @@ -19,7 +19,7 @@ #include #endif -#include "SDL_test_common.h" +#include #include "testutils.h" static SDLTest_CommonState *state; diff --git a/test/testgesture.c b/test/testgesture.c index 7ab44bbf1..6feecad4b 100644 --- a/test/testgesture.c +++ b/test/testgesture.c @@ -18,14 +18,14 @@ #include /* for exit() */ -#include "SDL.h" +#include #ifdef __EMSCRIPTEN__ #include #endif -#include "SDL_test.h" -#include "SDL_test_common.h" +#include +#include #define WIDTH 640 #define HEIGHT 480 diff --git a/test/testgl2.c b/test/testgl2.c index aa704c767..7d0719b9d 100644 --- a/test/testgl2.c +++ b/test/testgl2.c @@ -9,13 +9,13 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL_test_common.h" +#include #ifdef HAVE_OPENGL #include -#include "SDL_opengl.h" +#include typedef struct GL_Context { diff --git a/test/testgles.c b/test/testgles.c index d67fdf3f5..d40b54d4f 100644 --- a/test/testgles.c +++ b/test/testgles.c @@ -11,7 +11,7 @@ */ #include -#include "SDL_test_common.h" +#include #if defined(__IOS__) || defined(__ANDROID__) #define HAVE_OPENGLES @@ -19,7 +19,7 @@ #ifdef HAVE_OPENGLES -#include "SDL_opengles.h" +#include static SDLTest_CommonState *state; static SDL_GLContext *context = NULL; diff --git a/test/testgles2.c b/test/testgles2.c index f6e582c85..0d5caa74e 100644 --- a/test/testgles2.c +++ b/test/testgles2.c @@ -15,7 +15,7 @@ #include #endif -#include "SDL_test_common.h" +#include #if defined(__IOS__) || defined(__ANDROID__) || defined(__EMSCRIPTEN__) || defined(__WINDOWS__) || defined(__LINUX__) #define HAVE_OPENGLES2 @@ -23,7 +23,7 @@ #ifdef HAVE_OPENGLES2 -#include "SDL_opengles2.h" +#include typedef struct GLES2_Context { diff --git a/test/testgles2_sdf.c b/test/testgles2_sdf.c index 248a708b9..42154bf5b 100644 --- a/test/testgles2_sdf.c +++ b/test/testgles2_sdf.c @@ -15,7 +15,7 @@ #include #endif -#include "SDL_test_common.h" +#include #if defined(__IOS__) || defined(__ANDROID__) || defined(__EMSCRIPTEN__) || defined(__WINDOWS__) || defined(__LINUX__) #define HAVE_OPENGLES2 @@ -23,7 +23,7 @@ #ifdef HAVE_OPENGLES2 -#include "SDL_opengles2.h" +#include typedef struct GLES2_Context { diff --git a/test/testhaptic.c b/test/testhaptic.c index 50863e4ef..6c585990e 100644 --- a/test/testhaptic.c +++ b/test/testhaptic.c @@ -16,7 +16,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */ #include -#include "SDL.h" +#include static SDL_Haptic *haptic; diff --git a/test/testhittesting.c b/test/testhittesting.c index 039f7bf26..b4b8af3cc 100644 --- a/test/testhittesting.c +++ b/test/testhittesting.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include /* !!! FIXME: rewrite this to be wired in to test framework. */ diff --git a/test/testhotplug.c b/test/testhotplug.c index ed6d1771e..b154f7572 100644 --- a/test/testhotplug.c +++ b/test/testhotplug.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include int main(int argc, char *argv[]) diff --git a/test/testiconv.c b/test/testiconv.c index 0763d944b..bbf7214a8 100644 --- a/test/testiconv.c +++ b/test/testiconv.c @@ -17,7 +17,7 @@ #include -#include "SDL.h" +#include #include "testutils.h" static size_t diff --git a/test/testime.c b/test/testime.c index 98d37aba5..66d887659 100644 --- a/test/testime.c +++ b/test/testime.c @@ -13,12 +13,12 @@ If you build without SDL_ttf, you can use the GNU Unifont hex file instead. Download at http://unifoundry.com/unifont.html */ -#include "SDL.h" +#include #ifdef HAVE_SDL_TTF #include "SDL_ttf.h" #endif -#include "SDL_test_common.h" +#include #include "testutils.h" #define DEFAULT_PTSIZE 30 diff --git a/test/testintersections.c b/test/testintersections.c index 272597d6b..d1b3074a5 100644 --- a/test/testintersections.c +++ b/test/testintersections.c @@ -19,7 +19,7 @@ #include #endif -#include "SDL_test_common.h" +#include #define SWAP(typ,a,b) do{typ t=a;a=b;b=t;}while(0) #define NUM_OBJECTS 100 diff --git a/test/testjoystick.c b/test/testjoystick.c index ae6b331dd..f3a5f9841 100644 --- a/test/testjoystick.c +++ b/test/testjoystick.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include #ifdef __EMSCRIPTEN__ #include diff --git a/test/testkeys.c b/test/testkeys.c index b53b3e73e..736fe9c29 100644 --- a/test/testkeys.c +++ b/test/testkeys.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include int main(int argc, char *argv[]) diff --git a/test/testloadso.c b/test/testloadso.c index 2969c50a0..b94574159 100644 --- a/test/testloadso.c +++ b/test/testloadso.c @@ -15,7 +15,7 @@ #include -#include "SDL.h" +#include typedef int (*fntype) (const char *); diff --git a/test/testlocale.c b/test/testlocale.c index 208dfef66..e40b0c669 100644 --- a/test/testlocale.c +++ b/test/testlocale.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include /* !!! FIXME: move this to the test framework */ diff --git a/test/testlock.c b/test/testlock.c index e62423f62..3207a64c0 100644 --- a/test/testlock.c +++ b/test/testlock.c @@ -17,7 +17,7 @@ #include #include /* for atexit() */ -#include "SDL.h" +#include static SDL_mutex *mutex = NULL; static SDL_threadID mainthread; diff --git a/test/testmessage.c b/test/testmessage.c index b01272eec..7822ea18f 100644 --- a/test/testmessage.c +++ b/test/testmessage.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */ static void diff --git a/test/testmouse.c b/test/testmouse.c index 7b2ffca6a..08fbff4ca 100644 --- a/test/testmouse.c +++ b/test/testmouse.c @@ -10,7 +10,7 @@ freely. */ -#include "SDL.h" +#include #ifdef __EMSCRIPTEN__ #include diff --git a/test/testmultiaudio.c b/test/testmultiaudio.c index 1eedab3a2..06f6b0a72 100644 --- a/test/testmultiaudio.c +++ b/test/testmultiaudio.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include #include /* for fflush() and stdout */ diff --git a/test/testnative.h b/test/testnative.h index 2a6e087a3..e27de770e 100644 --- a/test/testnative.h +++ b/test/testnative.h @@ -13,7 +13,7 @@ /* Definitions for platform dependent windowing functions to test SDL integration with native windows */ -#include "SDL.h" +#include typedef struct { diff --git a/test/testoffscreen.c b/test/testoffscreen.c index 10e68fe31..93192106d 100644 --- a/test/testoffscreen.c +++ b/test/testoffscreen.c @@ -19,9 +19,8 @@ #include #endif -#include "SDL.h" -#include "SDL_stdinc.h" -#include "SDL_opengl.h" +#include +#include static SDL_Renderer *renderer = NULL; static SDL_Window *window = NULL; diff --git a/test/testoverlay2.c b/test/testoverlay2.c index ab0fd82db..c655248b0 100644 --- a/test/testoverlay2.c +++ b/test/testoverlay2.c @@ -22,7 +22,7 @@ #include #endif -#include "SDL.h" +#include #include "testyuv_cvt.h" #include "testutils.h" diff --git a/test/testplatform.c b/test/testplatform.c index 2e1d8cde5..1ef2b85fe 100644 --- a/test/testplatform.c +++ b/test/testplatform.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include /* * Watcom C flags these as Warning 201: "Unreachable code" if you just diff --git a/test/testpower.c b/test/testpower.c index 3e71fbd33..354c068d9 100644 --- a/test/testpower.c +++ b/test/testpower.c @@ -11,7 +11,7 @@ */ /* Simple test of power subsystem. */ -#include "SDL.h" +#include static void report_power(void) diff --git a/test/testqsort.c b/test/testqsort.c index 33616822c..fafbf8679 100644 --- a/test/testqsort.c +++ b/test/testqsort.c @@ -10,7 +10,7 @@ freely. */ -#include "SDL_test.h" +#include static int SDLCALL num_compare(const void *_a, const void *_b) diff --git a/test/testrelative.c b/test/testrelative.c index eb0fbbea5..13fb04f29 100644 --- a/test/testrelative.c +++ b/test/testrelative.c @@ -15,7 +15,7 @@ #include #include -#include "SDL_test_common.h" +#include #ifdef __EMSCRIPTEN__ #include diff --git a/test/testrendercopyex.c b/test/testrendercopyex.c index a3bbac1e8..750accbae 100644 --- a/test/testrendercopyex.c +++ b/test/testrendercopyex.c @@ -17,7 +17,7 @@ #include #endif -#include "SDL_test_common.h" +#include #include "testutils.h" static SDLTest_CommonState *state; diff --git a/test/testrendertarget.c b/test/testrendertarget.c index e560f70c7..53f3eee1d 100644 --- a/test/testrendertarget.c +++ b/test/testrendertarget.c @@ -17,7 +17,7 @@ #include #endif -#include "SDL_test_common.h" +#include #include "testutils.h" static SDLTest_CommonState *state; diff --git a/test/testresample.c b/test/testresample.c index ab061bb66..6ee8eedd7 100644 --- a/test/testresample.c +++ b/test/testresample.c @@ -10,7 +10,7 @@ freely. */ -#include "SDL.h" +#include int main(int argc, char **argv) diff --git a/test/testrumble.c b/test/testrumble.c index 4d1a9c78f..c20a34dba 100644 --- a/test/testrumble.c +++ b/test/testrumble.c @@ -25,7 +25,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND /* * includes */ -#include "SDL.h" +#include static SDL_Haptic *haptic; diff --git a/test/testscale.c b/test/testscale.c index be4e7b26b..39a633f2c 100644 --- a/test/testscale.c +++ b/test/testscale.c @@ -17,7 +17,7 @@ #include #endif -#include "SDL_test_common.h" +#include #include "testutils.h" #define WINDOW_WIDTH 640 diff --git a/test/testsem.c b/test/testsem.c index 97eead9b4..1e444ced5 100644 --- a/test/testsem.c +++ b/test/testsem.c @@ -14,7 +14,7 @@ #include -#include "SDL.h" +#include #define NUM_THREADS 10 /* This value should be smaller than the maximum count of the */ diff --git a/test/testsensor.c b/test/testsensor.c index fe92c95a0..3f150b156 100644 --- a/test/testsensor.c +++ b/test/testsensor.c @@ -12,7 +12,7 @@ /* Simple test of the SDL sensor code */ -#include "SDL.h" +#include static const char *GetSensorTypeString(SDL_SensorType type) { diff --git a/test/testshader.c b/test/testshader.c index feabb6340..15df2f975 100644 --- a/test/testshader.c +++ b/test/testshader.c @@ -11,13 +11,13 @@ */ /* This is a simple example of using GLSL shaders with SDL */ -#include "SDL.h" +#include #include #ifdef HAVE_OPENGL -#include "SDL_opengl.h" +#include static SDL_bool shaders_supported; diff --git a/test/testshape.c b/test/testshape.c index b65d38c56..4ac6ff260 100644 --- a/test/testshape.c +++ b/test/testshape.c @@ -11,8 +11,7 @@ */ #include -#include "SDL.h" -#include "SDL_shape.h" +#include #define SHAPED_WINDOW_X 150 #define SHAPED_WINDOW_Y 150 diff --git a/test/testsprite2.c b/test/testsprite2.c index 91ea3fcae..c8012f9bb 100644 --- a/test/testsprite2.c +++ b/test/testsprite2.c @@ -18,8 +18,8 @@ #include #endif -#include "SDL_test.h" -#include "SDL_test_common.h" +#include +#include #include "testutils.h" #define NUM_SPRITES 100 diff --git a/test/testspriteminimal.c b/test/testspriteminimal.c index 5fa968c37..1f114290e 100644 --- a/test/testspriteminimal.c +++ b/test/testspriteminimal.c @@ -18,7 +18,7 @@ #include #endif -#include "SDL.h" +#include #include "testutils.h" #define WINDOW_WIDTH 640 diff --git a/test/teststreaming.c b/test/teststreaming.c index 67c7fe04f..ddec10b90 100644 --- a/test/teststreaming.c +++ b/test/teststreaming.c @@ -21,7 +21,7 @@ #include #endif -#include "SDL.h" +#include #include "testutils.h" #define MOOSEPIC_W 64 diff --git a/test/testsurround.c b/test/testsurround.c index 515f58630..227e6ab14 100644 --- a/test/testsurround.c +++ b/test/testsurround.c @@ -11,7 +11,7 @@ */ /* Program to test surround sound audio channels */ -#include "SDL.h" +#include static int total_channels; static int active_channel; diff --git a/test/testthread.c b/test/testthread.c index dbcd16a94..287122d78 100644 --- a/test/testthread.c +++ b/test/testthread.c @@ -15,7 +15,7 @@ #include #include -#include "SDL.h" +#include static SDL_TLSID tls; static int alive = 0; diff --git a/test/testtimer.c b/test/testtimer.c index 285aa7a8a..72392bed6 100644 --- a/test/testtimer.c +++ b/test/testtimer.c @@ -13,7 +13,7 @@ /* Test program to check the resolution of the SDL timer on the current platform */ -#include "SDL.h" +#include #define DEFAULT_RESOLUTION 1 diff --git a/test/testurl.c b/test/testurl.c index 390976e1e..c51e63bfc 100644 --- a/test/testurl.c +++ b/test/testurl.c @@ -9,7 +9,7 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" +#include static void tryOpenURL(const char *url) { diff --git a/test/testutils.h b/test/testutils.h index cf24ca043..7505242dc 100644 --- a/test/testutils.h +++ b/test/testutils.h @@ -7,7 +7,7 @@ SPDX-License-Identifier: Zlib #ifndef TESTUTILS_H #define TESTUTILS_H -#include "SDL.h" +#include SDL_Texture *LoadTexture(SDL_Renderer *renderer, const char *file, SDL_bool transparent, int *width_out, int *height_out); diff --git a/test/testver.c b/test/testver.c index cc4ab080d..f1881ba1c 100644 --- a/test/testver.c +++ b/test/testver.c @@ -13,8 +13,7 @@ /* Test program to compare the compile-time version of SDL with the linked version of SDL */ -#include "SDL.h" -#include "SDL_revision.h" +#include int main(int argc, char *argv[]) diff --git a/test/testviewport.c b/test/testviewport.c index c0bb4755a..b27509cd2 100644 --- a/test/testviewport.c +++ b/test/testviewport.c @@ -17,8 +17,8 @@ #include #endif -#include "SDL_test.h" -#include "SDL_test_common.h" +#include +#include #include "testutils.h" static SDLTest_CommonState *state; diff --git a/test/testvulkan.c b/test/testvulkan.c index e781182b0..8074ae840 100644 --- a/test/testvulkan.c +++ b/test/testvulkan.c @@ -11,7 +11,7 @@ */ #include -#include "SDL_test_common.h" +#include #if defined(__ANDROID__) && defined(__ARM_EABI__) && !defined(__ARM_ARCH_7A__) @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) /* SDL includes a copy for building on systems without the Vulkan SDK */ #include "../src/video/khronos/vulkan/vulkan.h" #endif -#include "SDL_vulkan.h" +#include #ifndef UINT64_MAX /* VS2008 */ #define UINT64_MAX 18446744073709551615 diff --git a/test/testwm2.c b/test/testwm2.c index 166c1987e..693a3d30e 100644 --- a/test/testwm2.c +++ b/test/testwm2.c @@ -16,8 +16,8 @@ #include #endif -#include "SDL_test_common.h" -#include "SDL_test_font.h" +#include +#include static SDLTest_CommonState *state; int done; diff --git a/test/testyuv.c b/test/testyuv.c index 6025e4aa7..b82c0b5d7 100644 --- a/test/testyuv.c +++ b/test/testyuv.c @@ -9,8 +9,8 @@ including commercial applications, and to alter it and redistribute it freely. */ -#include "SDL.h" -#include "SDL_test_font.h" +#include +#include #include "testyuv_cvt.h" diff --git a/test/testyuv_cvt.c b/test/testyuv_cvt.c index ed354d8ac..2e9853043 100644 --- a/test/testyuv_cvt.c +++ b/test/testyuv_cvt.c @@ -10,7 +10,7 @@ freely. */ -#include "SDL.h" +#include #include "testyuv_cvt.h" diff --git a/test/torturethread.c b/test/torturethread.c index 1047f0876..19574012a 100644 --- a/test/torturethread.c +++ b/test/torturethread.c @@ -15,7 +15,7 @@ #include #include -#include "SDL.h" +#include #define NUMTHREADS 10