├── .clang-format ├── .gitignore ├── LICENSES.3rdpaty.txt ├── README-SDL.txt ├── README.md ├── SDL2.dll ├── TODO.txt ├── bsdf.h ├── bvh_accel.cc ├── bvh_accel.h ├── camera.cc ├── camera.h ├── common.h ├── compat ├── changelog.txt ├── inttypes.h └── stdint.h ├── config.json ├── cornellbox_suzanne.eson ├── cornellbox_suzanne.material.json ├── cornellbox_suzanne.mtl ├── cornellbox_suzanne.obj ├── deps ├── SDL2-2.0.3 │ ├── Android.mk │ ├── BUGS.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── Makefile.in │ ├── Makefile.minimal │ ├── Makefile.pandora │ ├── Makefile.psp │ ├── Makefile.wiz │ ├── README-SDL.txt │ ├── README-android.txt │ ├── README-cmake.txt │ ├── README-directfb.txt │ ├── README-dynapi.txt │ ├── README-gesture.txt │ ├── README-hg.txt │ ├── README-ios.txt │ ├── README-linux.txt │ ├── README-macosx.txt │ ├── README-pandora.txt │ ├── README-platforms.txt │ ├── README-porting.txt │ ├── README-psp.txt │ ├── README-raspberrypi.txt │ ├── README-touch.txt │ ├── README-wince.txt │ ├── README-windows.txt │ ├── README.txt │ ├── SDL2.spec │ ├── SDL2.spec.in │ ├── TODO.txt │ ├── VisualC.html │ ├── VisualC │ │ ├── SDL │ │ │ ├── SDL_VS2008.vcproj │ │ │ ├── SDL_VS2010.vcxproj │ │ │ ├── SDL_VS2012.vcxproj │ │ │ └── SDL_VS2013.vcxproj │ │ ├── SDL_VS2008.sln │ │ ├── SDL_VS2010.sln │ │ ├── SDL_VS2010EE.sln │ │ ├── SDL_VS2012.sln │ │ ├── SDL_VS2012EE.sln │ │ ├── SDL_VS2013.sln │ │ ├── SDLmain │ │ │ ├── SDLmain_VS2008.vcproj │ │ │ ├── SDLmain_VS2010.vcxproj │ │ │ ├── SDLmain_VS2012.vcxproj │ │ │ └── SDLmain_VS2013.vcxproj │ │ ├── SDLtest │ │ │ ├── SDLtest_VS2008.vcproj │ │ │ ├── SDLtest_VS2010.vcxproj │ │ │ ├── SDLtest_VS2012.vcxproj │ │ │ └── SDLtest_VS2013.vcxproj │ │ ├── clean.sh │ │ ├── tests │ │ │ ├── checkkeys │ │ │ │ ├── checkkeys_VS2008.vcproj │ │ │ │ ├── checkkeys_VS2010.vcxproj │ │ │ │ ├── checkkeys_VS2012.vcxproj │ │ │ │ └── checkkeys_VS2013.vcxproj │ │ │ ├── loopwave │ │ │ │ ├── loopwave_VS2008.vcproj │ │ │ │ ├── loopwave_VS2010.vcxproj │ │ │ │ ├── loopwave_VS2012.vcxproj │ │ │ │ └── loopwave_VS2013.vcxproj │ │ │ ├── testatomic │ │ │ │ ├── testatomic_VS2008.vcproj │ │ │ │ ├── testatomic_VS2010.vcxproj │ │ │ │ ├── testatomic_VS2012.vcxproj │ │ │ │ └── testatomic_VS2013.vcxproj │ │ │ ├── testautomation │ │ │ │ ├── testautomation_VS2008.vcproj │ │ │ │ ├── testautomation_vs2010.vcxproj │ │ │ │ ├── testautomation_vs2012.vcxproj │ │ │ │ └── testautomation_vs2013.vcxproj │ │ │ ├── testdraw2 │ │ │ │ ├── testdraw2_VS2008.vcproj │ │ │ │ ├── testdraw2_VS2010.vcxproj │ │ │ │ ├── testdraw2_VS2012.vcxproj │ │ │ │ └── testdraw2_VS2013.vcxproj │ │ │ ├── testfile │ │ │ │ ├── testfile_VS2008.vcproj │ │ │ │ ├── testfile_VS2010.vcxproj │ │ │ │ ├── testfile_VS2012.vcxproj │ │ │ │ └── testfile_VS2013.vcxproj │ │ │ ├── testgamecontroller │ │ │ │ ├── testgamecontroller_VS2010.vcxproj │ │ │ │ ├── testgamecontroller_VS2012.vcxproj │ │ │ │ └── testgamecontroller_VS2013.vcxproj │ │ │ ├── testgesture │ │ │ │ ├── testgesture_VS2008.vcproj │ │ │ │ ├── testgesture_VS2010.vcxproj │ │ │ │ ├── testgesture_VS2012.vcxproj │ │ │ │ └── testgesture_VS2013.vcxproj │ │ │ ├── testgl2 │ │ │ │ ├── testgl2_VS2008.vcproj │ │ │ │ ├── testgl2_VS2010.vcxproj │ │ │ │ ├── testgl2_VS2012.vcxproj │ │ │ │ └── testgl2_VS2013.vcxproj │ │ │ ├── testgles2 │ │ │ │ ├── testgles2_VS2008.vcproj │ │ │ │ ├── testgles2_VS2010.vcxproj │ │ │ │ ├── testgles2_VS2012.vcxproj │ │ │ │ └── testgles2_VS2013.vcxproj │ │ │ ├── testjoystick │ │ │ │ ├── testjoystick_VS2008.vcproj │ │ │ │ ├── testjoystick_VS2010.vcxproj │ │ │ │ ├── testjoystick_VS2012.vcxproj │ │ │ │ └── testjoystick_VS2013.vcxproj │ │ │ ├── testoverlay2 │ │ │ │ ├── testoverlay2_VS2008.vcproj │ │ │ │ ├── testoverlay2_VS2010.vcxproj │ │ │ │ ├── testoverlay2_VS2012.vcxproj │ │ │ │ └── testoverlay2_VS2013.vcxproj │ │ │ ├── testplatform │ │ │ │ ├── testplatform_VS2008.vcproj │ │ │ │ ├── testplatform_VS2010.vcxproj │ │ │ │ ├── testplatform_VS2012.vcxproj │ │ │ │ └── testplatform_VS2013.vcxproj │ │ │ ├── testpower │ │ │ │ ├── testpower_VS2008.vcproj │ │ │ │ ├── testpower_VS2010.vcxproj │ │ │ │ ├── testpower_VS2012.vcxproj │ │ │ │ └── testpower_VS2013.vcxproj │ │ │ ├── testrendertarget │ │ │ │ ├── testrendertarget_VS2008.vcproj │ │ │ │ ├── testrendertarget_VS2010.vcxproj │ │ │ │ ├── testrendertarget_VS2012.vcxproj │ │ │ │ └── testrendertarget_VS2013.vcxproj │ │ │ ├── testscale │ │ │ │ ├── testscale_VS2008.vcproj │ │ │ │ ├── testscale_VS2010.vcxproj │ │ │ │ ├── testscale_VS2012.vcxproj │ │ │ │ └── testscale_VS2013.vcxproj │ │ │ ├── testshape │ │ │ │ ├── testshape_VS2008.vcproj │ │ │ │ ├── testshape_VS2010.vcxproj │ │ │ │ ├── testshape_VS2012.vcxproj │ │ │ │ └── testshape_VS2013.vcxproj │ │ │ └── testsprite2 │ │ │ │ ├── testsprite2_VS2008.vcproj │ │ │ │ ├── testsprite2_VS2010.vcxproj │ │ │ │ ├── testsprite2_VS2012.vcxproj │ │ │ │ └── testsprite2_VS2013.vcxproj │ │ └── visualtest │ │ │ ├── unittest │ │ │ └── testquit │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ └── visualtest_VS2012.vcxproj │ ├── WhatsNew.txt │ ├── Xcode-iOS │ │ ├── Demos │ │ │ ├── Default.png │ │ │ ├── Demos.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Icon.png │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── bitmapfont │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ └── license.txt │ │ │ │ ├── drums │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ ├── icon.bmp │ │ │ │ ├── ship.bmp │ │ │ │ ├── space.bmp │ │ │ │ └── stroke.bmp │ │ │ └── src │ │ │ │ ├── accelerometer.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── fireworks.c │ │ │ │ ├── happy.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── mixer.c │ │ │ │ ├── rectangles.c │ │ │ │ └── touch.c │ │ ├── SDL │ │ │ └── SDL.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── SDLtest │ │ │ └── SDL2test.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Template │ │ │ └── SDL iOS Application │ │ │ │ ├── Default.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ │ └── main.c │ │ └── Test │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ └── project.pbxproj │ ├── Xcode │ │ ├── SDL │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── pkg-support │ │ │ │ ├── SDL.info │ │ │ │ ├── codesign-frameworks.sh │ │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ └── SDL_DS_Store │ │ │ │ └── sdl_logo.pdf │ │ ├── SDLTest │ │ │ ├── SDLTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TestDropFile-Info.plist │ │ └── XcodeDocSet │ │ │ └── Doxyfile │ ├── acinclude │ │ ├── ac_check_define.m4 │ │ ├── alsa.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_gcc_archflag.m4 │ │ ├── ax_gcc_x86_cpuid.m4.htm │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── android-project │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build.properties │ │ ├── build.xml │ │ ├── default.properties │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── src │ │ │ │ ├── Android.mk │ │ │ │ └── Android_static.mk │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ └── SDLActivity.java │ ├── autogen.sh │ ├── build-scripts │ │ ├── androidbuild.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── g++-fat.sh │ │ ├── gcc-fat.sh │ │ ├── install-sh │ │ ├── iosbuild.sh │ │ ├── ltmain.sh │ │ ├── mkinstalldirs │ │ ├── raspberrypi-buildbot.sh │ │ ├── showrev.sh │ │ ├── strip_fPIC.sh │ │ └── updaterev.sh │ ├── cmake │ │ ├── macros.cmake │ │ └── sdlchecks.cmake │ ├── configure │ ├── configure.in │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── libsdl2-dev.install │ │ ├── libsdl2-dev.manpages │ │ ├── libsdl2.install │ │ ├── rules │ │ ├── sdl2-config.1 │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.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_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.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_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_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ ├── close_code.h │ │ └── doxyfile │ ├── sdl2-config.in │ ├── sdl2.m4 │ ├── sdl2.pc.in │ ├── src │ │ ├── SDL.c │ │ ├── SDL_assert.c │ │ ├── SDL_assert_c.h │ │ ├── SDL_error.c │ │ ├── SDL_error_c.h │ │ ├── SDL_hints.c │ │ ├── SDL_internal.h │ │ ├── SDL_log.c │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiomem.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ └── SDL_bsdaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ └── SDL_coreaudio.h │ │ │ ├── directsound │ │ │ │ ├── SDL_directsound.c │ │ │ │ ├── SDL_directsound.h │ │ │ │ └── directx.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── haiku │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ └── SDL_haikuaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── psp │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ └── SDL_pspaudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sdlgenaudiocvt.pl │ │ │ ├── sndio │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ └── SDL_sndioaudio.h │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ │ └── xaudio2 │ │ │ │ ├── SDL_xaudio2.c │ │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ │ └── SDL_xaudio2_winrthelpers.h │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.c │ │ │ │ └── SDL_android.h │ │ │ ├── linux │ │ │ │ ├── SDL_evdev.c │ │ │ │ ├── SDL_evdev.h │ │ │ │ ├── SDL_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── windows │ │ │ │ ├── SDL_windows.c │ │ │ │ └── SDL_windows.h │ │ │ └── winrt │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ └── SDL_winrtapp_xaml.h │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ ├── dynapi │ │ │ ├── SDL_dynapi.c │ │ │ ├── SDL_dynapi.h │ │ │ ├── SDL_dynapi_overrides.h │ │ │ ├── SDL_dynapi_procs.h │ │ │ └── gendynapi.pl │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_dropevents.c │ │ │ ├── SDL_dropevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_sysevents.h │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ ├── filesystem │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── unix │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── windows │ │ │ │ └── SDL_sysfilesystem.c │ │ │ └── winrt │ │ │ │ └── SDL_sysfilesystem.cpp │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── darwin │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ ├── joystick │ │ │ ├── SDL_gamecontroller.c │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── haiku │ │ │ │ └── SDL_haikujoystick.cc │ │ │ ├── iphoneos │ │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ │ └── SDL_sysjoystick.m │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── windows │ │ │ │ ├── SDL_dxjoystick.c │ │ │ │ ├── SDL_dxjoystick_c.h │ │ │ │ └── SDL_mmjoystick.c │ │ │ └── winrt │ │ │ │ └── SDL_xinputjoystick.c │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_log.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ └── s_sin.c │ │ ├── loadso │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── psp │ │ │ │ └── SDL_psp_main.c │ │ │ ├── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ └── winrt │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── android │ │ │ │ └── SDL_syspower.c │ │ │ ├── haiku │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── psp │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ ├── windows │ │ │ │ └── SDL_syspower.c │ │ │ └── winrt │ │ │ │ └── SDL_syspower.cpp │ │ ├── render │ │ │ ├── SDL_d3dmath.c │ │ │ ├── SDL_d3dmath.h │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_mmx.c │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ └── SDL_render_d3d.c │ │ │ ├── direct3d11 │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ └── SDL_render_winrt.h │ │ │ ├── mmx.h │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ └── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ ├── SDL_rotate.c │ │ │ │ └── SDL_rotate.h │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ └── SDL_string.c │ │ ├── test │ │ │ ├── SDL_test_assert.c │ │ │ ├── SDL_test_common.c │ │ │ ├── SDL_test_compare.c │ │ │ ├── SDL_test_crc32.c │ │ │ ├── SDL_test_font.c │ │ │ ├── SDL_test_fuzzer.c │ │ │ ├── SDL_test_harness.c │ │ │ ├── SDL_test_imageBlit.c │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ ├── SDL_test_imageFace.c │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ ├── SDL_test_log.c │ │ │ ├── SDL_test_md5.c │ │ │ └── SDL_test_random.c │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── stdcpp │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── haiku │ │ │ │ └── SDL_systimer.c │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_egl.c │ │ │ ├── SDL_egl_c.h │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── android │ │ │ ├── SDL_androidclipboard.c │ │ │ ├── SDL_androidclipboard.h │ │ │ ├── SDL_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamessagebox.h │ │ │ ├── SDL_cocoamessagebox.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.m │ │ │ ├── SDL_cocoamousetap.h │ │ │ ├── SDL_cocoamousetap.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.m │ │ │ ├── SDL_cocoashape.h │ │ │ ├── SDL_cocoashape.m │ │ │ ├── SDL_cocoavideo.h │ │ │ ├── SDL_cocoavideo.m │ │ │ ├── SDL_cocoawindow.h │ │ │ └── SDL_cocoawindow.m │ │ │ ├── directfb │ │ │ ├── SDL_DirectFB_WM.c │ │ │ ├── SDL_DirectFB_WM.h │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ ├── SDL_DirectFB_events.c │ │ │ ├── SDL_DirectFB_events.h │ │ │ ├── SDL_DirectFB_modes.c │ │ │ ├── SDL_DirectFB_modes.h │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ ├── SDL_DirectFB_render.c │ │ │ ├── SDL_DirectFB_render.h │ │ │ ├── SDL_DirectFB_shape.c │ │ │ ├── SDL_DirectFB_shape.h │ │ │ ├── SDL_DirectFB_video.c │ │ │ ├── SDL_DirectFB_video.h │ │ │ ├── SDL_DirectFB_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── haiku │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_bclipboard.cc │ │ │ ├── SDL_bclipboard.h │ │ │ ├── SDL_bevents.cc │ │ │ ├── SDL_bevents.h │ │ │ ├── SDL_bframebuffer.cc │ │ │ ├── SDL_bframebuffer.h │ │ │ ├── SDL_bkeyboard.cc │ │ │ ├── SDL_bkeyboard.h │ │ │ ├── SDL_bmodes.cc │ │ │ ├── SDL_bmodes.h │ │ │ ├── SDL_bopengl.cc │ │ │ ├── SDL_bopengl.h │ │ │ ├── SDL_bvideo.cc │ │ │ ├── SDL_bvideo.h │ │ │ ├── SDL_bwindow.cc │ │ │ └── SDL_bwindow.h │ │ │ ├── mir │ │ │ ├── SDL_mirdyn.c │ │ │ ├── SDL_mirdyn.h │ │ │ ├── SDL_mirevents.c │ │ │ ├── SDL_mirevents.h │ │ │ ├── SDL_mirframebuffer.c │ │ │ ├── SDL_mirframebuffer.h │ │ │ ├── SDL_mirmouse.c │ │ │ ├── SDL_mirmouse.h │ │ │ ├── SDL_miropengl.c │ │ │ ├── SDL_miropengl.h │ │ │ ├── SDL_mirsym.h │ │ │ ├── SDL_mirvideo.c │ │ │ ├── SDL_mirvideo.h │ │ │ ├── SDL_mirwindow.c │ │ │ └── SDL_mirwindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── psp │ │ │ ├── SDL_pspevents.c │ │ │ ├── SDL_pspevents_c.h │ │ │ ├── SDL_pspgl.c │ │ │ ├── SDL_pspgl_c.h │ │ │ ├── SDL_pspmouse.c │ │ │ ├── SDL_pspmouse_c.h │ │ │ ├── SDL_pspvideo.c │ │ │ └── SDL_pspvideo.h │ │ │ ├── raspberry │ │ │ ├── SDL_rpievents.c │ │ │ ├── SDL_rpievents_c.h │ │ │ ├── SDL_rpimouse.c │ │ │ ├── SDL_rpimouse.h │ │ │ ├── SDL_rpiopengles.c │ │ │ ├── SDL_rpiopengles.h │ │ │ ├── SDL_rpivideo.c │ │ │ └── SDL_rpivideo.h │ │ │ ├── sdlgenblit.pl │ │ │ ├── uikit │ │ │ ├── SDL_uikitappdelegate.h │ │ │ ├── SDL_uikitappdelegate.m │ │ │ ├── SDL_uikitevents.h │ │ │ ├── SDL_uikitevents.m │ │ │ ├── SDL_uikitmessagebox.h │ │ │ ├── SDL_uikitmessagebox.m │ │ │ ├── SDL_uikitmodes.h │ │ │ ├── SDL_uikitmodes.m │ │ │ ├── SDL_uikitopengles.h │ │ │ ├── SDL_uikitopengles.m │ │ │ ├── SDL_uikitopenglview.h │ │ │ ├── SDL_uikitopenglview.m │ │ │ ├── SDL_uikitvideo.h │ │ │ ├── SDL_uikitvideo.m │ │ │ ├── SDL_uikitview.h │ │ │ ├── SDL_uikitview.m │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ ├── SDL_uikitwindow.h │ │ │ ├── SDL_uikitwindow.m │ │ │ └── keyinfotable.h │ │ │ ├── wayland │ │ │ ├── SDL_waylanddyn.c │ │ │ ├── SDL_waylanddyn.h │ │ │ ├── SDL_waylandevents.c │ │ │ ├── SDL_waylandevents_c.h │ │ │ ├── SDL_waylandmouse.c │ │ │ ├── SDL_waylandmouse.h │ │ │ ├── SDL_waylandopengles.c │ │ │ ├── SDL_waylandopengles.h │ │ │ ├── SDL_waylandsym.h │ │ │ ├── SDL_waylandtouch.c │ │ │ ├── SDL_waylandtouch.h │ │ │ ├── SDL_waylandvideo.c │ │ │ ├── SDL_waylandvideo.h │ │ │ ├── SDL_waylandwindow.c │ │ │ └── SDL_waylandwindow.h │ │ │ ├── windows │ │ │ ├── SDL_msctf.h │ │ │ ├── SDL_vkeys.h │ │ │ ├── SDL_windowsclipboard.c │ │ │ ├── SDL_windowsclipboard.h │ │ │ ├── SDL_windowsevents.c │ │ │ ├── SDL_windowsevents.h │ │ │ ├── SDL_windowsframebuffer.c │ │ │ ├── SDL_windowsframebuffer.h │ │ │ ├── SDL_windowskeyboard.c │ │ │ ├── SDL_windowskeyboard.h │ │ │ ├── SDL_windowsmessagebox.c │ │ │ ├── SDL_windowsmessagebox.h │ │ │ ├── SDL_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsopengles.c │ │ │ ├── SDL_windowsopengles.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.h │ │ │ ├── winrt │ │ │ ├── SDL_winrtevents.cpp │ │ │ ├── SDL_winrtevents_c.h │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ ├── SDL_winrtmouse.cpp │ │ │ ├── SDL_winrtmouse_c.h │ │ │ ├── SDL_winrtopengles.cpp │ │ │ ├── SDL_winrtopengles.h │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ ├── SDL_winrtvideo.cpp │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ └── x11 │ │ │ ├── SDL_x11clipboard.c │ │ │ ├── SDL_x11clipboard.h │ │ │ ├── SDL_x11dyn.c │ │ │ ├── SDL_x11dyn.h │ │ │ ├── SDL_x11events.c │ │ │ ├── SDL_x11events.h │ │ │ ├── SDL_x11framebuffer.c │ │ │ ├── SDL_x11framebuffer.h │ │ │ ├── SDL_x11keyboard.c │ │ │ ├── SDL_x11keyboard.h │ │ │ ├── SDL_x11messagebox.c │ │ │ ├── SDL_x11messagebox.h │ │ │ ├── SDL_x11modes.c │ │ │ ├── SDL_x11modes.h │ │ │ ├── SDL_x11mouse.c │ │ │ ├── SDL_x11mouse.h │ │ │ ├── SDL_x11opengl.c │ │ │ ├── SDL_x11opengl.h │ │ │ ├── SDL_x11opengles.c │ │ │ ├── SDL_x11opengles.h │ │ │ ├── SDL_x11shape.c │ │ │ ├── SDL_x11shape.h │ │ │ ├── SDL_x11sym.h │ │ │ ├── SDL_x11touch.c │ │ │ ├── SDL_x11touch.h │ │ │ ├── SDL_x11video.c │ │ │ ├── SDL_x11video.h │ │ │ ├── SDL_x11window.c │ │ │ ├── SDL_x11window.h │ │ │ ├── SDL_x11xinput2.c │ │ │ ├── SDL_x11xinput2.h │ │ │ ├── edid-parse.c │ │ │ ├── edid.h │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ └── test │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── configure │ │ ├── configure.in │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── gcc-fat.sh │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── moose.dat │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ ├── p01_shape24.bmp │ │ ├── p01_shape32alpha.bmp │ │ ├── p01_shape8.bmp │ │ ├── p02_shape24.bmp │ │ ├── p02_shape32alpha.bmp │ │ ├── p02_shape8.bmp │ │ ├── p03_shape24.bmp │ │ ├── p03_shape8.bmp │ │ ├── p04_shape1.bmp │ │ ├── p04_shape24.bmp │ │ ├── p04_shape32alpha.bmp │ │ ├── p04_shape8.bmp │ │ ├── p05_shape8.bmp │ │ ├── p06_shape1alpha.bmp │ │ ├── p06_shape24.bmp │ │ ├── p06_shape32alpha.bmp │ │ ├── p06_shape8.bmp │ │ ├── p07_shape24.bmp │ │ ├── p07_shape32alpha.bmp │ │ ├── p07_shape8.bmp │ │ ├── p08_shape24.bmp │ │ ├── p08_shape32alpha.bmp │ │ ├── p08_shape8.bmp │ │ ├── p09_shape24.bmp │ │ ├── p09_shape32alpha.bmp │ │ ├── p09_shape8.bmp │ │ ├── p10_shape1.bmp │ │ ├── p10_shape24.bmp │ │ ├── p10_shape32alpha.bmp │ │ ├── p10_shape8.bmp │ │ ├── p11_shape24.bmp │ │ ├── p11_shape32alpha.bmp │ │ ├── p11_shape8.bmp │ │ ├── p12_shape24.bmp │ │ ├── p12_shape8.bmp │ │ ├── p13_shape24.bmp │ │ ├── p13_shape32alpha.bmp │ │ ├── p13_shape8.bmp │ │ ├── p14_shape24.bmp │ │ ├── p14_shape8.bmp │ │ ├── p15_shape24.bmp │ │ ├── p15_shape32alpha.bmp │ │ ├── p15_shape8.bmp │ │ ├── p16_shape1.bmp │ │ ├── p16_shape24.bmp │ │ ├── p16_shape8.bmp │ │ ├── trollface_24.bmp │ │ └── trollface_32alpha.bmp │ │ ├── testatomic.c │ │ ├── testaudioinfo.c │ │ ├── testautomation.c │ │ ├── testautomation_audio.c │ │ ├── testautomation_clipboard.c │ │ ├── testautomation_events.c │ │ ├── testautomation_keyboard.c │ │ ├── testautomation_main.c │ │ ├── testautomation_mouse.c │ │ ├── testautomation_pixels.c │ │ ├── testautomation_platform.c │ │ ├── testautomation_rect.c │ │ ├── testautomation_render.c │ │ ├── testautomation_rwops.c │ │ ├── testautomation_sdltest.c │ │ ├── testautomation_stdlib.c │ │ ├── testautomation_suites.h │ │ ├── testautomation_surface.c │ │ ├── testautomation_syswm.c │ │ ├── testautomation_timer.c │ │ ├── testautomation_video.c │ │ ├── testdraw2.c │ │ ├── testdrawchessboard.c │ │ ├── testdropfile.c │ │ ├── testerror.c │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testhaptic.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testwm2.c │ │ ├── torturethread.c │ │ └── utf8.txt ├── TinyThread++-1.1 │ ├── README.txt │ ├── doc │ │ ├── Doxyfile │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── classes.html │ │ │ ├── classtthread_1_1chrono_1_1duration-members.html │ │ │ ├── classtthread_1_1chrono_1_1duration.html │ │ │ ├── classtthread_1_1condition__variable-members.html │ │ │ ├── classtthread_1_1condition__variable.html │ │ │ ├── classtthread_1_1fast__mutex-members.html │ │ │ ├── classtthread_1_1fast__mutex.html │ │ │ ├── classtthread_1_1lock__guard-members.html │ │ │ ├── classtthread_1_1lock__guard.html │ │ │ ├── classtthread_1_1mutex-members.html │ │ │ ├── classtthread_1_1mutex.html │ │ │ ├── classtthread_1_1ratio-members.html │ │ │ ├── classtthread_1_1ratio.html │ │ │ ├── classtthread_1_1recursive__mutex-members.html │ │ │ ├── classtthread_1_1recursive__mutex.html │ │ │ ├── classtthread_1_1thread-members.html │ │ │ ├── classtthread_1_1thread.html │ │ │ ├── classtthread_1_1thread_1_1id-members.html │ │ │ ├── classtthread_1_1thread_1_1id.html │ │ │ ├── closed.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── fast__mutex_8h.html │ │ │ ├── fast__mutex_8h_source.html │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_func.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── index.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespaces.html │ │ │ ├── namespacetthread.html │ │ │ ├── namespacetthread_1_1chrono.html │ │ │ ├── namespacetthread_1_1this__thread.html │ │ │ ├── nav_f.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── tinythread_8h.html │ │ │ └── tinythread_8h_source.html │ ├── source │ │ ├── fast_mutex.h │ │ ├── tinythread.cpp │ │ └── tinythread.h │ └── test │ │ ├── Makefile.msvc │ │ ├── fractal.cpp │ │ ├── hello.cpp │ │ └── test.cpp ├── gtest-1.7.0 │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ └── pump.py │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── parson │ ├── README.md │ ├── parson.c │ ├── parson.h │ ├── tests.c │ └── tests │ │ ├── test_1_1.txt │ │ ├── test_1_2.txt │ │ ├── test_1_3.txt │ │ └── test_2.txt └── ptex-master │ ├── README │ └── src │ ├── CMakeLists.txt │ ├── doc │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── Doxyfile_API_only │ ├── FilterFootprint.html │ ├── License.txt │ ├── README │ ├── apiintro.txt │ ├── main.txt │ └── uvellipse.png │ ├── ptex │ ├── CMakeLists.txt │ ├── Makefile.deps │ ├── PtexCache.cpp │ ├── PtexCache.h │ ├── PtexDict.h │ ├── PtexFilters.cpp │ ├── PtexHalf.cpp │ ├── PtexHalf.h │ ├── PtexHashMap.h │ ├── PtexIO.h │ ├── PtexInt.h │ ├── PtexMutex.h │ ├── PtexPlatform.h │ ├── PtexReader.cpp │ ├── PtexReader.h │ ├── PtexSeparableFilter.cpp │ ├── PtexSeparableFilter.h │ ├── PtexSeparableKernel.cpp │ ├── PtexSeparableKernel.h │ ├── PtexTriangleFilter.cpp │ ├── PtexTriangleFilter.h │ ├── PtexTriangleKernel.cpp │ ├── PtexTriangleKernel.h │ ├── PtexUtils.cpp │ ├── PtexUtils.h │ ├── PtexWriter.cpp │ ├── PtexWriter.h │ └── Ptexture.h │ ├── tests │ ├── CMakeLists.txt │ ├── compare_test.cmake │ ├── ftest.cpp │ ├── ftestok.dat │ ├── halftest.cpp │ ├── rtest.cpp │ ├── rtestok.dat │ ├── run_tests.py │ └── wtest.cpp │ └── utils │ ├── CMakeLists.txt │ └── ptxinfo.cpp ├── duktape.c ├── duktape.h ├── extlibs └── windows │ └── SDL2-2.0.3 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── include │ ├── 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_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.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_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_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.h │ └── lib │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib ├── fabfile.py ├── filepath_util.cc ├── filepath_util.h ├── format_source.sh ├── happyhttp.cpp ├── happyhttp.h ├── hashgrid.h ├── hashgrid.hxx ├── importers ├── eson.cc ├── eson.h ├── magicavoxel_loader.cc ├── magicavoxel_loader.h ├── mesh_loader.cc ├── mesh_loader.h ├── mmd_math.h ├── mmd_scene.cc ├── mmd_scene.h ├── pmd_model.h ├── pmd_reader.cc ├── pmd_reader.h ├── tiny_obj_loader.cc ├── tiny_obj_loader.h ├── vmd_animation.cc ├── vmd_animation.h ├── vmd_reader.cc └── vmd_reader.h ├── intersection.h ├── jpge.cc ├── jpge.h ├── light.cc ├── light.h ├── log.cc ├── log.h ├── main.cc ├── main_console.cc ├── main_console.h ├── main_sdl.cc ├── main_sdl.h ├── mallie.jpg ├── material.h ├── math.hxx ├── matrix.cc ├── matrix.h ├── mesh.h ├── miniexr.cpp ├── mmm_io.cc ├── mmm_io.h ├── pbrt.h ├── premake4-test.lua ├── premake4.lua ├── prim-plane.cc ├── prim-plane.h ├── render.cc ├── render.h ├── scene.cc ├── scene.h ├── script_engine.cc ├── script_engine.h ├── scripts ├── build_deplibs_linux.sh ├── build_deplibs_macosx.sh ├── setup_linux.sh ├── setup_linux_aarch64.sh └── setup_macosx.sh ├── spectrum.cc ├── spectrum.h ├── switch_gcc48.sh ├── tasksys.cc ├── teapot.mtl ├── teapot.obj ├── test └── cctest │ ├── test-atomic.cc │ └── test-main.cc ├── test_atomic.cc ├── texture.cc ├── texture.h ├── timerutil.h ├── tinyexr.cc ├── tinyexr.h ├── tools ├── linux │ └── premake4 ├── macosx │ ├── ispc │ └── premake4 ├── solaris │ └── premake4 └── windows │ ├── premake4.exe │ └── premake5.exe ├── trackball.cc ├── trackball.h ├── vcbuild.bat ├── vcm.cc ├── vector3.h └── version.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSES.3rdpaty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/LICENSES.3rdpaty.txt -------------------------------------------------------------------------------- /README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/README-SDL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/README.md -------------------------------------------------------------------------------- /SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/SDL2.dll -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/TODO.txt -------------------------------------------------------------------------------- /bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/bsdf.h -------------------------------------------------------------------------------- /bvh_accel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/bvh_accel.cc -------------------------------------------------------------------------------- /bvh_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/bvh_accel.h -------------------------------------------------------------------------------- /camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/camera.cc -------------------------------------------------------------------------------- /camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/camera.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/common.h -------------------------------------------------------------------------------- /compat/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/compat/changelog.txt -------------------------------------------------------------------------------- /compat/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/compat/inttypes.h -------------------------------------------------------------------------------- /compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/compat/stdint.h -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/config.json -------------------------------------------------------------------------------- /cornellbox_suzanne.eson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/cornellbox_suzanne.eson -------------------------------------------------------------------------------- /cornellbox_suzanne.material.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/cornellbox_suzanne.material.json -------------------------------------------------------------------------------- /cornellbox_suzanne.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/cornellbox_suzanne.mtl -------------------------------------------------------------------------------- /cornellbox_suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/cornellbox_suzanne.obj -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Android.mk -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/BUGS.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/CMakeLists.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/COPYING.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/CREDITS.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/INSTALL.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Makefile.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Makefile.minimal -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Makefile.pandora -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Makefile.psp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Makefile.wiz -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-SDL.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-android.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-cmake.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-directfb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-directfb.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-dynapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-dynapi.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-gesture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-gesture.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-hg.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-ios.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-linux.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-macosx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-macosx.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-pandora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-pandora.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-platforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-platforms.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-porting.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-psp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-psp.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-raspberrypi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-raspberrypi.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-touch.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-wince.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-wince.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README-windows.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/README.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/SDL2.spec -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/SDL2.spec.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/TODO.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC.html -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2008.vcproj -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2010.vcxproj -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL/SDL_VS2012.vcxproj -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2010.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2010EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2010EE.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2012.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2012EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2012EE.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/SDL_VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/SDL_VS2013.sln -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/VisualC/clean.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/WhatsNew.txt -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/Default.png -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/Info.plist -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/data/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/data/icon.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/data/ship.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/data/ship.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/src/common.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/src/common.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/src/happy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/src/happy.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/src/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/src/mixer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Demos/src/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Demos/src/touch.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Test/Info.plist -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/Xcode/XcodeDocSet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/Xcode/XcodeDocSet/Doxyfile -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/ac_check_define.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/ac_check_define.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/alsa.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/ax_gcc_archflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/ax_gcc_archflag.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/esd.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/libtool.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/android-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/android-project/build.xml -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/autogen.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/androidbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/androidbuild.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/config.guess -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/config.sub -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/install-sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/iosbuild.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/mkinstalldirs -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/showrev.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/strip_fPIC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/strip_fPIC.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/build-scripts/updaterev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/build-scripts/updaterev.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/cmake/macros.cmake -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/configure -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/configure.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/changelog -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/control -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/copyright -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/docs -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/libsdl2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/libsdl2-dev.install -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/libsdl2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/libsdl2.install -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/rules -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/debian/sdl2-config.1 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_assert.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_atomic.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_audio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_bits.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_blendmode.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_clipboard.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config.h.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_android.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_psp.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_windows.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_copying.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_egl.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_endian.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_error.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_events.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_filesystem.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_gesture.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_haptic.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_hints.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_joystick.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_keyboard.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_keycode.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_loadso.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_log.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_main.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_messagebox.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_mouse.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_mutex.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_name.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_opengl.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_opengles.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_opengles2.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_pixels.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_platform.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_power.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_quit.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_rect.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_render.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_revision.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_rwops.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_scancode.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_shape.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_stdinc.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_surface.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_system.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_syswm.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_assert.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_common.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_compare.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_font.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_harness.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_images.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_log.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_md5.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_test_random.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_thread.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_timer.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_touch.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_types.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_version.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/SDL_video.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/begin_code.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/close_code.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/include/doxyfile -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/sdl2-config.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/sdl2.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/sdl2.pc.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_assert.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_assert_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_error.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_error_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_hints.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_internal.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/SDL_log.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/bsd/SDL_bsdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/bsd/SDL_bsdaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/bsd/SDL_bsdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/bsd/SDL_bsdaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/dsp/SDL_dspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/dsp/SDL_dspaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/dsp/SDL_dspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/dsp/SDL_dspaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/esd/SDL_esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/esd/SDL_esdaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/esd/SDL_esdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/esd/SDL_esdaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/nas/SDL_nasaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/nas/SDL_nasaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/nas/SDL_nasaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/nas/SDL_nasaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/paudio/SDL_paudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/paudio/SDL_paudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/paudio/SDL_paudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/paudio/SDL_paudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/psp/SDL_pspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/psp/SDL_pspaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/psp/SDL_pspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/psp/SDL_pspaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/qsa/SDL_qsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/qsa/SDL_qsa_audio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/qsa/SDL_qsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/qsa/SDL_qsa_audio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/sdlgenaudiocvt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/sdlgenaudiocvt.pl -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/sun/SDL_sunaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/sun/SDL_sunaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/sun/SDL_sunaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/sun/SDL_sunaudio.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/winmm/SDL_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/winmm/SDL_winmm.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/audio/winmm/SDL_winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/audio/winmm/SDL_winmm.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/core/linux/SDL_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/core/linux/SDL_evdev.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/core/linux/SDL_evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/core/linux/SDL_evdev.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/core/linux/SDL_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/core/linux/SDL_udev.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/core/linux/SDL_udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/core/linux/SDL_udev.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/dynapi/SDL_dynapi_procs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/dynapi/SDL_dynapi_procs.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_dropevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_dropevents.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_dropevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_dropevents_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_events.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_quit.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_touch.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/blank_cursor.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/default_cursor.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/e_atan2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/e_log.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/e_pow.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/k_cos.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/k_sin.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/math_libm.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/math_private.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_atan.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_copysign.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_cos.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_fabs.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_floor.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/libm/s_sin.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/main/haiku/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/main/haiku/SDL_BApp.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/main/haiku/SDL_BeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/main/haiku/SDL_BeApp.cc -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/main/haiku/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/main/haiku/SDL_BeApp.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/main/psp/SDL_psp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/main/psp/SDL_psp_main.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/main/windows/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/main/windows/version.rc -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/power/SDL_power.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/power/psp/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/power/psp/SDL_syspower.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_d3dmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_d3dmath.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_d3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_d3dmath.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_render.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_sysrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_sysrender.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/render/mmx.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_assert.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_common.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_compare.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_crc32.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_font.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_fuzzer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_harness.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_imageBlit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_imageBlit.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_imageFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_imageFace.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/test/SDL_test_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/test/SDL_test_random.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/psp/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/psp/SDL_syscond.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/psp/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/psp/SDL_sysmutex.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/thread/psp/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/thread/psp/SDL_syssem.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/timer/psp/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/timer/psp/SDL_systimer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_egl.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_rect.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_shape.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_surface.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/SDL_video.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_BWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_BWin.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bevents.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bmodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bmodes.cc -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bmodes.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bopengl.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bvideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bvideo.cc -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bvideo.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/haiku/SDL_bwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/haiku/SDL_bwindow.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirdyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirdyn.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirdyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirdyn.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirevents.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirevents.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirmouse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirmouse.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_miropengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_miropengl.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_miropengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_miropengl.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirsym.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirvideo.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirvideo.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirwindow.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/mir/SDL_mirwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/mir/SDL_mirwindow.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspevents.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspgl.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspgl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspgl_c.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspmouse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspvideo.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/psp/SDL_pspvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/psp/SDL_pspvideo.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/windows/SDL_msctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/windows/SDL_msctf.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/windows/SDL_vkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/windows/SDL_vkeys.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/windows/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/windows/wmmsg.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11dyn.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11dyn.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11events.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11events.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11modes.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11modes.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11mouse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11mouse.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11opengl.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11opengl.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11shape.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11shape.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11sym.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11touch.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11touch.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11video.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11video.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11window.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/SDL_x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/SDL_x11window.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/edid-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/edid-parse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/edid.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/imKStoUCS.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/src/video/x11/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/src/video/x11/imKStoUCS.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/COPYING -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/Makefile.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/README -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/acinclude.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/aclocal.m4 -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/autogen.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/axis.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/button.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/checkkeys.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/configure -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/configure.in -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/controllermap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/controllermap.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/controllermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/controllermap.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/gcc-fat.sh -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/icon.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/loopwave.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/moose.dat -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/picture.xbm -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/relative_mode.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/relative_mode.markdown -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/sample.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/sample.wav -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p01_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p01_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p01_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p01_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p02_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p02_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p02_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p02_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p03_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p03_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p03_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p03_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p04_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p04_shape1.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p04_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p04_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p04_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p04_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p05_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p05_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p06_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p06_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p06_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p06_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p07_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p07_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p07_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p07_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p08_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p08_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p08_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p08_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p09_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p09_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p09_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p09_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p10_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p10_shape1.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p10_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p10_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p10_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p10_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p11_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p11_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p11_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p11_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p12_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p12_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p12_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p12_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p13_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p13_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p13_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p13_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p14_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p14_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p14_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p14_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p15_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p15_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p15_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p15_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p16_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p16_shape1.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p16_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p16_shape24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/p16_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/p16_shape8.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/shapes/trollface_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/shapes/trollface_24.bmp -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testatomic.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testaudioinfo.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_audio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_events.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_main.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_mouse.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_pixels.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_rect.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_render.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_rwops.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_sdltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_sdltest.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_stdlib.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_suites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_suites.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_surface.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_syswm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_syswm.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_timer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testautomation_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testautomation_video.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testdraw2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testdrawchessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testdrawchessboard.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testdropfile.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testerror.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testfile.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testfilesystem.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testgamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testgamecontroller.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testgesture.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testgl2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testgles.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testgles2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testhaptic.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testhotplug.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testiconv.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testime.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testintersections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testintersections.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testjoystick.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testkeys.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testloadso.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testlock.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testmessage.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testmultiaudio.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testnative.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testnative.h -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testnativecocoa.m -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testnativew32.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testnativex11.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testoverlay2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testplatform.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testpower.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testrelative.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testrendercopyex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testrendercopyex.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testrendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testrendertarget.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testresample.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testrumble.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testscale.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testsem.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testshader.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testshape.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testsprite2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testspriteminimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testspriteminimal.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/teststreaming.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testthread.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testtimer.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testver.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testviewport.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/testwm2.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/torturethread.c -------------------------------------------------------------------------------- /deps/SDL2-2.0.3/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/SDL2-2.0.3/test/utf8.txt -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/README.txt -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/Doxyfile -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/annotated.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/bc_s.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/classes.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/closed.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/doxygen.css -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/doxygen.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/files.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/functions.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/globals.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/index.html -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/nav_f.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/nav_h.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/open.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/tab_a.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/tab_b.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/tab_h.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/tab_s.png -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/doc/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/doc/html/tabs.css -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/source/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/source/fast_mutex.h -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/source/tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/source/tinythread.cpp -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/source/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/source/tinythread.h -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/test/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/test/Makefile.msvc -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/test/fractal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/test/fractal.cpp -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/test/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/test/hello.cpp -------------------------------------------------------------------------------- /deps/TinyThread++-1.1/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/TinyThread++-1.1/test/test.cpp -------------------------------------------------------------------------------- /deps/gtest-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/CHANGES -------------------------------------------------------------------------------- /deps/gtest-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /deps/gtest-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /deps/gtest-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/LICENSE -------------------------------------------------------------------------------- /deps/gtest-1.7.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/Makefile.am -------------------------------------------------------------------------------- /deps/gtest-1.7.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/Makefile.in -------------------------------------------------------------------------------- /deps/gtest-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/README -------------------------------------------------------------------------------- /deps/gtest-1.7.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/aclocal.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/config.guess -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/config.h.in -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/config.sub -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/depcomp -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/install-sh -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/ltmain.sh -------------------------------------------------------------------------------- /deps/gtest-1.7.0/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/build-aux/missing -------------------------------------------------------------------------------- /deps/gtest-1.7.0/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /deps/gtest-1.7.0/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/codegear/gtest.cbproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/codegear/gtest.groupproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/codegear/gtest_all.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/codegear/gtest_link.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/configure -------------------------------------------------------------------------------- /deps/gtest-1.7.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/configure.ac -------------------------------------------------------------------------------- /deps/gtest-1.7.0/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/gtest.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest-md.sln -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest.sln -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/prime_tables.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample1.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample1.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample2.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample2.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample3-inl.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample4.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample4.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/scripts/gtest-config.in -------------------------------------------------------------------------------- /deps/gtest-1.7.0/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/scripts/pump.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-all.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-port.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/src/gtest_main.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-message_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-options_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-port_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_all_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_color_test.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_help_test.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_output_test.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_test_utils.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_unittest.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/production.cc -------------------------------------------------------------------------------- /deps/gtest-1.7.0/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/test/production.h -------------------------------------------------------------------------------- /deps/gtest-1.7.0/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /deps/gtest-1.7.0/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/gtest-1.7.0/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /deps/parson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/README.md -------------------------------------------------------------------------------- /deps/parson/parson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/parson.c -------------------------------------------------------------------------------- /deps/parson/parson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/parson.h -------------------------------------------------------------------------------- /deps/parson/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/tests.c -------------------------------------------------------------------------------- /deps/parson/tests/test_1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/tests/test_1_1.txt -------------------------------------------------------------------------------- /deps/parson/tests/test_1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/tests/test_1_2.txt -------------------------------------------------------------------------------- /deps/parson/tests/test_1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/tests/test_1_3.txt -------------------------------------------------------------------------------- /deps/parson/tests/test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/parson/tests/test_2.txt -------------------------------------------------------------------------------- /deps/ptex-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/README -------------------------------------------------------------------------------- /deps/ptex-master/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/Doxyfile -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/Doxyfile_API_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/Doxyfile_API_only -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/FilterFootprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/FilterFootprint.html -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/License.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/README -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/apiintro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/apiintro.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/main.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/doc/uvellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/doc/uvellipse.png -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/Makefile.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/Makefile.deps -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexCache.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexCache.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexDict.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexFilters.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexHalf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexHalf.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexHalf.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexHashMap.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexIO.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexInt.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexMutex.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexPlatform.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexReader.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexReader.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexUtils.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexUtils.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexWriter.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/PtexWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/PtexWriter.h -------------------------------------------------------------------------------- /deps/ptex-master/src/ptex/Ptexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/ptex/Ptexture.h -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/compare_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/compare_test.cmake -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/ftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/ftest.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/ftestok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/ftestok.dat -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/halftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/halftest.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/rtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/rtest.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/rtestok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/rtestok.dat -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/run_tests.py -------------------------------------------------------------------------------- /deps/ptex-master/src/tests/wtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/tests/wtest.cpp -------------------------------------------------------------------------------- /deps/ptex-master/src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ptex-master/src/utils/ptxinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/deps/ptex-master/src/utils/ptxinfo.cpp -------------------------------------------------------------------------------- /duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/duktape.c -------------------------------------------------------------------------------- /duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/duktape.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/BUGS.txt -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/COPYING.txt -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/README-SDL.txt -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/README.txt -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/WhatsNew.txt -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_bits.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_log.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_main.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_name.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_quit.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_rect.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/include/SDL_test.h -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /extlibs/windows/SDL2-2.0.3/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/extlibs/windows/SDL2-2.0.3/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/fabfile.py -------------------------------------------------------------------------------- /filepath_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/filepath_util.cc -------------------------------------------------------------------------------- /filepath_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/filepath_util.h -------------------------------------------------------------------------------- /format_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/format_source.sh -------------------------------------------------------------------------------- /happyhttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/happyhttp.cpp -------------------------------------------------------------------------------- /happyhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/happyhttp.h -------------------------------------------------------------------------------- /hashgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/hashgrid.h -------------------------------------------------------------------------------- /hashgrid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/hashgrid.hxx -------------------------------------------------------------------------------- /importers/eson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/eson.cc -------------------------------------------------------------------------------- /importers/eson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/eson.h -------------------------------------------------------------------------------- /importers/magicavoxel_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/magicavoxel_loader.cc -------------------------------------------------------------------------------- /importers/magicavoxel_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/magicavoxel_loader.h -------------------------------------------------------------------------------- /importers/mesh_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/mesh_loader.cc -------------------------------------------------------------------------------- /importers/mesh_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/mesh_loader.h -------------------------------------------------------------------------------- /importers/mmd_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/mmd_math.h -------------------------------------------------------------------------------- /importers/mmd_scene.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/mmd_scene.cc -------------------------------------------------------------------------------- /importers/mmd_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/mmd_scene.h -------------------------------------------------------------------------------- /importers/pmd_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/pmd_model.h -------------------------------------------------------------------------------- /importers/pmd_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/pmd_reader.cc -------------------------------------------------------------------------------- /importers/pmd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/pmd_reader.h -------------------------------------------------------------------------------- /importers/tiny_obj_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/tiny_obj_loader.cc -------------------------------------------------------------------------------- /importers/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/tiny_obj_loader.h -------------------------------------------------------------------------------- /importers/vmd_animation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/vmd_animation.cc -------------------------------------------------------------------------------- /importers/vmd_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/vmd_animation.h -------------------------------------------------------------------------------- /importers/vmd_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/vmd_reader.cc -------------------------------------------------------------------------------- /importers/vmd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/importers/vmd_reader.h -------------------------------------------------------------------------------- /intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/intersection.h -------------------------------------------------------------------------------- /jpge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/jpge.cc -------------------------------------------------------------------------------- /jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/jpge.h -------------------------------------------------------------------------------- /light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/light.cc -------------------------------------------------------------------------------- /light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/light.h -------------------------------------------------------------------------------- /log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/log.cc -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/log.h -------------------------------------------------------------------------------- /main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/main.cc -------------------------------------------------------------------------------- /main_console.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/main_console.cc -------------------------------------------------------------------------------- /main_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/main_console.h -------------------------------------------------------------------------------- /main_sdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/main_sdl.cc -------------------------------------------------------------------------------- /main_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/main_sdl.h -------------------------------------------------------------------------------- /mallie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/mallie.jpg -------------------------------------------------------------------------------- /material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/material.h -------------------------------------------------------------------------------- /math.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/math.hxx -------------------------------------------------------------------------------- /matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/matrix.cc -------------------------------------------------------------------------------- /matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/matrix.h -------------------------------------------------------------------------------- /mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/mesh.h -------------------------------------------------------------------------------- /miniexr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/miniexr.cpp -------------------------------------------------------------------------------- /mmm_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/mmm_io.cc -------------------------------------------------------------------------------- /mmm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/mmm_io.h -------------------------------------------------------------------------------- /pbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/pbrt.h -------------------------------------------------------------------------------- /premake4-test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/premake4-test.lua -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/premake4.lua -------------------------------------------------------------------------------- /prim-plane.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/prim-plane.cc -------------------------------------------------------------------------------- /prim-plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/prim-plane.h -------------------------------------------------------------------------------- /render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/render.cc -------------------------------------------------------------------------------- /render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/render.h -------------------------------------------------------------------------------- /scene.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scene.cc -------------------------------------------------------------------------------- /scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scene.h -------------------------------------------------------------------------------- /script_engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/script_engine.cc -------------------------------------------------------------------------------- /script_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/script_engine.h -------------------------------------------------------------------------------- /scripts/build_deplibs_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scripts/build_deplibs_linux.sh -------------------------------------------------------------------------------- /scripts/build_deplibs_macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scripts/build_deplibs_macosx.sh -------------------------------------------------------------------------------- /scripts/setup_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scripts/setup_linux.sh -------------------------------------------------------------------------------- /scripts/setup_linux_aarch64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scripts/setup_linux_aarch64.sh -------------------------------------------------------------------------------- /scripts/setup_macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/scripts/setup_macosx.sh -------------------------------------------------------------------------------- /spectrum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/spectrum.cc -------------------------------------------------------------------------------- /spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/spectrum.h -------------------------------------------------------------------------------- /switch_gcc48.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/switch_gcc48.sh -------------------------------------------------------------------------------- /tasksys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tasksys.cc -------------------------------------------------------------------------------- /teapot.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/teapot.mtl -------------------------------------------------------------------------------- /teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/teapot.obj -------------------------------------------------------------------------------- /test/cctest/test-atomic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/test/cctest/test-atomic.cc -------------------------------------------------------------------------------- /test/cctest/test-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/test/cctest/test-main.cc -------------------------------------------------------------------------------- /test_atomic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/test_atomic.cc -------------------------------------------------------------------------------- /texture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/texture.cc -------------------------------------------------------------------------------- /texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/texture.h -------------------------------------------------------------------------------- /timerutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/timerutil.h -------------------------------------------------------------------------------- /tinyexr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tinyexr.cc -------------------------------------------------------------------------------- /tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tinyexr.h -------------------------------------------------------------------------------- /tools/linux/premake4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/linux/premake4 -------------------------------------------------------------------------------- /tools/macosx/ispc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/macosx/ispc -------------------------------------------------------------------------------- /tools/macosx/premake4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/macosx/premake4 -------------------------------------------------------------------------------- /tools/solaris/premake4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/solaris/premake4 -------------------------------------------------------------------------------- /tools/windows/premake4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/windows/premake4.exe -------------------------------------------------------------------------------- /tools/windows/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/tools/windows/premake5.exe -------------------------------------------------------------------------------- /trackball.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/trackball.cc -------------------------------------------------------------------------------- /trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/trackball.h -------------------------------------------------------------------------------- /vcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/vcbuild.bat -------------------------------------------------------------------------------- /vcm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/vcm.cc -------------------------------------------------------------------------------- /vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/vector3.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighttransport/mallie/HEAD/version.h --------------------------------------------------------------------------------