├── .php-cs-fixer.php ├── LICENSE.md ├── README.md ├── bin └── generate-metadata.php ├── composer.json ├── phpstan.neon ├── resources ├── .phpstorm.meta.php ├── generated │ └── .phpstorm.meta.php └── headers │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_guid.h │ ├── SDL_haptic.h │ ├── SDL_hidapi.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_locale.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_misc.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_sensor.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h └── src ├── Assert └── State.php ├── Audio ├── AllowChangeFlag.php ├── Format.php └── Status.php ├── Boolean.php ├── CacheAwareHeader.php ├── ErrorCode.php ├── Event ├── Action.php └── Type.php ├── GameController ├── Axis.php ├── BindType.php ├── Button.php └── Type.php ├── Header.php ├── Hint ├── Name.php └── Priority.php ├── InitFlags.php ├── Joystick ├── Hat.php ├── PowerLevel.php └── Type.php ├── Keyboard ├── EventState.php ├── Key.php ├── KeyMode.php └── ScanCode.php ├── Log ├── Category.php └── Priority.php ├── MessageBox ├── ButtonFlags.php ├── ColorType.php └── Flags.php ├── Mouse ├── Button.php ├── SystemCursor.php └── WheelDirection.php ├── OpenGL ├── GLAttr.php ├── GLContextFlag.php ├── GLContextReleaseFlag.php ├── GLContextResetNotification.php ├── GLProfile.php └── GLSwapInterval.php ├── Platform.php ├── Power └── State.php ├── RWops └── SeekWhence.php ├── SDL.php ├── Sensor └── Type.php ├── SysWMType.php ├── ThreadPriority.php ├── Touch └── DeviceType.php ├── Version.php ├── Video ├── ArrayOrder.php ├── BitMapOrder.php ├── BlendFactor.php ├── BlendMode.php ├── BlendOperation.php ├── DisplayEvent.php ├── DisplayOrientation.php ├── FlashOperation.php ├── HitTestResult.php ├── PackedLayout.php ├── PackedOrder.php ├── PixelFormat.php ├── PixelType.php ├── RendererFlags.php ├── RendererFlip.php ├── ScaleMode.php ├── TextureAccess.php ├── TextureModulate.php ├── WindowEvent.php ├── WindowFlags.php ├── WindowPosition.php ├── WindowShapeMode.php └── YuvConversionMode.php └── WinRT ├── DeviceFamily.php └── Path.php /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate-metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/bin/generate-metadata.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/phpstan.neon -------------------------------------------------------------------------------- /resources/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/.phpstorm.meta.php -------------------------------------------------------------------------------- /resources/generated/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/generated/.phpstorm.meta.php -------------------------------------------------------------------------------- /resources/headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL.h -------------------------------------------------------------------------------- /resources/headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_assert.h -------------------------------------------------------------------------------- /resources/headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_atomic.h -------------------------------------------------------------------------------- /resources/headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_audio.h -------------------------------------------------------------------------------- /resources/headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_bits.h -------------------------------------------------------------------------------- /resources/headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_blendmode.h -------------------------------------------------------------------------------- /resources/headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_clipboard.h -------------------------------------------------------------------------------- /resources/headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_config.h -------------------------------------------------------------------------------- /resources/headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /resources/headers/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_egl.h -------------------------------------------------------------------------------- /resources/headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_endian.h -------------------------------------------------------------------------------- /resources/headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_error.h -------------------------------------------------------------------------------- /resources/headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_events.h -------------------------------------------------------------------------------- /resources/headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_filesystem.h -------------------------------------------------------------------------------- /resources/headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /resources/headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_gesture.h -------------------------------------------------------------------------------- /resources/headers/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_guid.h -------------------------------------------------------------------------------- /resources/headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_haptic.h -------------------------------------------------------------------------------- /resources/headers/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_hidapi.h -------------------------------------------------------------------------------- /resources/headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_hints.h -------------------------------------------------------------------------------- /resources/headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_joystick.h -------------------------------------------------------------------------------- /resources/headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_keyboard.h -------------------------------------------------------------------------------- /resources/headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_keycode.h -------------------------------------------------------------------------------- /resources/headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_loadso.h -------------------------------------------------------------------------------- /resources/headers/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_locale.h -------------------------------------------------------------------------------- /resources/headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_log.h -------------------------------------------------------------------------------- /resources/headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_main.h -------------------------------------------------------------------------------- /resources/headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_messagebox.h -------------------------------------------------------------------------------- /resources/headers/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_metal.h -------------------------------------------------------------------------------- /resources/headers/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_misc.h -------------------------------------------------------------------------------- /resources/headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_mouse.h -------------------------------------------------------------------------------- /resources/headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_mutex.h -------------------------------------------------------------------------------- /resources/headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_name.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengl.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles2.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /resources/headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /resources/headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_pixels.h -------------------------------------------------------------------------------- /resources/headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_platform.h -------------------------------------------------------------------------------- /resources/headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_power.h -------------------------------------------------------------------------------- /resources/headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_quit.h -------------------------------------------------------------------------------- /resources/headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_rect.h -------------------------------------------------------------------------------- /resources/headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_render.h -------------------------------------------------------------------------------- /resources/headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_revision.h -------------------------------------------------------------------------------- /resources/headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_rwops.h -------------------------------------------------------------------------------- /resources/headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_scancode.h -------------------------------------------------------------------------------- /resources/headers/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_sensor.h -------------------------------------------------------------------------------- /resources/headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_shape.h -------------------------------------------------------------------------------- /resources/headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_stdinc.h -------------------------------------------------------------------------------- /resources/headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_surface.h -------------------------------------------------------------------------------- /resources/headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_system.h -------------------------------------------------------------------------------- /resources/headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_syswm.h -------------------------------------------------------------------------------- /resources/headers/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_assert.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_common.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_compare.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_crc32.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_font.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_harness.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_images.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_log.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_md5.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_memory.h -------------------------------------------------------------------------------- /resources/headers/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_test_random.h -------------------------------------------------------------------------------- /resources/headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_thread.h -------------------------------------------------------------------------------- /resources/headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_timer.h -------------------------------------------------------------------------------- /resources/headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_touch.h -------------------------------------------------------------------------------- /resources/headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_types.h -------------------------------------------------------------------------------- /resources/headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_version.h -------------------------------------------------------------------------------- /resources/headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_video.h -------------------------------------------------------------------------------- /resources/headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/SDL_vulkan.h -------------------------------------------------------------------------------- /resources/headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/begin_code.h -------------------------------------------------------------------------------- /resources/headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/resources/headers/close_code.h -------------------------------------------------------------------------------- /src/Assert/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Assert/State.php -------------------------------------------------------------------------------- /src/Audio/AllowChangeFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Audio/AllowChangeFlag.php -------------------------------------------------------------------------------- /src/Audio/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Audio/Format.php -------------------------------------------------------------------------------- /src/Audio/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Audio/Status.php -------------------------------------------------------------------------------- /src/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Boolean.php -------------------------------------------------------------------------------- /src/CacheAwareHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/CacheAwareHeader.php -------------------------------------------------------------------------------- /src/ErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/ErrorCode.php -------------------------------------------------------------------------------- /src/Event/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Event/Action.php -------------------------------------------------------------------------------- /src/Event/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Event/Type.php -------------------------------------------------------------------------------- /src/GameController/Axis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/GameController/Axis.php -------------------------------------------------------------------------------- /src/GameController/BindType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/GameController/BindType.php -------------------------------------------------------------------------------- /src/GameController/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/GameController/Button.php -------------------------------------------------------------------------------- /src/GameController/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/GameController/Type.php -------------------------------------------------------------------------------- /src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Header.php -------------------------------------------------------------------------------- /src/Hint/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Hint/Name.php -------------------------------------------------------------------------------- /src/Hint/Priority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Hint/Priority.php -------------------------------------------------------------------------------- /src/InitFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/InitFlags.php -------------------------------------------------------------------------------- /src/Joystick/Hat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Joystick/Hat.php -------------------------------------------------------------------------------- /src/Joystick/PowerLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Joystick/PowerLevel.php -------------------------------------------------------------------------------- /src/Joystick/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Joystick/Type.php -------------------------------------------------------------------------------- /src/Keyboard/EventState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Keyboard/EventState.php -------------------------------------------------------------------------------- /src/Keyboard/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Keyboard/Key.php -------------------------------------------------------------------------------- /src/Keyboard/KeyMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Keyboard/KeyMode.php -------------------------------------------------------------------------------- /src/Keyboard/ScanCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Keyboard/ScanCode.php -------------------------------------------------------------------------------- /src/Log/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Log/Category.php -------------------------------------------------------------------------------- /src/Log/Priority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Log/Priority.php -------------------------------------------------------------------------------- /src/MessageBox/ButtonFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/MessageBox/ButtonFlags.php -------------------------------------------------------------------------------- /src/MessageBox/ColorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/MessageBox/ColorType.php -------------------------------------------------------------------------------- /src/MessageBox/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/MessageBox/Flags.php -------------------------------------------------------------------------------- /src/Mouse/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Mouse/Button.php -------------------------------------------------------------------------------- /src/Mouse/SystemCursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Mouse/SystemCursor.php -------------------------------------------------------------------------------- /src/Mouse/WheelDirection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Mouse/WheelDirection.php -------------------------------------------------------------------------------- /src/OpenGL/GLAttr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLAttr.php -------------------------------------------------------------------------------- /src/OpenGL/GLContextFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLContextFlag.php -------------------------------------------------------------------------------- /src/OpenGL/GLContextReleaseFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLContextReleaseFlag.php -------------------------------------------------------------------------------- /src/OpenGL/GLContextResetNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLContextResetNotification.php -------------------------------------------------------------------------------- /src/OpenGL/GLProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLProfile.php -------------------------------------------------------------------------------- /src/OpenGL/GLSwapInterval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/OpenGL/GLSwapInterval.php -------------------------------------------------------------------------------- /src/Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Platform.php -------------------------------------------------------------------------------- /src/Power/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Power/State.php -------------------------------------------------------------------------------- /src/RWops/SeekWhence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/RWops/SeekWhence.php -------------------------------------------------------------------------------- /src/SDL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/SDL.php -------------------------------------------------------------------------------- /src/Sensor/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Sensor/Type.php -------------------------------------------------------------------------------- /src/SysWMType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/SysWMType.php -------------------------------------------------------------------------------- /src/ThreadPriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/ThreadPriority.php -------------------------------------------------------------------------------- /src/Touch/DeviceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Touch/DeviceType.php -------------------------------------------------------------------------------- /src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Version.php -------------------------------------------------------------------------------- /src/Video/ArrayOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/ArrayOrder.php -------------------------------------------------------------------------------- /src/Video/BitMapOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/BitMapOrder.php -------------------------------------------------------------------------------- /src/Video/BlendFactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/BlendFactor.php -------------------------------------------------------------------------------- /src/Video/BlendMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/BlendMode.php -------------------------------------------------------------------------------- /src/Video/BlendOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/BlendOperation.php -------------------------------------------------------------------------------- /src/Video/DisplayEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/DisplayEvent.php -------------------------------------------------------------------------------- /src/Video/DisplayOrientation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/DisplayOrientation.php -------------------------------------------------------------------------------- /src/Video/FlashOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/FlashOperation.php -------------------------------------------------------------------------------- /src/Video/HitTestResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/HitTestResult.php -------------------------------------------------------------------------------- /src/Video/PackedLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/PackedLayout.php -------------------------------------------------------------------------------- /src/Video/PackedOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/PackedOrder.php -------------------------------------------------------------------------------- /src/Video/PixelFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/PixelFormat.php -------------------------------------------------------------------------------- /src/Video/PixelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/PixelType.php -------------------------------------------------------------------------------- /src/Video/RendererFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/RendererFlags.php -------------------------------------------------------------------------------- /src/Video/RendererFlip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/RendererFlip.php -------------------------------------------------------------------------------- /src/Video/ScaleMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/ScaleMode.php -------------------------------------------------------------------------------- /src/Video/TextureAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/TextureAccess.php -------------------------------------------------------------------------------- /src/Video/TextureModulate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/TextureModulate.php -------------------------------------------------------------------------------- /src/Video/WindowEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/WindowEvent.php -------------------------------------------------------------------------------- /src/Video/WindowFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/WindowFlags.php -------------------------------------------------------------------------------- /src/Video/WindowPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/WindowPosition.php -------------------------------------------------------------------------------- /src/Video/WindowShapeMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/WindowShapeMode.php -------------------------------------------------------------------------------- /src/Video/YuvConversionMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/Video/YuvConversionMode.php -------------------------------------------------------------------------------- /src/WinRT/DeviceFamily.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/WinRT/DeviceFamily.php -------------------------------------------------------------------------------- /src/WinRT/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerafimArts/ffi-sdl/HEAD/src/WinRT/Path.php --------------------------------------------------------------------------------