├── .gitignore ├── Makefile ├── README.md ├── assets ├── Junction-bold.otf ├── game-over.wav ├── jump.wav ├── loop.wav ├── loop2.wav └── loop3.wav ├── conf.lua ├── conf.mobile.lua ├── conf.windows.lua ├── crypto └── my-release-key.keystore ├── dist ├── android │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── .gitignore │ │ │ ├── drawable-hdpi │ │ │ └── love.png │ │ │ ├── drawable-ldpi │ │ │ └── .gitkeep │ │ │ ├── drawable-mdpi │ │ │ └── love.png │ │ │ ├── drawable-xhdpi │ │ │ └── love.png │ │ │ ├── drawable-xxhdpi │ │ │ └── love.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── love.png │ │ │ ├── mipmap-hdpi │ │ │ └── .gitkeep │ │ │ ├── mipmap-mdpi │ │ │ └── .gitkeep │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── default.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ ├── love │ │ ├── .externalNativeBuild │ │ │ └── ndkBuild │ │ │ │ ├── debug │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── ndkBuild_build_command.txt │ │ │ │ │ └── ndkBuild_build_output.txt │ │ │ │ └── armeabi │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── ndkBuild_build_command.txt │ │ │ │ │ └── ndkBuild_build_output.txt │ │ │ │ └── release │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── ndkBuild_build_command.txt │ │ │ │ └── ndkBuild_build_output.txt │ │ │ │ └── armeabi │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── ndkBuild_build_command.txt │ │ │ │ └── ndkBuild_build_output.txt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── jni │ │ │ ├── .gitignore │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── LuaJIT-2.1 │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── android │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ └── libluajit.a │ │ │ │ │ ├── armeabi │ │ │ │ │ │ └── libluajit.a │ │ │ │ │ └── x86 │ │ │ │ │ │ └── libluajit.a │ │ │ │ ├── buildandroid.sh │ │ │ │ ├── doc │ │ │ │ │ ├── bluequad-print.css │ │ │ │ │ ├── bluequad.css │ │ │ │ │ ├── changes.html │ │ │ │ │ ├── contact.html │ │ │ │ │ ├── ext_c_api.html │ │ │ │ │ ├── ext_ffi.html │ │ │ │ │ ├── ext_ffi_api.html │ │ │ │ │ ├── ext_ffi_semantics.html │ │ │ │ │ ├── ext_ffi_tutorial.html │ │ │ │ │ ├── ext_jit.html │ │ │ │ │ ├── ext_profiler.html │ │ │ │ │ ├── extensions.html │ │ │ │ │ ├── faq.html │ │ │ │ │ ├── img │ │ │ │ │ │ └── contact.png │ │ │ │ │ ├── install.html │ │ │ │ │ ├── luajit.html │ │ │ │ │ ├── running.html │ │ │ │ │ └── status.html │ │ │ │ ├── dynasm │ │ │ │ │ ├── dasm_arm.h │ │ │ │ │ ├── dasm_arm.lua │ │ │ │ │ ├── dasm_arm64.h │ │ │ │ │ ├── dasm_arm64.lua │ │ │ │ │ ├── dasm_mips.h │ │ │ │ │ ├── dasm_mips.lua │ │ │ │ │ ├── dasm_ppc.h │ │ │ │ │ ├── dasm_ppc.lua │ │ │ │ │ ├── dasm_proto.h │ │ │ │ │ ├── dasm_x64.lua │ │ │ │ │ ├── dasm_x86.h │ │ │ │ │ ├── dasm_x86.lua │ │ │ │ │ └── dynasm.lua │ │ │ │ ├── etc │ │ │ │ │ ├── luajit.1 │ │ │ │ │ └── luajit.pc │ │ │ │ └── src │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.dep │ │ │ │ │ ├── host │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README │ │ │ │ │ ├── buildvm.c │ │ │ │ │ ├── buildvm.h │ │ │ │ │ ├── buildvm_asm.c │ │ │ │ │ ├── buildvm_fold.c │ │ │ │ │ ├── buildvm_lib.c │ │ │ │ │ ├── buildvm_libbc.h │ │ │ │ │ ├── buildvm_peobj.c │ │ │ │ │ ├── genlibbc.lua │ │ │ │ │ ├── genminilua.lua │ │ │ │ │ └── minilua.c │ │ │ │ │ ├── jit │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── bc.lua │ │ │ │ │ ├── bcsave.lua │ │ │ │ │ ├── dis_arm.lua │ │ │ │ │ ├── dis_mips.lua │ │ │ │ │ ├── dis_mipsel.lua │ │ │ │ │ ├── dis_ppc.lua │ │ │ │ │ ├── dis_x64.lua │ │ │ │ │ ├── dis_x86.lua │ │ │ │ │ ├── dump.lua │ │ │ │ │ ├── p.lua │ │ │ │ │ ├── v.lua │ │ │ │ │ └── zone.lua │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lib_aux.c │ │ │ │ │ ├── lib_base.c │ │ │ │ │ ├── lib_bit.c │ │ │ │ │ ├── lib_debug.c │ │ │ │ │ ├── lib_ffi.c │ │ │ │ │ ├── lib_init.c │ │ │ │ │ ├── lib_io.c │ │ │ │ │ ├── lib_jit.c │ │ │ │ │ ├── lib_math.c │ │ │ │ │ ├── lib_os.c │ │ │ │ │ ├── lib_package.c │ │ │ │ │ ├── lib_string.c │ │ │ │ │ ├── lib_table.c │ │ │ │ │ ├── lj.supp │ │ │ │ │ ├── lj_alloc.c │ │ │ │ │ ├── lj_alloc.h │ │ │ │ │ ├── lj_api.c │ │ │ │ │ ├── lj_arch.h │ │ │ │ │ ├── lj_asm.c │ │ │ │ │ ├── lj_asm.h │ │ │ │ │ ├── lj_asm_arm.h │ │ │ │ │ ├── lj_asm_mips.h │ │ │ │ │ ├── lj_asm_ppc.h │ │ │ │ │ ├── lj_asm_x86.h │ │ │ │ │ ├── lj_bc.c │ │ │ │ │ ├── lj_bc.h │ │ │ │ │ ├── lj_bcdump.h │ │ │ │ │ ├── lj_bcread.c │ │ │ │ │ ├── lj_bcwrite.c │ │ │ │ │ ├── lj_buf.c │ │ │ │ │ ├── lj_buf.h │ │ │ │ │ ├── lj_carith.c │ │ │ │ │ ├── lj_carith.h │ │ │ │ │ ├── lj_ccall.c │ │ │ │ │ ├── lj_ccall.h │ │ │ │ │ ├── lj_ccallback.c │ │ │ │ │ ├── lj_ccallback.h │ │ │ │ │ ├── lj_cconv.c │ │ │ │ │ ├── lj_cconv.h │ │ │ │ │ ├── lj_cdata.c │ │ │ │ │ ├── lj_cdata.h │ │ │ │ │ ├── lj_char.c │ │ │ │ │ ├── lj_char.h │ │ │ │ │ ├── lj_clib.c │ │ │ │ │ ├── lj_clib.h │ │ │ │ │ ├── lj_cparse.c │ │ │ │ │ ├── lj_cparse.h │ │ │ │ │ ├── lj_crecord.c │ │ │ │ │ ├── lj_crecord.h │ │ │ │ │ ├── lj_ctype.c │ │ │ │ │ ├── lj_ctype.h │ │ │ │ │ ├── lj_debug.c │ │ │ │ │ ├── lj_debug.h │ │ │ │ │ ├── lj_def.h │ │ │ │ │ ├── lj_dispatch.c │ │ │ │ │ ├── lj_dispatch.h │ │ │ │ │ ├── lj_emit_arm.h │ │ │ │ │ ├── lj_emit_mips.h │ │ │ │ │ ├── lj_emit_ppc.h │ │ │ │ │ ├── lj_emit_x86.h │ │ │ │ │ ├── lj_err.c │ │ │ │ │ ├── lj_err.h │ │ │ │ │ ├── lj_errmsg.h │ │ │ │ │ ├── lj_ff.h │ │ │ │ │ ├── lj_ffrecord.c │ │ │ │ │ ├── lj_ffrecord.h │ │ │ │ │ ├── lj_frame.h │ │ │ │ │ ├── lj_func.c │ │ │ │ │ ├── lj_func.h │ │ │ │ │ ├── lj_gc.c │ │ │ │ │ ├── lj_gc.h │ │ │ │ │ ├── lj_gdbjit.c │ │ │ │ │ ├── lj_gdbjit.h │ │ │ │ │ ├── lj_ir.c │ │ │ │ │ ├── lj_ir.h │ │ │ │ │ ├── lj_ircall.h │ │ │ │ │ ├── lj_iropt.h │ │ │ │ │ ├── lj_jit.h │ │ │ │ │ ├── lj_lex.c │ │ │ │ │ ├── lj_lex.h │ │ │ │ │ ├── lj_lib.c │ │ │ │ │ ├── lj_lib.h │ │ │ │ │ ├── lj_load.c │ │ │ │ │ ├── lj_mcode.c │ │ │ │ │ ├── lj_mcode.h │ │ │ │ │ ├── lj_meta.c │ │ │ │ │ ├── lj_meta.h │ │ │ │ │ ├── lj_obj.c │ │ │ │ │ ├── lj_obj.h │ │ │ │ │ ├── lj_opt_dce.c │ │ │ │ │ ├── lj_opt_fold.c │ │ │ │ │ ├── lj_opt_loop.c │ │ │ │ │ ├── lj_opt_mem.c │ │ │ │ │ ├── lj_opt_narrow.c │ │ │ │ │ ├── lj_opt_sink.c │ │ │ │ │ ├── lj_opt_split.c │ │ │ │ │ ├── lj_parse.c │ │ │ │ │ ├── lj_parse.h │ │ │ │ │ ├── lj_profile.c │ │ │ │ │ ├── lj_profile.h │ │ │ │ │ ├── lj_record.c │ │ │ │ │ ├── lj_record.h │ │ │ │ │ ├── lj_snap.c │ │ │ │ │ ├── lj_snap.h │ │ │ │ │ ├── lj_state.c │ │ │ │ │ ├── lj_state.h │ │ │ │ │ ├── lj_str.c │ │ │ │ │ ├── lj_str.h │ │ │ │ │ ├── lj_strfmt.c │ │ │ │ │ ├── lj_strfmt.h │ │ │ │ │ ├── lj_strscan.c │ │ │ │ │ ├── lj_strscan.h │ │ │ │ │ ├── lj_tab.c │ │ │ │ │ ├── lj_tab.h │ │ │ │ │ ├── lj_target.h │ │ │ │ │ ├── lj_target_arm.h │ │ │ │ │ ├── lj_target_arm64.h │ │ │ │ │ ├── lj_target_mips.h │ │ │ │ │ ├── lj_target_ppc.h │ │ │ │ │ ├── lj_target_x86.h │ │ │ │ │ ├── lj_trace.c │ │ │ │ │ ├── lj_trace.h │ │ │ │ │ ├── lj_traceerr.h │ │ │ │ │ ├── lj_udata.c │ │ │ │ │ ├── lj_udata.h │ │ │ │ │ ├── lj_vm.h │ │ │ │ │ ├── lj_vmevent.c │ │ │ │ │ ├── lj_vmevent.h │ │ │ │ │ ├── lj_vmmath.c │ │ │ │ │ ├── ljamalg.c │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── luajit.c │ │ │ │ │ ├── luajit.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── msvcbuild.bat │ │ │ │ │ ├── ps4build.bat │ │ │ │ │ ├── psvitabuild.bat │ │ │ │ │ ├── vm_arm.dasc │ │ │ │ │ ├── vm_arm64.dasc │ │ │ │ │ ├── vm_mips.dasc │ │ │ │ │ ├── vm_ppc.dasc │ │ │ │ │ ├── vm_ppcspe.dasc │ │ │ │ │ ├── vm_x64.dasc │ │ │ │ │ ├── vm_x86.dasc │ │ │ │ │ ├── xb1build.bat │ │ │ │ │ └── xedkbuild.bat │ │ │ ├── SDL2-2.0.5 │ │ │ │ ├── .hg_archival.txt │ │ │ │ ├── .hgignore │ │ │ │ ├── .hgtags │ │ │ │ ├── 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.txt │ │ │ │ ├── SDL.tag │ │ │ │ ├── SDL2.spec.in │ │ │ │ ├── TODO.txt │ │ │ │ ├── VisualC.html │ │ │ │ ├── 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-568h@2x.png │ │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── checker-buildbot.sh │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── emscripten-buildbot.sh │ │ │ │ │ ├── g++-fat.sh │ │ │ │ │ ├── gcc-fat.sh │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── iosbuild.sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── mkinstalldirs │ │ │ │ │ ├── nacl-buildbot.sh │ │ │ │ │ ├── naclbuild.sh │ │ │ │ │ ├── raspberrypi-buildbot.sh │ │ │ │ │ ├── showrev.sh │ │ │ │ │ ├── strip_fPIC.sh │ │ │ │ │ ├── update-copyright.sh │ │ │ │ │ ├── updaterev.sh │ │ │ │ │ ├── windows-buildbot-zipper.bat │ │ │ │ │ ├── winrtbuild.bat │ │ │ │ │ └── winrtbuild.ps1 │ │ │ │ ├── cmake │ │ │ │ │ ├── macros.cmake │ │ │ │ │ └── sdlchecks.cmake │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── debian │ │ │ │ │ ├── changelog │ │ │ │ │ ├── compat │ │ │ │ │ ├── control │ │ │ │ │ ├── copyright │ │ │ │ │ ├── docs │ │ │ │ │ ├── libsdl2-dev.install │ │ │ │ │ ├── libsdl2-dev.manpages │ │ │ │ │ ├── libsdl2.install │ │ │ │ │ ├── rules │ │ │ │ │ ├── sdl2-config.1 │ │ │ │ │ ├── source │ │ │ │ │ │ └── format │ │ │ │ │ └── watch │ │ │ │ ├── docs │ │ │ │ │ ├── README-android.md │ │ │ │ │ ├── README-cmake.md │ │ │ │ │ ├── README-directfb.md │ │ │ │ │ ├── README-dynapi.md │ │ │ │ │ ├── README-gesture.md │ │ │ │ │ ├── README-hg.md │ │ │ │ │ ├── README-ios.md │ │ │ │ │ ├── README-linux.md │ │ │ │ │ ├── README-macosx.md │ │ │ │ │ ├── README-nacl.md │ │ │ │ │ ├── README-pandora.md │ │ │ │ │ ├── README-platforms.md │ │ │ │ │ ├── README-porting.md │ │ │ │ │ ├── README-psp.md │ │ │ │ │ ├── README-raspberrypi.md │ │ │ │ │ ├── README-touch.md │ │ │ │ │ ├── README-wince.md │ │ │ │ │ ├── README-windows.md │ │ │ │ │ ├── README-winrt.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── doxyfile │ │ │ │ ├── doxygen_warn.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_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_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_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 │ │ │ │ ├── premake │ │ │ │ │ ├── Cygwin │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── clean_premake.bat │ │ │ │ │ │ │ ├── cygwin.bat │ │ │ │ │ │ │ ├── make.debug.bat │ │ │ │ │ │ │ ├── make.release.bat │ │ │ │ │ │ │ ├── premake4.exe │ │ │ │ │ │ │ ├── run.tests.debug.bat │ │ │ │ │ │ │ └── run.tests.release.bat │ │ │ │ │ ├── Linux │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── clean_premake.sh │ │ │ │ │ │ │ ├── gmake.sh │ │ │ │ │ │ │ ├── premake4 │ │ │ │ │ │ │ └── run.tests.sh │ │ │ │ │ ├── MinGW │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── clean_premake.bat │ │ │ │ │ │ │ ├── mingw.bat │ │ │ │ │ │ │ ├── premake4.exe │ │ │ │ │ │ │ └── run.tests.bat │ │ │ │ │ ├── README-cygwin.txt │ │ │ │ │ ├── README-ios.txt │ │ │ │ │ ├── README-linux.txt │ │ │ │ │ ├── README-macosx.txt │ │ │ │ │ ├── README-mingw.txt │ │ │ │ │ ├── README-windows.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── VisualC │ │ │ │ │ │ ├── VS2008 │ │ │ │ │ │ │ ├── SDL.sln │ │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ │ └── SDL2.vcproj │ │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ │ └── SDL2main.vcproj │ │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ │ └── SDL2test.vcproj │ │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── checkkeys │ │ │ │ │ │ │ │ └── checkkeys.vcproj │ │ │ │ │ │ │ │ ├── loopwave │ │ │ │ │ │ │ │ └── loopwave.vcproj │ │ │ │ │ │ │ │ ├── testatomic │ │ │ │ │ │ │ │ └── testatomic.vcproj │ │ │ │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ │ │ │ └── testaudioinfo.vcproj │ │ │ │ │ │ │ │ ├── testautomation │ │ │ │ │ │ │ │ └── testautomation.vcproj │ │ │ │ │ │ │ │ ├── testchessboard │ │ │ │ │ │ │ │ └── testchessboard.vcproj │ │ │ │ │ │ │ │ ├── testdraw2 │ │ │ │ │ │ │ │ └── testdraw2.vcproj │ │ │ │ │ │ │ │ ├── testerror │ │ │ │ │ │ │ │ └── testerror.vcproj │ │ │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ │ │ └── testfile.vcproj │ │ │ │ │ │ │ │ ├── testfilesystem │ │ │ │ │ │ │ │ └── testfilesystem.vcproj │ │ │ │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ │ │ │ └── testgamecontroller.vcproj │ │ │ │ │ │ │ │ ├── testgesture │ │ │ │ │ │ │ │ └── testgesture.vcproj │ │ │ │ │ │ │ │ ├── testgl2 │ │ │ │ │ │ │ │ └── testgl2.vcproj │ │ │ │ │ │ │ │ ├── testgles │ │ │ │ │ │ │ │ └── testgles.vcproj │ │ │ │ │ │ │ │ ├── testhaptic │ │ │ │ │ │ │ │ └── testhaptic.vcproj │ │ │ │ │ │ │ │ ├── testiconv │ │ │ │ │ │ │ │ └── testiconv.vcproj │ │ │ │ │ │ │ │ ├── testime │ │ │ │ │ │ │ │ └── testime.vcproj │ │ │ │ │ │ │ │ ├── testjoystick │ │ │ │ │ │ │ │ └── testjoystick.vcproj │ │ │ │ │ │ │ │ ├── testkeys │ │ │ │ │ │ │ │ └── testkeys.vcproj │ │ │ │ │ │ │ │ ├── testloadso │ │ │ │ │ │ │ │ └── testloadso.vcproj │ │ │ │ │ │ │ │ ├── testlock │ │ │ │ │ │ │ │ └── testlock.vcproj │ │ │ │ │ │ │ │ ├── testmessage │ │ │ │ │ │ │ │ └── testmessage.vcproj │ │ │ │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ │ │ │ └── testmultiaudio.vcproj │ │ │ │ │ │ │ │ ├── testnative │ │ │ │ │ │ │ │ └── testnative.vcproj │ │ │ │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ │ │ │ └── testoverlay2.vcproj │ │ │ │ │ │ │ │ ├── testplatform │ │ │ │ │ │ │ │ └── testplatform.vcproj │ │ │ │ │ │ │ │ ├── testpower │ │ │ │ │ │ │ │ └── testpower.vcproj │ │ │ │ │ │ │ │ ├── testrelative │ │ │ │ │ │ │ │ └── testrelative.vcproj │ │ │ │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ │ │ │ └── testrendercopyex.vcproj │ │ │ │ │ │ │ │ ├── testrendertarget │ │ │ │ │ │ │ │ └── testrendertarget.vcproj │ │ │ │ │ │ │ │ ├── testresample │ │ │ │ │ │ │ │ └── testresample.vcproj │ │ │ │ │ │ │ │ ├── testrumble │ │ │ │ │ │ │ │ └── testrumble.vcproj │ │ │ │ │ │ │ │ ├── testscale │ │ │ │ │ │ │ │ └── testscale.vcproj │ │ │ │ │ │ │ │ ├── testsem │ │ │ │ │ │ │ │ └── testsem.vcproj │ │ │ │ │ │ │ │ ├── testshader │ │ │ │ │ │ │ │ └── testshader.vcproj │ │ │ │ │ │ │ │ ├── testshape │ │ │ │ │ │ │ │ └── testshape.vcproj │ │ │ │ │ │ │ │ ├── testsprite2 │ │ │ │ │ │ │ │ └── testsprite2.vcproj │ │ │ │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ │ │ │ └── testspriteminimal.vcproj │ │ │ │ │ │ │ │ ├── teststreaming │ │ │ │ │ │ │ │ └── teststreaming.vcproj │ │ │ │ │ │ │ │ ├── testthread │ │ │ │ │ │ │ │ └── testthread.vcproj │ │ │ │ │ │ │ │ ├── testtimer │ │ │ │ │ │ │ │ └── testtimer.vcproj │ │ │ │ │ │ │ │ ├── testver │ │ │ │ │ │ │ │ └── testver.vcproj │ │ │ │ │ │ │ │ ├── testwm2 │ │ │ │ │ │ │ │ └── testwm2.vcproj │ │ │ │ │ │ │ │ └── torturethread │ │ │ │ │ │ │ │ └── torturethread.vcproj │ │ │ │ │ │ ├── VS2010 │ │ │ │ │ │ │ ├── SDL.sln │ │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ │ ├── SDL2.vcxproj │ │ │ │ │ │ │ │ └── SDL2.vcxproj.filters │ │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ │ ├── SDL2main.vcxproj │ │ │ │ │ │ │ │ └── SDL2main.vcxproj.filters │ │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ │ ├── SDL2test.vcxproj │ │ │ │ │ │ │ │ └── SDL2test.vcxproj.filters │ │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── checkkeys │ │ │ │ │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ │ │ │ │ └── checkkeys.vcxproj.filters │ │ │ │ │ │ │ │ ├── loopwave │ │ │ │ │ │ │ │ ├── loopwave.vcxproj │ │ │ │ │ │ │ │ └── loopwave.vcxproj.filters │ │ │ │ │ │ │ │ ├── testatomic │ │ │ │ │ │ │ │ ├── testatomic.vcxproj │ │ │ │ │ │ │ │ └── testatomic.vcxproj.filters │ │ │ │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ │ │ │ ├── testaudioinfo.vcxproj │ │ │ │ │ │ │ │ └── testaudioinfo.vcxproj.filters │ │ │ │ │ │ │ │ ├── testautomation │ │ │ │ │ │ │ │ ├── testautomation.vcxproj │ │ │ │ │ │ │ │ └── testautomation.vcxproj.filters │ │ │ │ │ │ │ │ ├── testchessboard │ │ │ │ │ │ │ │ ├── testchessboard.vcxproj │ │ │ │ │ │ │ │ └── testchessboard.vcxproj.filters │ │ │ │ │ │ │ │ ├── testdraw2 │ │ │ │ │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ │ │ │ │ └── testdraw2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testerror │ │ │ │ │ │ │ │ ├── testerror.vcxproj │ │ │ │ │ │ │ │ └── testerror.vcxproj.filters │ │ │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ │ │ ├── testfile.vcxproj │ │ │ │ │ │ │ │ └── testfile.vcxproj.filters │ │ │ │ │ │ │ │ ├── testfilesystem │ │ │ │ │ │ │ │ ├── testfilesystem.vcxproj │ │ │ │ │ │ │ │ └── testfilesystem.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ │ │ │ │ └── testgamecontroller.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgesture │ │ │ │ │ │ │ │ ├── testgesture.vcxproj │ │ │ │ │ │ │ │ └── testgesture.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgl2 │ │ │ │ │ │ │ │ ├── testgl2.vcxproj │ │ │ │ │ │ │ │ └── testgl2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgles │ │ │ │ │ │ │ │ ├── testgles.vcxproj │ │ │ │ │ │ │ │ └── testgles.vcxproj.filters │ │ │ │ │ │ │ │ ├── testhaptic │ │ │ │ │ │ │ │ ├── testhaptic.vcxproj │ │ │ │ │ │ │ │ └── testhaptic.vcxproj.filters │ │ │ │ │ │ │ │ ├── testiconv │ │ │ │ │ │ │ │ ├── testiconv.vcxproj │ │ │ │ │ │ │ │ └── testiconv.vcxproj.filters │ │ │ │ │ │ │ │ ├── testime │ │ │ │ │ │ │ │ ├── testime.vcxproj │ │ │ │ │ │ │ │ └── testime.vcxproj.filters │ │ │ │ │ │ │ │ ├── testjoystick │ │ │ │ │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ │ │ │ │ └── testjoystick.vcxproj.filters │ │ │ │ │ │ │ │ ├── testkeys │ │ │ │ │ │ │ │ ├── testkeys.vcxproj │ │ │ │ │ │ │ │ └── testkeys.vcxproj.filters │ │ │ │ │ │ │ │ ├── testloadso │ │ │ │ │ │ │ │ ├── testloadso.vcxproj │ │ │ │ │ │ │ │ └── testloadso.vcxproj.filters │ │ │ │ │ │ │ │ ├── testlock │ │ │ │ │ │ │ │ ├── testlock.vcxproj │ │ │ │ │ │ │ │ └── testlock.vcxproj.filters │ │ │ │ │ │ │ │ ├── testmessage │ │ │ │ │ │ │ │ ├── testmessage.vcxproj │ │ │ │ │ │ │ │ └── testmessage.vcxproj.filters │ │ │ │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ │ │ │ ├── testmultiaudio.vcxproj │ │ │ │ │ │ │ │ └── testmultiaudio.vcxproj.filters │ │ │ │ │ │ │ │ ├── testnative │ │ │ │ │ │ │ │ ├── testnative.vcxproj │ │ │ │ │ │ │ │ └── testnative.vcxproj.filters │ │ │ │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ │ │ │ │ └── testoverlay2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testplatform │ │ │ │ │ │ │ │ ├── testplatform.vcxproj │ │ │ │ │ │ │ │ └── testplatform.vcxproj.filters │ │ │ │ │ │ │ │ ├── testpower │ │ │ │ │ │ │ │ ├── testpower.vcxproj │ │ │ │ │ │ │ │ └── testpower.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrelative │ │ │ │ │ │ │ │ ├── testrelative.vcxproj │ │ │ │ │ │ │ │ └── testrelative.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ │ │ │ ├── testrendercopyex.vcxproj │ │ │ │ │ │ │ │ └── testrendercopyex.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrendertarget │ │ │ │ │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ │ │ │ │ └── testrendertarget.vcxproj.filters │ │ │ │ │ │ │ │ ├── testresample │ │ │ │ │ │ │ │ ├── testresample.vcxproj │ │ │ │ │ │ │ │ └── testresample.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrumble │ │ │ │ │ │ │ │ ├── testrumble.vcxproj │ │ │ │ │ │ │ │ └── testrumble.vcxproj.filters │ │ │ │ │ │ │ │ ├── testscale │ │ │ │ │ │ │ │ ├── testscale.vcxproj │ │ │ │ │ │ │ │ └── testscale.vcxproj.filters │ │ │ │ │ │ │ │ ├── testsem │ │ │ │ │ │ │ │ ├── testsem.vcxproj │ │ │ │ │ │ │ │ └── testsem.vcxproj.filters │ │ │ │ │ │ │ │ ├── testshader │ │ │ │ │ │ │ │ ├── testshader.vcxproj │ │ │ │ │ │ │ │ └── testshader.vcxproj.filters │ │ │ │ │ │ │ │ ├── testshape │ │ │ │ │ │ │ │ ├── testshape.vcxproj │ │ │ │ │ │ │ │ └── testshape.vcxproj.filters │ │ │ │ │ │ │ │ ├── testsprite2 │ │ │ │ │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ │ │ │ │ └── testsprite2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ │ │ │ ├── testspriteminimal.vcxproj │ │ │ │ │ │ │ │ └── testspriteminimal.vcxproj.filters │ │ │ │ │ │ │ │ ├── teststreaming │ │ │ │ │ │ │ │ ├── teststreaming.vcxproj │ │ │ │ │ │ │ │ └── teststreaming.vcxproj.filters │ │ │ │ │ │ │ │ ├── testthread │ │ │ │ │ │ │ │ ├── testthread.vcxproj │ │ │ │ │ │ │ │ └── testthread.vcxproj.filters │ │ │ │ │ │ │ │ ├── testtimer │ │ │ │ │ │ │ │ ├── testtimer.vcxproj │ │ │ │ │ │ │ │ └── testtimer.vcxproj.filters │ │ │ │ │ │ │ │ ├── testver │ │ │ │ │ │ │ │ ├── testver.vcxproj │ │ │ │ │ │ │ │ └── testver.vcxproj.filters │ │ │ │ │ │ │ │ ├── testwm2 │ │ │ │ │ │ │ │ ├── testwm2.vcxproj │ │ │ │ │ │ │ │ └── testwm2.vcxproj.filters │ │ │ │ │ │ │ │ └── torturethread │ │ │ │ │ │ │ │ ├── torturethread.vcxproj │ │ │ │ │ │ │ │ └── torturethread.vcxproj.filters │ │ │ │ │ │ ├── VS2012 │ │ │ │ │ │ │ ├── SDL.sln │ │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ │ ├── SDL2.vcxproj │ │ │ │ │ │ │ │ └── SDL2.vcxproj.filters │ │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ │ ├── SDL2main.vcxproj │ │ │ │ │ │ │ │ └── SDL2main.vcxproj.filters │ │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ │ ├── SDL2test.vcxproj │ │ │ │ │ │ │ │ └── SDL2test.vcxproj.filters │ │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── checkkeys │ │ │ │ │ │ │ │ ├── checkkeys.vcxproj │ │ │ │ │ │ │ │ └── checkkeys.vcxproj.filters │ │ │ │ │ │ │ │ ├── loopwave │ │ │ │ │ │ │ │ ├── loopwave.vcxproj │ │ │ │ │ │ │ │ └── loopwave.vcxproj.filters │ │ │ │ │ │ │ │ ├── testatomic │ │ │ │ │ │ │ │ ├── testatomic.vcxproj │ │ │ │ │ │ │ │ └── testatomic.vcxproj.filters │ │ │ │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ │ │ │ ├── testaudioinfo.vcxproj │ │ │ │ │ │ │ │ └── testaudioinfo.vcxproj.filters │ │ │ │ │ │ │ │ ├── testautomation │ │ │ │ │ │ │ │ ├── testautomation.vcxproj │ │ │ │ │ │ │ │ └── testautomation.vcxproj.filters │ │ │ │ │ │ │ │ ├── testchessboard │ │ │ │ │ │ │ │ ├── testchessboard.vcxproj │ │ │ │ │ │ │ │ └── testchessboard.vcxproj.filters │ │ │ │ │ │ │ │ ├── testdraw2 │ │ │ │ │ │ │ │ ├── testdraw2.vcxproj │ │ │ │ │ │ │ │ └── testdraw2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testerror │ │ │ │ │ │ │ │ ├── testerror.vcxproj │ │ │ │ │ │ │ │ └── testerror.vcxproj.filters │ │ │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ │ │ ├── testfile.vcxproj │ │ │ │ │ │ │ │ └── testfile.vcxproj.filters │ │ │ │ │ │ │ │ ├── testfilesystem │ │ │ │ │ │ │ │ ├── testfilesystem.vcxproj │ │ │ │ │ │ │ │ └── testfilesystem.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ │ │ │ │ └── testgamecontroller.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgesture │ │ │ │ │ │ │ │ ├── testgesture.vcxproj │ │ │ │ │ │ │ │ └── testgesture.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgl2 │ │ │ │ │ │ │ │ ├── testgl2.vcxproj │ │ │ │ │ │ │ │ └── testgl2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testgles │ │ │ │ │ │ │ │ ├── testgles.vcxproj │ │ │ │ │ │ │ │ └── testgles.vcxproj.filters │ │ │ │ │ │ │ │ ├── testhaptic │ │ │ │ │ │ │ │ ├── testhaptic.vcxproj │ │ │ │ │ │ │ │ └── testhaptic.vcxproj.filters │ │ │ │ │ │ │ │ ├── testiconv │ │ │ │ │ │ │ │ ├── testiconv.vcxproj │ │ │ │ │ │ │ │ └── testiconv.vcxproj.filters │ │ │ │ │ │ │ │ ├── testime │ │ │ │ │ │ │ │ ├── testime.vcxproj │ │ │ │ │ │ │ │ └── testime.vcxproj.filters │ │ │ │ │ │ │ │ ├── testjoystick │ │ │ │ │ │ │ │ ├── testjoystick.vcxproj │ │ │ │ │ │ │ │ └── testjoystick.vcxproj.filters │ │ │ │ │ │ │ │ ├── testkeys │ │ │ │ │ │ │ │ ├── testkeys.vcxproj │ │ │ │ │ │ │ │ └── testkeys.vcxproj.filters │ │ │ │ │ │ │ │ ├── testloadso │ │ │ │ │ │ │ │ ├── testloadso.vcxproj │ │ │ │ │ │ │ │ └── testloadso.vcxproj.filters │ │ │ │ │ │ │ │ ├── testlock │ │ │ │ │ │ │ │ ├── testlock.vcxproj │ │ │ │ │ │ │ │ └── testlock.vcxproj.filters │ │ │ │ │ │ │ │ ├── testmessage │ │ │ │ │ │ │ │ ├── testmessage.vcxproj │ │ │ │ │ │ │ │ └── testmessage.vcxproj.filters │ │ │ │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ │ │ │ ├── testmultiaudio.vcxproj │ │ │ │ │ │ │ │ └── testmultiaudio.vcxproj.filters │ │ │ │ │ │ │ │ ├── testnative │ │ │ │ │ │ │ │ ├── testnative.vcxproj │ │ │ │ │ │ │ │ └── testnative.vcxproj.filters │ │ │ │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ │ │ │ ├── testoverlay2.vcxproj │ │ │ │ │ │ │ │ └── testoverlay2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testplatform │ │ │ │ │ │ │ │ ├── testplatform.vcxproj │ │ │ │ │ │ │ │ └── testplatform.vcxproj.filters │ │ │ │ │ │ │ │ ├── testpower │ │ │ │ │ │ │ │ ├── testpower.vcxproj │ │ │ │ │ │ │ │ └── testpower.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrelative │ │ │ │ │ │ │ │ ├── testrelative.vcxproj │ │ │ │ │ │ │ │ └── testrelative.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ │ │ │ ├── testrendercopyex.vcxproj │ │ │ │ │ │ │ │ └── testrendercopyex.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrendertarget │ │ │ │ │ │ │ │ ├── testrendertarget.vcxproj │ │ │ │ │ │ │ │ └── testrendertarget.vcxproj.filters │ │ │ │ │ │ │ │ ├── testresample │ │ │ │ │ │ │ │ ├── testresample.vcxproj │ │ │ │ │ │ │ │ └── testresample.vcxproj.filters │ │ │ │ │ │ │ │ ├── testrumble │ │ │ │ │ │ │ │ ├── testrumble.vcxproj │ │ │ │ │ │ │ │ └── testrumble.vcxproj.filters │ │ │ │ │ │ │ │ ├── testscale │ │ │ │ │ │ │ │ ├── testscale.vcxproj │ │ │ │ │ │ │ │ └── testscale.vcxproj.filters │ │ │ │ │ │ │ │ ├── testsem │ │ │ │ │ │ │ │ ├── testsem.vcxproj │ │ │ │ │ │ │ │ └── testsem.vcxproj.filters │ │ │ │ │ │ │ │ ├── testshader │ │ │ │ │ │ │ │ ├── testshader.vcxproj │ │ │ │ │ │ │ │ └── testshader.vcxproj.filters │ │ │ │ │ │ │ │ ├── testshape │ │ │ │ │ │ │ │ ├── testshape.vcxproj │ │ │ │ │ │ │ │ └── testshape.vcxproj.filters │ │ │ │ │ │ │ │ ├── testsprite2 │ │ │ │ │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ │ │ │ │ └── testsprite2.vcxproj.filters │ │ │ │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ │ │ │ ├── testspriteminimal.vcxproj │ │ │ │ │ │ │ │ └── testspriteminimal.vcxproj.filters │ │ │ │ │ │ │ │ ├── teststreaming │ │ │ │ │ │ │ │ ├── teststreaming.vcxproj │ │ │ │ │ │ │ │ └── teststreaming.vcxproj.filters │ │ │ │ │ │ │ │ ├── testthread │ │ │ │ │ │ │ │ ├── testthread.vcxproj │ │ │ │ │ │ │ │ └── testthread.vcxproj.filters │ │ │ │ │ │ │ │ ├── testtimer │ │ │ │ │ │ │ │ ├── testtimer.vcxproj │ │ │ │ │ │ │ │ └── testtimer.vcxproj.filters │ │ │ │ │ │ │ │ ├── testver │ │ │ │ │ │ │ │ ├── testver.vcxproj │ │ │ │ │ │ │ │ └── testver.vcxproj.filters │ │ │ │ │ │ │ │ ├── testwm2 │ │ │ │ │ │ │ │ ├── testwm2.vcxproj │ │ │ │ │ │ │ │ └── testwm2.vcxproj.filters │ │ │ │ │ │ │ │ └── torturethread │ │ │ │ │ │ │ │ ├── torturethread.vcxproj │ │ │ │ │ │ │ │ └── torturethread.vcxproj.filters │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── build.all.vs2010.bat │ │ │ │ │ │ │ ├── check.bin.compatibility.vs2010.bat │ │ │ │ │ │ │ ├── clean_premake.bat │ │ │ │ │ │ │ ├── generate.all.bat │ │ │ │ │ │ │ ├── premake4.exe │ │ │ │ │ │ │ ├── run.tests.vs2010.bat │ │ │ │ │ │ │ ├── vs2008.bat │ │ │ │ │ │ │ ├── vs2010.bat │ │ │ │ │ │ │ └── vs2012.bat │ │ │ │ │ ├── Xcode-iOS │ │ │ │ │ │ ├── Demos │ │ │ │ │ │ │ ├── accelerometer │ │ │ │ │ │ │ │ └── accelerometer.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── fireworks │ │ │ │ │ │ │ │ └── fireworks.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── happy │ │ │ │ │ │ │ │ └── happy.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ │ │ └── keyboard.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── mixer │ │ │ │ │ │ │ │ └── mixer.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── rectangles │ │ │ │ │ │ │ │ └── rectangles.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ └── touch │ │ │ │ │ │ │ │ └── touch.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── SDL.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── clean_premake.command │ │ │ │ │ │ │ ├── premake4 │ │ │ │ │ │ │ ├── xcode3.command │ │ │ │ │ │ │ └── xcode4.command │ │ │ │ │ ├── Xcode │ │ │ │ │ │ ├── Xcode3 │ │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── checkkeys │ │ │ │ │ │ │ │ └── checkkeys.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── loopwave │ │ │ │ │ │ │ │ └── loopwave.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testatomic │ │ │ │ │ │ │ │ └── testatomic.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ │ │ │ └── testaudioinfo.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testautomation │ │ │ │ │ │ │ │ └── testautomation.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testchessboard │ │ │ │ │ │ │ │ └── testchessboard.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testdraw2 │ │ │ │ │ │ │ │ └── testdraw2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testerror │ │ │ │ │ │ │ │ └── testerror.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ │ │ └── testfile.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testfilesystem │ │ │ │ │ │ │ │ └── testfilesystem.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ │ │ │ └── testgamecontroller.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgesture │ │ │ │ │ │ │ │ └── testgesture.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgl2 │ │ │ │ │ │ │ │ └── testgl2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgles │ │ │ │ │ │ │ │ └── testgles.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testhaptic │ │ │ │ │ │ │ │ └── testhaptic.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testiconv │ │ │ │ │ │ │ │ └── testiconv.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testime │ │ │ │ │ │ │ │ └── testime.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testjoystick │ │ │ │ │ │ │ │ └── testjoystick.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testkeys │ │ │ │ │ │ │ │ └── testkeys.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testloadso │ │ │ │ │ │ │ │ └── testloadso.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testlock │ │ │ │ │ │ │ │ └── testlock.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testmessage │ │ │ │ │ │ │ │ └── testmessage.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ │ │ │ └── testmultiaudio.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testnative │ │ │ │ │ │ │ │ └── testnative.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ │ │ │ └── testoverlay2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testplatform │ │ │ │ │ │ │ │ └── testplatform.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testpower │ │ │ │ │ │ │ │ └── testpower.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrelative │ │ │ │ │ │ │ │ └── testrelative.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ │ │ │ └── testrendercopyex.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrendertarget │ │ │ │ │ │ │ │ └── testrendertarget.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testresample │ │ │ │ │ │ │ │ └── testresample.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrumble │ │ │ │ │ │ │ │ └── testrumble.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testscale │ │ │ │ │ │ │ │ └── testscale.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testsem │ │ │ │ │ │ │ │ └── testsem.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testshader │ │ │ │ │ │ │ │ └── testshader.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testshape │ │ │ │ │ │ │ │ └── testshape.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testsprite2 │ │ │ │ │ │ │ │ └── testsprite2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ │ │ │ └── testspriteminimal.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── teststreaming │ │ │ │ │ │ │ │ └── teststreaming.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testthread │ │ │ │ │ │ │ │ └── testthread.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testtimer │ │ │ │ │ │ │ │ └── testtimer.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testver │ │ │ │ │ │ │ │ └── testver.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testwm2 │ │ │ │ │ │ │ │ └── testwm2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ └── torturethread │ │ │ │ │ │ │ │ └── torturethread.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── Xcode4 │ │ │ │ │ │ │ ├── SDL.xcworkspace │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ ├── SDL2 │ │ │ │ │ │ │ │ └── SDL2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL2main │ │ │ │ │ │ │ │ └── SDL2main.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL2test │ │ │ │ │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ ├── SDL_config_premake.h │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── checkkeys │ │ │ │ │ │ │ │ └── checkkeys.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── loopwave │ │ │ │ │ │ │ │ └── loopwave.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testatomic │ │ │ │ │ │ │ │ └── testatomic.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testaudioinfo │ │ │ │ │ │ │ │ └── testaudioinfo.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testautomation │ │ │ │ │ │ │ │ └── testautomation.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testchessboard │ │ │ │ │ │ │ │ └── testchessboard.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testdraw2 │ │ │ │ │ │ │ │ └── testdraw2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testerror │ │ │ │ │ │ │ │ └── testerror.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ │ │ └── testfile.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testfilesystem │ │ │ │ │ │ │ │ └── testfilesystem.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgamecontroller │ │ │ │ │ │ │ │ └── testgamecontroller.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgesture │ │ │ │ │ │ │ │ └── testgesture.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgl2 │ │ │ │ │ │ │ │ └── testgl2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testgles │ │ │ │ │ │ │ │ └── testgles.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testhaptic │ │ │ │ │ │ │ │ └── testhaptic.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testiconv │ │ │ │ │ │ │ │ └── testiconv.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testime │ │ │ │ │ │ │ │ └── testime.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testjoystick │ │ │ │ │ │ │ │ └── testjoystick.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testkeys │ │ │ │ │ │ │ │ └── testkeys.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testloadso │ │ │ │ │ │ │ │ └── testloadso.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testlock │ │ │ │ │ │ │ │ └── testlock.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testmessage │ │ │ │ │ │ │ │ └── testmessage.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testmultiaudio │ │ │ │ │ │ │ │ └── testmultiaudio.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testnative │ │ │ │ │ │ │ │ └── testnative.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testoverlay2 │ │ │ │ │ │ │ │ └── testoverlay2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testplatform │ │ │ │ │ │ │ │ └── testplatform.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testpower │ │ │ │ │ │ │ │ └── testpower.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrelative │ │ │ │ │ │ │ │ └── testrelative.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrendercopyex │ │ │ │ │ │ │ │ └── testrendercopyex.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrendertarget │ │ │ │ │ │ │ │ └── testrendertarget.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testresample │ │ │ │ │ │ │ │ └── testresample.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testrumble │ │ │ │ │ │ │ │ └── testrumble.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testscale │ │ │ │ │ │ │ │ └── testscale.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testsem │ │ │ │ │ │ │ │ └── testsem.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testshader │ │ │ │ │ │ │ │ └── testshader.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testshape │ │ │ │ │ │ │ │ └── testshape.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testsprite2 │ │ │ │ │ │ │ │ └── testsprite2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testspriteminimal │ │ │ │ │ │ │ │ └── testspriteminimal.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── teststreaming │ │ │ │ │ │ │ │ └── teststreaming.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testthread │ │ │ │ │ │ │ │ └── testthread.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testtimer │ │ │ │ │ │ │ │ └── testtimer.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testver │ │ │ │ │ │ │ │ └── testver.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ ├── testwm2 │ │ │ │ │ │ │ │ └── testwm2.xcodeproj │ │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ │ │ └── torturethread │ │ │ │ │ │ │ │ └── torturethread.xcodeproj │ │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ └── build-scripts │ │ │ │ │ │ │ ├── build.all.xcode3.i386.command │ │ │ │ │ │ │ ├── build.all.xcode3.x86_64.command │ │ │ │ │ │ │ ├── build.all.xcode4.i386.command │ │ │ │ │ │ │ ├── build.all.xcode4.x86_64.command │ │ │ │ │ │ │ ├── clean_premake.command │ │ │ │ │ │ │ ├── premake4 │ │ │ │ │ │ │ ├── run.tests.command │ │ │ │ │ │ │ ├── xcode3.command │ │ │ │ │ │ │ └── xcode4.command │ │ │ │ │ ├── changelog │ │ │ │ │ ├── config │ │ │ │ │ │ ├── SDL_config_cygwin.template.h │ │ │ │ │ │ ├── SDL_config_iphoneos.template.h │ │ │ │ │ │ ├── SDL_config_linux.template.h │ │ │ │ │ │ ├── SDL_config_macosx.template.h │ │ │ │ │ │ ├── SDL_config_minimal.template.h │ │ │ │ │ │ └── SDL_config_windows.template.h │ │ │ │ │ ├── patches │ │ │ │ │ │ ├── 709.patch │ │ │ │ │ │ ├── 711.patch │ │ │ │ │ │ ├── 712.patch │ │ │ │ │ │ ├── 713.patch │ │ │ │ │ │ ├── iOS.patch │ │ │ │ │ │ └── premake.patches.txt │ │ │ │ │ ├── premake4.lua │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── SDL2.lua │ │ │ │ │ │ ├── SDL2main.lua │ │ │ │ │ │ ├── SDL2test.lua │ │ │ │ │ │ ├── accelerometer.lua │ │ │ │ │ │ ├── checkkeys.lua │ │ │ │ │ │ ├── fireworks.lua │ │ │ │ │ │ ├── happy.lua │ │ │ │ │ │ ├── keyboard.lua │ │ │ │ │ │ ├── loopwave.lua │ │ │ │ │ │ ├── mixer.lua │ │ │ │ │ │ ├── rectangles.lua │ │ │ │ │ │ ├── testatomic.lua │ │ │ │ │ │ ├── testaudioinfo.lua │ │ │ │ │ │ ├── testautomation.lua │ │ │ │ │ │ ├── testdraw2.lua │ │ │ │ │ │ ├── testdrawchessboard.lua │ │ │ │ │ │ ├── testerror.lua │ │ │ │ │ │ ├── testfile.lua │ │ │ │ │ │ ├── testfilesystem.lua │ │ │ │ │ │ ├── testgamecontroller.lua │ │ │ │ │ │ ├── testgesture.lua │ │ │ │ │ │ ├── testgl2.lua │ │ │ │ │ │ ├── testgles.lua │ │ │ │ │ │ ├── testhaptic.lua │ │ │ │ │ │ ├── testiconv.lua │ │ │ │ │ │ ├── testime.lua │ │ │ │ │ │ ├── testintersection.lua │ │ │ │ │ │ ├── testjoystick.lua │ │ │ │ │ │ ├── testkeys.lua │ │ │ │ │ │ ├── testloadso.lua │ │ │ │ │ │ ├── testlock.lua │ │ │ │ │ │ ├── testmessage.lua │ │ │ │ │ │ ├── testmultiaudio.lua │ │ │ │ │ │ ├── testnative.lua │ │ │ │ │ │ ├── testoverlay2.lua │ │ │ │ │ │ ├── testplatform.lua │ │ │ │ │ │ ├── testpower.lua │ │ │ │ │ │ ├── testrelative.lua │ │ │ │ │ │ ├── testrendercopyex.lua │ │ │ │ │ │ ├── testrendertarget.lua │ │ │ │ │ │ ├── testresample.lua │ │ │ │ │ │ ├── testrumble.lua │ │ │ │ │ │ ├── testscale.lua │ │ │ │ │ │ ├── testsem.lua │ │ │ │ │ │ ├── testshader.lua │ │ │ │ │ │ ├── testshape.lua │ │ │ │ │ │ ├── testsprite2.lua │ │ │ │ │ │ ├── testspriteminimal.lua │ │ │ │ │ │ ├── teststreaming.lua │ │ │ │ │ │ ├── testthread.lua │ │ │ │ │ │ ├── testtimer.lua │ │ │ │ │ │ ├── testver.lua │ │ │ │ │ │ ├── testwm2.lua │ │ │ │ │ │ ├── torturethread.lua │ │ │ │ │ │ └── touch.lua │ │ │ │ │ └── util │ │ │ │ │ │ ├── sdl_check_compile.lua │ │ │ │ │ │ ├── sdl_dependency_checkers.lua │ │ │ │ │ │ ├── sdl_depends.lua │ │ │ │ │ │ ├── sdl_file.lua │ │ │ │ │ │ ├── sdl_gen_config.lua │ │ │ │ │ │ ├── sdl_projects.lua │ │ │ │ │ │ └── sdl_string.lua │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── SDL_coreaudio.m │ │ │ │ │ │ ├── directsound │ │ │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ │ │ └── SDL_directsound.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 │ │ │ │ │ │ ├── nacl │ │ │ │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ │ │ │ └── SDL_naclaudio.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.h │ │ │ │ │ │ │ ├── SDL_xaudio2_winrthelpers.cpp │ │ │ │ │ │ │ └── SDL_xaudio2_winrthelpers.h │ │ │ │ │ ├── core │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ │ │ └── SDL_android.h │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ │ │ ├── SDL_fcitx.c │ │ │ │ │ │ │ ├── SDL_fcitx.h │ │ │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ │ │ ├── SDL_ime.c │ │ │ │ │ │ │ ├── SDL_ime.h │ │ │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ │ │ └── SDL_udev.h │ │ │ │ │ │ ├── windows │ │ │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ │ │ └── SDL_xinput.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 │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ │ │ ├── cocoa │ │ │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ │ │ ├── haiku │ │ │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ │ │ ├── nacl │ │ │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ │ │ ├── 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_dinputhaptic.c │ │ │ │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ │ │ │ └── SDL_xinputhaptic_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 │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ │ │ ├── psp │ │ │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ │ │ ├── sort_controllers.py │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── k_tan.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 │ │ │ │ │ │ └── s_tan.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 │ │ │ │ │ │ ├── nacl │ │ │ │ │ │ │ └── SDL_nacl_main.c │ │ │ │ │ │ ├── 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_androidmessagebox.c │ │ │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ │ │ ├── SDL_androidmouse.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 │ │ │ │ │ │ ├── nacl │ │ │ │ │ │ ├── SDL_naclevents.c │ │ │ │ │ │ ├── SDL_naclevents_c.h │ │ │ │ │ │ ├── SDL_naclglue.c │ │ │ │ │ │ ├── SDL_naclopengles.c │ │ │ │ │ │ ├── SDL_naclopengles.h │ │ │ │ │ │ ├── SDL_naclvideo.c │ │ │ │ │ │ ├── SDL_naclvideo.h │ │ │ │ │ │ ├── SDL_naclwindow.c │ │ │ │ │ │ └── SDL_naclwindow.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_uikitclipboard.h │ │ │ │ │ │ ├── SDL_uikitclipboard.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 │ │ │ │ │ │ ├── vivante │ │ │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ │ │ └── SDL_vivantevideo.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_winrtgamebar.cpp │ │ │ │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ │ │ │ ├── SDL_winrtmessagebox.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── loopwavequeue.c │ │ │ │ │ ├── moose.dat │ │ │ │ │ ├── nacl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── background.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── 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 │ │ │ │ │ ├── testaudiocapture.c │ │ │ │ │ ├── testaudiohotplug.c │ │ │ │ │ ├── testaudioinfo.c │ │ │ │ │ ├── testautomation.c │ │ │ │ │ ├── testautomation_audio.c │ │ │ │ │ ├── testautomation_clipboard.c │ │ │ │ │ ├── testautomation_events.c │ │ │ │ │ ├── testautomation_hints.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 │ │ │ │ │ ├── testbounds.c │ │ │ │ │ ├── testcustomcursor.c │ │ │ │ │ ├── testdisplayinfo.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 │ │ │ │ │ ├── testhittesting.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 │ │ │ │ │ ├── testqsort.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 │ │ │ │ └── visualtest │ │ │ │ │ ├── COPYING.txt │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── acinclude.m4 │ │ │ │ │ ├── autogen.sh │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── configs │ │ │ │ │ ├── testsprite2_blendmodes │ │ │ │ │ │ ├── testsprite2_blendmodes.actions │ │ │ │ │ │ ├── testsprite2_blendmodes.config │ │ │ │ │ │ └── testsprite2_blendmodes.parameters │ │ │ │ │ ├── testsprite2_crashtest │ │ │ │ │ │ ├── testsprite2_crashtest.actions │ │ │ │ │ │ ├── testsprite2_crashtest.config │ │ │ │ │ │ └── testsprite2_crashtest.parameters │ │ │ │ │ ├── testsprite2_fullscreen │ │ │ │ │ │ ├── testsprite2_fullscreen.actions │ │ │ │ │ │ ├── testsprite2_fullscreen.config │ │ │ │ │ │ └── testsprite2_fullscreen.parameters │ │ │ │ │ └── testsprite2_geometry │ │ │ │ │ │ ├── testsprite2_geometry.actions │ │ │ │ │ │ ├── testsprite2_geometry.config │ │ │ │ │ │ └── testsprite2_geometry.parameters │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── docs │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── html │ │ │ │ │ │ ├── _s_d_l__visualtest__action__configparser_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__action__configparser_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__exhaustive__variator_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__exhaustive__variator_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__harness__argparser_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__harness__argparser_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__mischelper_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__parsehelper_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__parsehelper_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__process_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__process_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__random__variator_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__random__variator_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__rwhelper_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__screenshot_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__screenshot_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__sut__configparser_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__sut__configparser_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__variator__common_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__variator__common_8h_source.html │ │ │ │ │ │ ├── _s_d_l__visualtest__variators_8h.html │ │ │ │ │ │ ├── _s_d_l__visualtest__variators_8h_source.html │ │ │ │ │ │ ├── action__configparser_8c.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── config_8h_source.html │ │ │ │ │ │ ├── dir_244674c763b96fdad0a6ffe8d0250e08.html │ │ │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ │ │ │ ├── dir_88e6415a3128b404f1102a130772bdb6.html │ │ │ │ │ │ ├── dir_a18918b93668b435612395bbc2e8b82b.html │ │ │ │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ │ │ │ ├── dir_f584182df4c69fab0b14563b4d535158.html │ │ │ │ │ │ ├── dir_fe549de2418b81853b5f194edb4a7f34.html │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_type.html │ │ │ │ │ │ ├── harness__argparser_8c.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── linux__process_8c.html │ │ │ │ │ │ ├── mischelper_8c.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── parsehelper_8c.html │ │ │ │ │ │ ├── rwhelper_8c.html │ │ │ │ │ │ ├── screenshot_8c.html │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── all_61.html │ │ │ │ │ │ │ ├── all_61.js │ │ │ │ │ │ │ ├── all_62.html │ │ │ │ │ │ │ ├── all_62.js │ │ │ │ │ │ │ ├── all_63.html │ │ │ │ │ │ │ ├── all_63.js │ │ │ │ │ │ │ ├── all_64.html │ │ │ │ │ │ │ ├── all_64.js │ │ │ │ │ │ │ ├── all_65.html │ │ │ │ │ │ │ ├── all_65.js │ │ │ │ │ │ │ ├── all_66.html │ │ │ │ │ │ │ ├── all_66.js │ │ │ │ │ │ │ ├── all_68.html │ │ │ │ │ │ │ ├── all_68.js │ │ │ │ │ │ │ ├── all_69.html │ │ │ │ │ │ │ ├── all_69.js │ │ │ │ │ │ │ ├── all_6b.html │ │ │ │ │ │ │ ├── all_6b.js │ │ │ │ │ │ │ ├── all_6c.html │ │ │ │ │ │ │ ├── all_6c.js │ │ │ │ │ │ │ ├── all_6d.html │ │ │ │ │ │ │ ├── all_6d.js │ │ │ │ │ │ │ ├── all_6e.html │ │ │ │ │ │ │ ├── all_6e.js │ │ │ │ │ │ │ ├── all_6f.html │ │ │ │ │ │ │ ├── all_6f.js │ │ │ │ │ │ │ ├── all_70.html │ │ │ │ │ │ │ ├── all_70.js │ │ │ │ │ │ │ ├── all_72.html │ │ │ │ │ │ │ ├── all_72.js │ │ │ │ │ │ │ ├── all_73.html │ │ │ │ │ │ │ ├── all_73.js │ │ │ │ │ │ │ ├── all_74.html │ │ │ │ │ │ │ ├── all_74.js │ │ │ │ │ │ │ ├── all_76.html │ │ │ │ │ │ │ ├── all_76.js │ │ │ │ │ │ │ ├── all_77.html │ │ │ │ │ │ │ ├── all_77.js │ │ │ │ │ │ │ ├── classes_73.html │ │ │ │ │ │ │ ├── classes_73.js │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── defines_61.html │ │ │ │ │ │ │ ├── defines_61.js │ │ │ │ │ │ │ ├── defines_64.html │ │ │ │ │ │ │ ├── defines_64.js │ │ │ │ │ │ │ ├── defines_6b.html │ │ │ │ │ │ │ ├── defines_6b.js │ │ │ │ │ │ │ ├── defines_6d.html │ │ │ │ │ │ │ ├── defines_6d.js │ │ │ │ │ │ │ ├── defines_73.html │ │ │ │ │ │ │ ├── defines_73.js │ │ │ │ │ │ │ ├── defines_74.html │ │ │ │ │ │ │ ├── defines_74.js │ │ │ │ │ │ │ ├── enums_73.html │ │ │ │ │ │ │ ├── enums_73.js │ │ │ │ │ │ │ ├── enumvalues_73.html │ │ │ │ │ │ │ ├── enumvalues_73.js │ │ │ │ │ │ │ ├── files_61.html │ │ │ │ │ │ │ ├── files_61.js │ │ │ │ │ │ │ ├── files_68.html │ │ │ │ │ │ │ ├── files_68.js │ │ │ │ │ │ │ ├── files_6c.html │ │ │ │ │ │ │ ├── files_6c.js │ │ │ │ │ │ │ ├── files_6d.html │ │ │ │ │ │ │ ├── files_6d.js │ │ │ │ │ │ │ ├── files_70.html │ │ │ │ │ │ │ ├── files_70.js │ │ │ │ │ │ │ ├── files_72.html │ │ │ │ │ │ │ ├── files_72.js │ │ │ │ │ │ │ ├── files_73.html │ │ │ │ │ │ │ ├── files_73.js │ │ │ │ │ │ │ ├── files_74.html │ │ │ │ │ │ │ ├── files_74.js │ │ │ │ │ │ │ ├── files_76.html │ │ │ │ │ │ │ ├── files_76.js │ │ │ │ │ │ │ ├── files_77.html │ │ │ │ │ │ │ ├── files_77.js │ │ │ │ │ │ │ ├── functions_6d.html │ │ │ │ │ │ │ ├── functions_6d.js │ │ │ │ │ │ │ ├── functions_73.html │ │ │ │ │ │ │ ├── functions_73.js │ │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ │ ├── pages_76.html │ │ │ │ │ │ │ ├── pages_76.js │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ │ ├── typedefs_73.html │ │ │ │ │ │ │ ├── typedefs_73.js │ │ │ │ │ │ │ ├── variables_61.html │ │ │ │ │ │ │ ├── variables_61.js │ │ │ │ │ │ │ ├── variables_62.html │ │ │ │ │ │ │ ├── variables_62.js │ │ │ │ │ │ │ ├── variables_63.html │ │ │ │ │ │ │ ├── variables_63.js │ │ │ │ │ │ │ ├── variables_64.html │ │ │ │ │ │ │ ├── variables_64.js │ │ │ │ │ │ │ ├── variables_65.html │ │ │ │ │ │ │ ├── variables_65.js │ │ │ │ │ │ │ ├── variables_66.html │ │ │ │ │ │ │ ├── variables_66.js │ │ │ │ │ │ │ ├── variables_69.html │ │ │ │ │ │ │ ├── variables_69.js │ │ │ │ │ │ │ ├── variables_6d.html │ │ │ │ │ │ │ ├── variables_6d.js │ │ │ │ │ │ │ ├── variables_6e.html │ │ │ │ │ │ │ ├── variables_6e.js │ │ │ │ │ │ │ ├── variables_6f.html │ │ │ │ │ │ │ ├── variables_6f.js │ │ │ │ │ │ │ ├── variables_70.html │ │ │ │ │ │ │ ├── variables_70.js │ │ │ │ │ │ │ ├── variables_72.html │ │ │ │ │ │ │ ├── variables_72.js │ │ │ │ │ │ │ ├── variables_73.html │ │ │ │ │ │ │ ├── variables_73.js │ │ │ │ │ │ │ ├── variables_74.html │ │ │ │ │ │ │ ├── variables_74.js │ │ │ │ │ │ │ ├── variables_76.html │ │ │ │ │ │ │ └── variables_76.js │ │ │ │ │ │ ├── struct_s_d_l___process_exit_status.html │ │ │ │ │ │ ├── struct_s_d_l___process_info.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action_node.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action_queue.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___exhaustive_variator.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___harness_state.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___r_w_helper_buffer.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___random_variator.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_config.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_int_range.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_option.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___variation.html │ │ │ │ │ │ ├── struct_s_d_l_visual_test___variator.html │ │ │ │ │ │ ├── sut__configparser_8c.html │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ ├── tabs.css │ │ │ │ │ │ ├── testharness_8c.html │ │ │ │ │ │ ├── union_s_d_l_visual_test___s_u_t_option_value.html │ │ │ │ │ │ ├── variator__common_8c.html │ │ │ │ │ │ ├── variator__exhaustive_8c.html │ │ │ │ │ │ ├── variator__random_8c.html │ │ │ │ │ │ ├── variators_8c.html │ │ │ │ │ │ ├── windows__process_8c.html │ │ │ │ │ │ └── windows__screenshot_8c.html │ │ │ │ │ └── latex │ │ │ │ │ │ ├── _s_d_l__visualtest__action__configparser_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__exhaustive__variator_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__harness__argparser_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__parsehelper_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__process_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__random__variator_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__screenshot_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__sut__configparser_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__variator__common_8h.tex │ │ │ │ │ │ ├── _s_d_l__visualtest__variators_8h.tex │ │ │ │ │ │ ├── action__configparser_8c.tex │ │ │ │ │ │ ├── annotated.tex │ │ │ │ │ │ ├── dir_244674c763b96fdad0a6ffe8d0250e08.tex │ │ │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.tex │ │ │ │ │ │ ├── dir_88e6415a3128b404f1102a130772bdb6.tex │ │ │ │ │ │ ├── dir_a18918b93668b435612395bbc2e8b82b.tex │ │ │ │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.tex │ │ │ │ │ │ ├── dir_f584182df4c69fab0b14563b4d535158.tex │ │ │ │ │ │ ├── dir_fe549de2418b81853b5f194edb4a7f34.tex │ │ │ │ │ │ ├── doxygen.sty │ │ │ │ │ │ ├── files.tex │ │ │ │ │ │ ├── harness__argparser_8c.tex │ │ │ │ │ │ ├── index.tex │ │ │ │ │ │ ├── linux__process_8c.tex │ │ │ │ │ │ ├── make.bat │ │ │ │ │ │ ├── mischelper_8c.tex │ │ │ │ │ │ ├── parsehelper_8c.tex │ │ │ │ │ │ ├── refman.tex │ │ │ │ │ │ ├── rwhelper_8c.tex │ │ │ │ │ │ ├── screenshot_8c.tex │ │ │ │ │ │ ├── struct_s_d_l___process_exit_status.tex │ │ │ │ │ │ ├── struct_s_d_l___process_info.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action_node.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___action_queue.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___exhaustive_variator.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___harness_state.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___r_w_helper_buffer.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___random_variator.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_config.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_int_range.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___s_u_t_option.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___variation.tex │ │ │ │ │ │ ├── struct_s_d_l_visual_test___variator.tex │ │ │ │ │ │ ├── sut__configparser_8c.tex │ │ │ │ │ │ ├── testharness_8c.tex │ │ │ │ │ │ ├── union_s_d_l_visual_test___s_u_t_option_value.tex │ │ │ │ │ │ ├── variator__common_8c.tex │ │ │ │ │ │ ├── variator__exhaustive_8c.tex │ │ │ │ │ │ ├── variator__random_8c.tex │ │ │ │ │ │ ├── variators_8c.tex │ │ │ │ │ │ ├── windows__process_8c.tex │ │ │ │ │ │ └── windows__screenshot_8c.tex │ │ │ │ │ ├── include │ │ │ │ │ ├── SDL_visualtest_action_configparser.h │ │ │ │ │ ├── SDL_visualtest_exhaustive_variator.h │ │ │ │ │ ├── SDL_visualtest_harness_argparser.h │ │ │ │ │ ├── SDL_visualtest_mischelper.h │ │ │ │ │ ├── SDL_visualtest_parsehelper.h │ │ │ │ │ ├── SDL_visualtest_process.h │ │ │ │ │ ├── SDL_visualtest_random_variator.h │ │ │ │ │ ├── SDL_visualtest_rwhelper.h │ │ │ │ │ ├── SDL_visualtest_screenshot.h │ │ │ │ │ ├── SDL_visualtest_sut_configparser.h │ │ │ │ │ ├── SDL_visualtest_variator_common.h │ │ │ │ │ └── SDL_visualtest_variators.h │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── launch_harness.cmd │ │ │ │ │ ├── launch_harness.sh │ │ │ │ │ ├── missing │ │ │ │ │ ├── src │ │ │ │ │ ├── action_configparser.c │ │ │ │ │ ├── harness_argparser.c │ │ │ │ │ ├── linux │ │ │ │ │ │ └── linux_process.c │ │ │ │ │ ├── mischelper.c │ │ │ │ │ ├── parsehelper.c │ │ │ │ │ ├── rwhelper.c │ │ │ │ │ ├── screenshot.c │ │ │ │ │ ├── sut_configparser.c │ │ │ │ │ ├── testharness.c │ │ │ │ │ ├── variator_common.c │ │ │ │ │ ├── variator_exhaustive.c │ │ │ │ │ ├── variator_random.c │ │ │ │ │ ├── variators.c │ │ │ │ │ └── windows │ │ │ │ │ │ ├── windows_process.c │ │ │ │ │ │ └── windows_screenshot.c │ │ │ │ │ ├── stamp-h1 │ │ │ │ │ ├── testsprite2_sample.actions │ │ │ │ │ ├── testsprite2_sample.config │ │ │ │ │ ├── testsprite2_sample.parameters │ │ │ │ │ └── unittest │ │ │ │ │ ├── testquit.actions │ │ │ │ │ ├── testquit.c │ │ │ │ │ ├── testquit.config │ │ │ │ │ └── testquit.parameters │ │ │ ├── freetype2-android │ │ │ │ ├── .gitignore │ │ │ │ ├── Android.mk │ │ │ │ ├── Android │ │ │ │ │ └── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ ├── Application.mk │ │ │ │ │ │ └── module.mk │ │ │ │ ├── FTL.txt │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── pcftypes.h │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ └── src │ │ │ │ │ ├── autofit │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── afangles.c │ │ │ │ │ ├── afangles.h │ │ │ │ │ ├── afcjk.c │ │ │ │ │ ├── afcjk.h │ │ │ │ │ ├── afdummy.c │ │ │ │ │ ├── afdummy.h │ │ │ │ │ ├── aferrors.h │ │ │ │ │ ├── afglobal.c │ │ │ │ │ ├── afglobal.h │ │ │ │ │ ├── afhints.c │ │ │ │ │ ├── afhints.h │ │ │ │ │ ├── afindic.c │ │ │ │ │ ├── afindic.h │ │ │ │ │ ├── aflatin.c │ │ │ │ │ ├── aflatin.h │ │ │ │ │ ├── aflatin2.c │ │ │ │ │ ├── aflatin2.h │ │ │ │ │ ├── afloader.c │ │ │ │ │ ├── afloader.h │ │ │ │ │ ├── afmodule.c │ │ │ │ │ ├── afmodule.h │ │ │ │ │ ├── afpic.c │ │ │ │ │ ├── afpic.h │ │ │ │ │ ├── aftypes.h │ │ │ │ │ ├── afwarp.c │ │ │ │ │ ├── afwarp.h │ │ │ │ │ ├── autofit.c │ │ │ │ │ ├── module.mk │ │ │ │ │ └── rules.mk │ │ │ │ │ ├── base │ │ │ │ │ ├── basepic.c │ │ │ │ │ ├── basepic.h │ │ │ │ │ ├── ftadvanc.c │ │ │ │ │ ├── ftapi.c │ │ │ │ │ ├── ftbase.c │ │ │ │ │ ├── ftbase.h │ │ │ │ │ ├── ftbbox.c │ │ │ │ │ ├── ftbitmap.c │ │ │ │ │ ├── ftcalc.c │ │ │ │ │ ├── ftdbgmem.c │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ ├── ftgloadr.c │ │ │ │ │ ├── ftglyph.c │ │ │ │ │ ├── ftinit.c │ │ │ │ │ ├── ftobjs.c │ │ │ │ │ ├── ftoutln.c │ │ │ │ │ ├── ftpic.c │ │ │ │ │ ├── ftrfork.c │ │ │ │ │ ├── ftsnames.c │ │ │ │ │ ├── ftstream.c │ │ │ │ │ ├── ftstroke.c │ │ │ │ │ ├── ftsynth.c │ │ │ │ │ ├── ftsystem.c │ │ │ │ │ ├── fttrigon.c │ │ │ │ │ └── ftutil.c │ │ │ │ │ ├── cff │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── cff.c │ │ │ │ │ ├── cffcmap.c │ │ │ │ │ ├── cffcmap.h │ │ │ │ │ ├── cffdrivr.c │ │ │ │ │ ├── cffdrivr.h │ │ │ │ │ ├── cfferrs.h │ │ │ │ │ ├── cffgload.c │ │ │ │ │ ├── cffgload.h │ │ │ │ │ ├── cffload.c │ │ │ │ │ ├── cffload.h │ │ │ │ │ ├── cffobjs.c │ │ │ │ │ ├── cffobjs.h │ │ │ │ │ ├── cffparse.c │ │ │ │ │ ├── cffparse.h │ │ │ │ │ ├── cffpic.c │ │ │ │ │ ├── cffpic.h │ │ │ │ │ ├── cfftoken.h │ │ │ │ │ ├── cfftypes.h │ │ │ │ │ ├── module.mk │ │ │ │ │ └── rules.mk │ │ │ │ │ ├── pshinter │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── pshalgo.c │ │ │ │ │ ├── pshalgo.h │ │ │ │ │ ├── pshglob.c │ │ │ │ │ ├── pshglob.h │ │ │ │ │ ├── pshinter.c │ │ │ │ │ ├── pshmod.c │ │ │ │ │ ├── pshmod.h │ │ │ │ │ ├── pshnterr.h │ │ │ │ │ ├── pshpic.c │ │ │ │ │ ├── pshpic.h │ │ │ │ │ ├── pshrec.c │ │ │ │ │ ├── pshrec.h │ │ │ │ │ └── rules.mk │ │ │ │ │ ├── psnames │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── psmodule.c │ │ │ │ │ ├── psmodule.h │ │ │ │ │ ├── psnamerr.h │ │ │ │ │ ├── psnames.c │ │ │ │ │ ├── pspic.c │ │ │ │ │ ├── pspic.h │ │ │ │ │ ├── pstables.h │ │ │ │ │ └── rules.mk │ │ │ │ │ ├── raster │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── ftmisc.h │ │ │ │ │ ├── ftraster.c │ │ │ │ │ ├── ftraster.h │ │ │ │ │ ├── ftrend1.c │ │ │ │ │ ├── ftrend1.h │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── raster.c │ │ │ │ │ ├── rasterrs.h │ │ │ │ │ ├── rastpic.c │ │ │ │ │ ├── rastpic.h │ │ │ │ │ └── rules.mk │ │ │ │ │ ├── sfnt │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── rules.mk │ │ │ │ │ ├── sfdriver.c │ │ │ │ │ ├── sfdriver.h │ │ │ │ │ ├── sferrors.h │ │ │ │ │ ├── sfnt.c │ │ │ │ │ ├── sfntpic.c │ │ │ │ │ ├── sfntpic.h │ │ │ │ │ ├── sfobjs.c │ │ │ │ │ ├── sfobjs.h │ │ │ │ │ ├── ttbdf.c │ │ │ │ │ ├── ttbdf.h │ │ │ │ │ ├── ttcmap.c │ │ │ │ │ ├── ttcmap.h │ │ │ │ │ ├── ttcmapc.h │ │ │ │ │ ├── ttkern.c │ │ │ │ │ ├── ttkern.h │ │ │ │ │ ├── ttload.c │ │ │ │ │ ├── ttload.h │ │ │ │ │ ├── ttmtx.c │ │ │ │ │ ├── ttmtx.h │ │ │ │ │ ├── ttpost.c │ │ │ │ │ ├── ttpost.h │ │ │ │ │ ├── ttsbit.c │ │ │ │ │ ├── ttsbit.h │ │ │ │ │ └── ttsbit0.c │ │ │ │ │ ├── smooth │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── ftgrays.c │ │ │ │ │ ├── ftgrays.h │ │ │ │ │ ├── ftsmerrs.h │ │ │ │ │ ├── ftsmooth.c │ │ │ │ │ ├── ftsmooth.h │ │ │ │ │ ├── ftspic.c │ │ │ │ │ ├── ftspic.h │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── rules.mk │ │ │ │ │ └── smooth.c │ │ │ │ │ └── truetype │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── module.mk │ │ │ │ │ ├── rules.mk │ │ │ │ │ ├── truetype.c │ │ │ │ │ ├── ttdriver.c │ │ │ │ │ ├── ttdriver.h │ │ │ │ │ ├── tterrors.h │ │ │ │ │ ├── ttgload.c │ │ │ │ │ ├── ttgload.h │ │ │ │ │ ├── ttgxvar.c │ │ │ │ │ ├── ttgxvar.h │ │ │ │ │ ├── ttinterp.c │ │ │ │ │ ├── ttinterp.h │ │ │ │ │ ├── ttobjs.c │ │ │ │ │ ├── ttobjs.h │ │ │ │ │ ├── ttpic.c │ │ │ │ │ ├── ttpic.h │ │ │ │ │ ├── ttpload.c │ │ │ │ │ └── ttpload.h │ │ │ ├── libmodplug-0.8.8.4 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.status │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── libmodplug.pc │ │ │ │ ├── libmodplug.pc.in │ │ │ │ ├── libtool │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ └── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── fastmix.cpp │ │ │ │ │ ├── libmodplug.la │ │ │ │ │ ├── libmodplug │ │ │ │ │ ├── it_defs.h │ │ │ │ │ ├── sndfile.h │ │ │ │ │ └── stdafx.h │ │ │ │ │ ├── load_669.cpp │ │ │ │ │ ├── load_abc.cpp │ │ │ │ │ ├── load_amf.cpp │ │ │ │ │ ├── load_ams.cpp │ │ │ │ │ ├── load_dbm.cpp │ │ │ │ │ ├── load_dmf.cpp │ │ │ │ │ ├── load_dsm.cpp │ │ │ │ │ ├── load_far.cpp │ │ │ │ │ ├── load_it.cpp │ │ │ │ │ ├── load_j2b.cpp │ │ │ │ │ ├── load_mdl.cpp │ │ │ │ │ ├── load_med.cpp │ │ │ │ │ ├── load_mid.cpp │ │ │ │ │ ├── load_mod.cpp │ │ │ │ │ ├── load_mt2.cpp │ │ │ │ │ ├── load_mtm.cpp │ │ │ │ │ ├── load_okt.cpp │ │ │ │ │ ├── load_pat.cpp │ │ │ │ │ ├── load_pat.h │ │ │ │ │ ├── load_psm.cpp │ │ │ │ │ ├── load_ptm.cpp │ │ │ │ │ ├── load_s3m.cpp │ │ │ │ │ ├── load_stm.cpp │ │ │ │ │ ├── load_ult.cpp │ │ │ │ │ ├── load_umx.cpp │ │ │ │ │ ├── load_wav.cpp │ │ │ │ │ ├── load_xm.cpp │ │ │ │ │ ├── mmcmp.cpp │ │ │ │ │ ├── modplug.cpp │ │ │ │ │ ├── modplug.h │ │ │ │ │ ├── snd_dsp.cpp │ │ │ │ │ ├── snd_flt.cpp │ │ │ │ │ ├── snd_fx.cpp │ │ │ │ │ ├── sndfile.cpp │ │ │ │ │ ├── sndmix.cpp │ │ │ │ │ ├── stamp-h1 │ │ │ │ │ └── tables.h │ │ │ ├── libogg-1.3.2 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── ogg │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── config_types.h │ │ │ │ │ │ ├── config_types.h.in │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ ├── install-sh │ │ │ │ ├── libogg.spec.in │ │ │ │ ├── macosx │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Ogg.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── Ogg_Prefix.pch │ │ │ │ ├── missing │ │ │ │ ├── ogg-uninstalled.pc.in │ │ │ │ ├── ogg.m4 │ │ │ │ ├── ogg.pc.in │ │ │ │ └── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bitwise.c │ │ │ │ │ └── framing.c │ │ │ ├── libtheora-1.2.0alpha1 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.Android.md │ │ │ │ ├── config.h │ │ │ │ ├── configure_android.sh │ │ │ │ ├── include │ │ │ │ │ └── theora │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── theora.h │ │ │ │ │ │ ├── theoradec.h │ │ │ │ │ │ └── theoraenc.h │ │ │ │ └── ndkenv.sh │ │ │ ├── libvorbis-1.3.5 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── autogen.sh │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── chaining_example.c │ │ │ │ │ ├── decoder_example.c │ │ │ │ │ ├── encoder_example.c │ │ │ │ │ ├── frameview.pl │ │ │ │ │ ├── seeking_example.c │ │ │ │ │ └── vorbisfile_example.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ ├── install-sh │ │ │ │ ├── libvorbis.spec.in │ │ │ │ ├── m4 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── add_cflags.m4 │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── macos │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── strdup.c │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── decoder_example.mcp │ │ │ │ │ ├── encoder_example.mcp │ │ │ │ │ ├── libvorbis.mcp │ │ │ │ │ ├── libvorbis.mcp.exp │ │ │ │ │ ├── libvorbisenc.mcp │ │ │ │ │ ├── libvorbisenc.mcp.exp │ │ │ │ │ ├── libvorbisfile.mcp │ │ │ │ │ ├── libvorbisfile.mcp.exp │ │ │ │ │ └── vorbis.mcp │ │ │ │ ├── macosx │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Vorbis.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── missing │ │ │ │ ├── symbian │ │ │ │ │ ├── bld.inf │ │ │ │ │ ├── config.h │ │ │ │ │ └── vorbis.mmp │ │ │ │ ├── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── test.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── util.h │ │ │ │ │ ├── write_read.c │ │ │ │ │ └── write_read.h │ │ │ │ ├── todo.txt │ │ │ │ ├── vorbis-uninstalled.pc.in │ │ │ │ ├── vorbis.m4 │ │ │ │ ├── vorbis.pc.in │ │ │ │ ├── vorbisenc-uninstalled.pc.in │ │ │ │ ├── vorbisenc.pc.in │ │ │ │ ├── vorbisfile-uninstalled.pc.in │ │ │ │ ├── vorbisfile.pc.in │ │ │ │ └── vq │ │ │ │ │ ├── 16.vqs │ │ │ │ │ ├── 16u.vqs │ │ │ │ │ ├── 44c-1.vqs │ │ │ │ │ ├── 44c0.vqs │ │ │ │ │ ├── 44c1.vqs │ │ │ │ │ ├── 44c2.vqs │ │ │ │ │ ├── 44c3.vqs │ │ │ │ │ ├── 44c4.vqs │ │ │ │ │ ├── 44c5.vqs │ │ │ │ │ ├── 44c6.vqs │ │ │ │ │ ├── 44c7.vqs │ │ │ │ │ ├── 44c8.vqs │ │ │ │ │ ├── 44c9.vqs │ │ │ │ │ ├── 44p-1.vqs │ │ │ │ │ ├── 44p0.vqs │ │ │ │ │ ├── 44p1.vqs │ │ │ │ │ ├── 44p2.vqs │ │ │ │ │ ├── 44p3.vqs │ │ │ │ │ ├── 44p4.vqs │ │ │ │ │ ├── 44p5.vqs │ │ │ │ │ ├── 44p6.vqs │ │ │ │ │ ├── 44p7.vqs │ │ │ │ │ ├── 44p8.vqs │ │ │ │ │ ├── 44p9.vqs │ │ │ │ │ ├── 44u0.vqs │ │ │ │ │ ├── 44u1.vqs │ │ │ │ │ ├── 44u2.vqs │ │ │ │ │ ├── 44u3.vqs │ │ │ │ │ ├── 44u4.vqs │ │ │ │ │ ├── 44u5.vqs │ │ │ │ │ ├── 44u6.vqs │ │ │ │ │ ├── 44u7.vqs │ │ │ │ │ ├── 44u8.vqs │ │ │ │ │ ├── 44u9.vqs │ │ │ │ │ ├── 8.vqs │ │ │ │ │ ├── 8u.vqs │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bookutil.c │ │ │ │ │ ├── bookutil.h │ │ │ │ │ ├── distribution.c │ │ │ │ │ ├── floor_11.vqs │ │ │ │ │ ├── floor_22.vqs │ │ │ │ │ ├── floor_44.vqs │ │ │ │ │ ├── huffbuild.c │ │ │ │ │ ├── latticebuild.c │ │ │ │ │ ├── latticetune.c │ │ │ │ │ ├── localcodebook.h │ │ │ │ │ ├── make_floor_books.pl │ │ │ │ │ ├── make_residue_books.pl │ │ │ │ │ ├── metrics.c │ │ │ │ │ ├── vqgen.c │ │ │ │ │ └── vqgen.h │ │ │ ├── love │ │ │ │ ├── .hg_archival.txt │ │ │ │ ├── .hgignore │ │ │ │ ├── .hgtags │ │ │ │ ├── Android.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bitbucket-pipelines.yml │ │ │ │ ├── changes.txt │ │ │ │ ├── extra │ │ │ │ │ ├── appveyor │ │ │ │ │ │ └── appveyor.yml │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── FindLuaJIT.cmake │ │ │ │ │ │ ├── FindMPG123.cmake │ │ │ │ │ │ ├── FindModPlug.cmake │ │ │ │ │ │ ├── FindSDL2.cmake │ │ │ │ │ │ ├── FindTheora.cmake │ │ │ │ │ │ └── FindVorbis.cmake │ │ │ │ │ ├── nsis │ │ │ │ │ │ ├── game.ico │ │ │ │ │ │ ├── left.bmp │ │ │ │ │ │ ├── love.ico │ │ │ │ │ │ ├── love.nsi │ │ │ │ │ │ └── top.bmp │ │ │ │ │ ├── reshax │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── knoll1.png │ │ │ │ │ │ │ ├── planet.png │ │ │ │ │ │ │ └── star1.png │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── Vera.ttf │ │ │ │ │ │ ├── b64.lua │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ └── pig.png │ │ │ │ │ └── windows │ │ │ │ │ │ ├── love.ico │ │ │ │ │ │ └── love.rc │ │ │ │ ├── license.txt │ │ │ │ ├── platform │ │ │ │ │ ├── macosx │ │ │ │ │ │ ├── Info-Framework.plist │ │ │ │ │ │ ├── OSX.h │ │ │ │ │ │ ├── OSX.mm │ │ │ │ │ │ ├── dmg │ │ │ │ │ │ │ ├── DS_Store │ │ │ │ │ │ │ ├── VolumeIcon.icns │ │ │ │ │ │ │ └── backgroundImage.tiff │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── Love.icns │ │ │ │ │ │ │ └── LoveDocument.icns │ │ │ │ │ │ ├── love-Info.plist │ │ │ │ │ │ ├── love-framework.xcodeproj │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ └── love.xcodeproj │ │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ │ ├── default.pbxuser │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── msvc2010 │ │ │ │ │ │ ├── liblove.vcxproj │ │ │ │ │ │ ├── liblove.vcxproj.filters │ │ │ │ │ │ ├── love.ico │ │ │ │ │ │ ├── love.rc │ │ │ │ │ │ ├── love.sln │ │ │ │ │ │ ├── love.vcxproj │ │ │ │ │ │ └── love.vcxproj.filters │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── application-x-love-game.svg │ │ │ │ │ │ ├── automagic │ │ │ │ │ │ ├── configure.ac │ │ │ │ │ │ ├── cpp11.m4 │ │ │ │ │ │ ├── debian │ │ │ │ │ │ │ ├── changelog │ │ │ │ │ │ │ ├── changelog.in │ │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── control.in │ │ │ │ │ │ │ ├── copyright │ │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ ├── liblove-unstable.install │ │ │ │ │ │ │ ├── liblove-unstable0.docs │ │ │ │ │ │ │ ├── liblove-unstable0.install │ │ │ │ │ │ │ ├── liblove.install │ │ │ │ │ │ │ ├── liblove0.docs │ │ │ │ │ │ │ ├── liblove0.install │ │ │ │ │ │ │ ├── love-unstable.install │ │ │ │ │ │ │ ├── love-unstable.manpages │ │ │ │ │ │ │ ├── love.install │ │ │ │ │ │ │ ├── love.manpages │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ ├── rules.in │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ └── format │ │ │ │ │ │ ├── exclude │ │ │ │ │ │ ├── gen-makefile │ │ │ │ │ │ ├── genmodules │ │ │ │ │ │ ├── love.1 │ │ │ │ │ │ ├── love.6 │ │ │ │ │ │ ├── love.desktop.in │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ ├── love.xml │ │ │ │ │ │ ├── postinst │ │ │ │ │ │ └── postrm │ │ │ │ │ └── xcode │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── GameIcon.iconset │ │ │ │ │ │ │ ├── icon_128x128.png │ │ │ │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ │ │ │ ├── icon_16x16.png │ │ │ │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ │ │ │ ├── icon_256x256.png │ │ │ │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ │ │ │ ├── icon_32x32.png │ │ │ │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ │ │ │ ├── icon_512x512.png │ │ │ │ │ │ │ └── icon_512x512@2x.png │ │ │ │ │ │ ├── OS X AppIcon.appiconset │ │ │ │ │ │ │ ├── 1024.png │ │ │ │ │ │ │ ├── 128.png │ │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ │ ├── 256.png │ │ │ │ │ │ │ ├── 32.png │ │ │ │ │ │ │ ├── 512.png │ │ │ │ │ │ │ ├── 64.png │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── iOS AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── icon-29pt@1x.png │ │ │ │ │ │ │ ├── icon-29pt@2x.png │ │ │ │ │ │ │ ├── icon-29pt@3x.png │ │ │ │ │ │ │ ├── icon-40pt@1x.png │ │ │ │ │ │ │ ├── icon-40pt@2x.png │ │ │ │ │ │ │ ├── icon-40pt@3x.png │ │ │ │ │ │ │ ├── icon-50pt@1x.png │ │ │ │ │ │ │ ├── icon-50pt@2x.png │ │ │ │ │ │ │ ├── icon-57pt@1x.png │ │ │ │ │ │ │ ├── icon-57pt@2x.png │ │ │ │ │ │ │ ├── icon-60pt@2x.png │ │ │ │ │ │ │ ├── icon-60pt@3x.png │ │ │ │ │ │ │ ├── icon-72pt@1x.png │ │ │ │ │ │ │ ├── icon-72pt@2x.png │ │ │ │ │ │ │ ├── icon-76pt@1x.png │ │ │ │ │ │ │ ├── icon-76pt@2x.png │ │ │ │ │ │ │ └── icon-83.5pt@2x.png │ │ │ │ │ │ └── iOS LaunchImage.launchimage │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── ios │ │ │ │ │ │ ├── Launch Screen.xib │ │ │ │ │ │ ├── love-ios.plist │ │ │ │ │ │ ├── lovedocument.icns │ │ │ │ │ │ └── luajit-iOS.sh │ │ │ │ │ │ ├── liblove.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ ├── love.xcodeproj │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ ├── default.pbxuser │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ └── macosx │ │ │ │ │ │ ├── liblove-macosx.plist │ │ │ │ │ │ └── love-macosx.plist │ │ │ │ ├── readme-iOS.rtf │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ ├── common │ │ │ │ │ ├── Data.h │ │ │ │ │ ├── EnumMap.h │ │ │ │ │ ├── Exception.cpp │ │ │ │ │ ├── Exception.h │ │ │ │ │ ├── Matrix.cpp │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── Memoizer.cpp │ │ │ │ │ ├── Memoizer.h │ │ │ │ │ ├── Module.cpp │ │ │ │ │ ├── Module.h │ │ │ │ │ ├── Object.cpp │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── Reference.cpp │ │ │ │ │ ├── Reference.h │ │ │ │ │ ├── Stream.h │ │ │ │ │ ├── StringMap.h │ │ │ │ │ ├── Variant.cpp │ │ │ │ │ ├── Variant.h │ │ │ │ │ ├── Vector.cpp │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── android.cpp │ │ │ │ │ ├── android.h │ │ │ │ │ ├── b64.cpp │ │ │ │ │ ├── b64.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── delay.cpp │ │ │ │ │ ├── delay.h │ │ │ │ │ ├── int.h │ │ │ │ │ ├── ios.h │ │ │ │ │ ├── ios.mm │ │ │ │ │ ├── macosx.h │ │ │ │ │ ├── macosx.mm │ │ │ │ │ ├── math.h │ │ │ │ │ ├── runtime.cpp │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── types.cpp │ │ │ │ │ ├── types.h │ │ │ │ │ ├── utf8.cpp │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── wrap_Data.cpp │ │ │ │ │ └── wrap_Data.h │ │ │ │ │ ├── libraries │ │ │ │ │ ├── Box2D │ │ │ │ │ │ ├── Box2D.h │ │ │ │ │ │ ├── Collision │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ │ │ │ └── b2Shape.h │ │ │ │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ │ │ │ ├── b2BroadPhase.h │ │ │ │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ │ │ │ ├── b2Collision.cpp │ │ │ │ │ │ │ ├── b2Collision.h │ │ │ │ │ │ │ ├── b2Distance.cpp │ │ │ │ │ │ │ ├── b2Distance.h │ │ │ │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ │ │ │ ├── b2DynamicTree.h │ │ │ │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ │ │ │ └── b2TimeOfImpact.h │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ │ │ │ ├── b2Draw.cpp │ │ │ │ │ │ │ ├── b2Draw.h │ │ │ │ │ │ │ ├── b2GrowableStack.h │ │ │ │ │ │ │ ├── b2Math.cpp │ │ │ │ │ │ │ ├── b2Math.h │ │ │ │ │ │ │ ├── b2Settings.cpp │ │ │ │ │ │ │ ├── b2Settings.h │ │ │ │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ │ │ │ ├── b2StackAllocator.h │ │ │ │ │ │ │ ├── b2Timer.cpp │ │ │ │ │ │ │ └── b2Timer.h │ │ │ │ │ │ ├── Dynamics │ │ │ │ │ │ │ ├── Contacts │ │ │ │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ │ │ │ ├── Joints │ │ │ │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ │ │ │ │ ├── b2MotorJoint.h │ │ │ │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ │ │ │ ├── b2Body.cpp │ │ │ │ │ │ │ ├── b2Body.h │ │ │ │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ │ │ │ ├── b2ContactManager.h │ │ │ │ │ │ │ ├── b2Fixture.cpp │ │ │ │ │ │ │ ├── b2Fixture.h │ │ │ │ │ │ │ ├── b2Island.cpp │ │ │ │ │ │ │ ├── b2Island.h │ │ │ │ │ │ │ ├── b2TimeStep.h │ │ │ │ │ │ │ ├── b2World.cpp │ │ │ │ │ │ │ ├── b2World.h │ │ │ │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ │ │ │ └── b2WorldCallbacks.h │ │ │ │ │ │ ├── README.MODIFIED │ │ │ │ │ │ └── Rope │ │ │ │ │ │ │ ├── b2Rope.cpp │ │ │ │ │ │ │ └── b2Rope.h │ │ │ │ │ ├── Wuff │ │ │ │ │ │ ├── wuff.c │ │ │ │ │ │ ├── wuff.h │ │ │ │ │ │ ├── wuff_config.h │ │ │ │ │ │ ├── wuff_convert.c │ │ │ │ │ │ ├── wuff_convert.h │ │ │ │ │ │ ├── wuff_internal.c │ │ │ │ │ │ ├── wuff_internal.h │ │ │ │ │ │ └── wuff_memory.c │ │ │ │ │ ├── ddsparse │ │ │ │ │ │ ├── ddsinfo.h │ │ │ │ │ │ ├── ddsparse.cpp │ │ │ │ │ │ └── ddsparse.h │ │ │ │ │ ├── enet │ │ │ │ │ │ ├── enet.cpp │ │ │ │ │ │ ├── libenet │ │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── callbacks.c │ │ │ │ │ │ │ ├── compress.c │ │ │ │ │ │ │ ├── host.c │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── enet │ │ │ │ │ │ │ │ │ ├── callbacks.h │ │ │ │ │ │ │ │ │ ├── enet.h │ │ │ │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ │ │ │ ├── protocol.h │ │ │ │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ │ │ ├── unix.h │ │ │ │ │ │ │ │ │ ├── utility.h │ │ │ │ │ │ │ │ │ └── win32.h │ │ │ │ │ │ │ ├── list.c │ │ │ │ │ │ │ ├── packet.c │ │ │ │ │ │ │ ├── peer.c │ │ │ │ │ │ │ ├── protocol.c │ │ │ │ │ │ │ ├── unix.c │ │ │ │ │ │ │ └── win32.c │ │ │ │ │ │ └── lua-enet.h │ │ │ │ │ ├── glad │ │ │ │ │ │ ├── glad.cpp │ │ │ │ │ │ ├── glad.hpp │ │ │ │ │ │ └── gladfuncs.hpp │ │ │ │ │ ├── lodepng │ │ │ │ │ │ ├── lodepng.cpp │ │ │ │ │ │ └── lodepng.h │ │ │ │ │ ├── luasocket │ │ │ │ │ │ ├── libluasocket │ │ │ │ │ │ │ ├── auxiliar.c │ │ │ │ │ │ │ ├── auxiliar.h │ │ │ │ │ │ │ ├── buffer.c │ │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ │ ├── except.c │ │ │ │ │ │ │ ├── except.h │ │ │ │ │ │ │ ├── ftp.lua │ │ │ │ │ │ │ ├── ftp.lua.h │ │ │ │ │ │ │ ├── http.lua │ │ │ │ │ │ │ ├── http.lua.h │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── ltn12.lua │ │ │ │ │ │ │ ├── ltn12.lua.h │ │ │ │ │ │ │ ├── lua.h │ │ │ │ │ │ │ ├── luasocket.c │ │ │ │ │ │ │ ├── luasocket.h │ │ │ │ │ │ │ ├── mime.c │ │ │ │ │ │ │ ├── mime.h │ │ │ │ │ │ │ ├── mime.lua │ │ │ │ │ │ │ ├── mime.lua.h │ │ │ │ │ │ │ ├── options.c │ │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ │ ├── pre.lua │ │ │ │ │ │ │ ├── select.c │ │ │ │ │ │ │ ├── select.h │ │ │ │ │ │ │ ├── smtp.lua │ │ │ │ │ │ │ ├── smtp.lua.h │ │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ │ ├── socket.lua │ │ │ │ │ │ │ ├── socket.lua.h │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ ├── timeout.c │ │ │ │ │ │ │ ├── timeout.h │ │ │ │ │ │ │ ├── tp.lua │ │ │ │ │ │ │ ├── tp.lua.h │ │ │ │ │ │ │ ├── udp.c │ │ │ │ │ │ │ ├── udp.h │ │ │ │ │ │ │ ├── unix.c │ │ │ │ │ │ │ ├── unix.h │ │ │ │ │ │ │ ├── url.lua │ │ │ │ │ │ │ ├── url.lua.h │ │ │ │ │ │ │ ├── usocket.c │ │ │ │ │ │ │ ├── usocket.h │ │ │ │ │ │ │ ├── wsocket.c │ │ │ │ │ │ │ └── wsocket.h │ │ │ │ │ │ ├── luasocket.cpp │ │ │ │ │ │ └── luasocket.h │ │ │ │ │ ├── luautf8 │ │ │ │ │ │ ├── lprefix.h │ │ │ │ │ │ ├── lutf8lib.c │ │ │ │ │ │ └── lutf8lib.h │ │ │ │ │ ├── lz4 │ │ │ │ │ │ ├── lz4.c │ │ │ │ │ │ ├── lz4.h │ │ │ │ │ │ ├── lz4hc.c │ │ │ │ │ │ └── lz4hc.h │ │ │ │ │ ├── noise1234 │ │ │ │ │ │ ├── noise1234.cpp │ │ │ │ │ │ ├── noise1234.h │ │ │ │ │ │ ├── simplexnoise1234.cpp │ │ │ │ │ │ └── simplexnoise1234.h │ │ │ │ │ ├── stb │ │ │ │ │ │ └── stb_image.h │ │ │ │ │ └── utf8 │ │ │ │ │ │ ├── utf8.h │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ ├── checked.h │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ └── unchecked.h │ │ │ │ │ ├── love.cpp │ │ │ │ │ ├── modules │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── Audio.cpp │ │ │ │ │ │ ├── Audio.h │ │ │ │ │ │ ├── Source.cpp │ │ │ │ │ │ ├── Source.h │ │ │ │ │ │ ├── null │ │ │ │ │ │ │ ├── Audio.cpp │ │ │ │ │ │ │ ├── Audio.h │ │ │ │ │ │ │ ├── Source.cpp │ │ │ │ │ │ │ └── Source.h │ │ │ │ │ │ ├── openal │ │ │ │ │ │ │ ├── Audio.cpp │ │ │ │ │ │ │ ├── Audio.h │ │ │ │ │ │ │ ├── Pool.cpp │ │ │ │ │ │ │ ├── Pool.h │ │ │ │ │ │ │ ├── Source.cpp │ │ │ │ │ │ │ └── Source.h │ │ │ │ │ │ ├── wrap_Audio.cpp │ │ │ │ │ │ ├── wrap_Audio.h │ │ │ │ │ │ ├── wrap_Source.cpp │ │ │ │ │ │ └── wrap_Source.h │ │ │ │ │ ├── event │ │ │ │ │ │ ├── Event.cpp │ │ │ │ │ │ ├── Event.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Event.cpp │ │ │ │ │ │ │ └── Event.h │ │ │ │ │ │ ├── wrap_Event.cpp │ │ │ │ │ │ └── wrap_Event.h │ │ │ │ │ ├── filesystem │ │ │ │ │ │ ├── DroppedFile.cpp │ │ │ │ │ │ ├── DroppedFile.h │ │ │ │ │ │ ├── File.cpp │ │ │ │ │ │ ├── File.h │ │ │ │ │ │ ├── FileData.cpp │ │ │ │ │ │ ├── FileData.h │ │ │ │ │ │ ├── Filesystem.cpp │ │ │ │ │ │ ├── Filesystem.h │ │ │ │ │ │ ├── physfs │ │ │ │ │ │ │ ├── File.cpp │ │ │ │ │ │ │ ├── File.h │ │ │ │ │ │ │ ├── Filesystem.cpp │ │ │ │ │ │ │ └── Filesystem.h │ │ │ │ │ │ ├── wrap_DroppedFile.cpp │ │ │ │ │ │ ├── wrap_DroppedFile.h │ │ │ │ │ │ ├── wrap_File.cpp │ │ │ │ │ │ ├── wrap_File.h │ │ │ │ │ │ ├── wrap_FileData.cpp │ │ │ │ │ │ ├── wrap_FileData.h │ │ │ │ │ │ ├── wrap_Filesystem.cpp │ │ │ │ │ │ └── wrap_Filesystem.h │ │ │ │ │ ├── font │ │ │ │ │ │ ├── BMFontRasterizer.cpp │ │ │ │ │ │ ├── BMFontRasterizer.h │ │ │ │ │ │ ├── Font.cpp │ │ │ │ │ │ ├── Font.h │ │ │ │ │ │ ├── GlyphData.cpp │ │ │ │ │ │ ├── GlyphData.h │ │ │ │ │ │ ├── ImageRasterizer.cpp │ │ │ │ │ │ ├── ImageRasterizer.h │ │ │ │ │ │ ├── Rasterizer.cpp │ │ │ │ │ │ ├── Rasterizer.h │ │ │ │ │ │ ├── TrueTypeRasterizer.cpp │ │ │ │ │ │ ├── TrueTypeRasterizer.h │ │ │ │ │ │ ├── Vera.ttf.h │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── Font.cpp │ │ │ │ │ │ │ ├── Font.h │ │ │ │ │ │ │ ├── TrueTypeRasterizer.cpp │ │ │ │ │ │ │ └── TrueTypeRasterizer.h │ │ │ │ │ │ ├── wrap_Font.cpp │ │ │ │ │ │ ├── wrap_Font.h │ │ │ │ │ │ ├── wrap_GlyphData.cpp │ │ │ │ │ │ ├── wrap_GlyphData.h │ │ │ │ │ │ ├── wrap_Rasterizer.cpp │ │ │ │ │ │ └── wrap_Rasterizer.h │ │ │ │ │ ├── graphics │ │ │ │ │ │ ├── Color.h │ │ │ │ │ │ ├── Drawable.h │ │ │ │ │ │ ├── Graphics.cpp │ │ │ │ │ │ ├── Graphics.h │ │ │ │ │ │ ├── ParticleSystem.cpp │ │ │ │ │ │ ├── ParticleSystem.h │ │ │ │ │ │ ├── Quad.cpp │ │ │ │ │ │ ├── Quad.h │ │ │ │ │ │ ├── Texture.cpp │ │ │ │ │ │ ├── Texture.h │ │ │ │ │ │ ├── Volatile.cpp │ │ │ │ │ │ ├── Volatile.h │ │ │ │ │ │ ├── opengl │ │ │ │ │ │ │ ├── Canvas.cpp │ │ │ │ │ │ │ ├── Canvas.h │ │ │ │ │ │ │ ├── Font.cpp │ │ │ │ │ │ │ ├── Font.h │ │ │ │ │ │ │ ├── GLBuffer.cpp │ │ │ │ │ │ │ ├── GLBuffer.h │ │ │ │ │ │ │ ├── Graphics.cpp │ │ │ │ │ │ │ ├── Graphics.h │ │ │ │ │ │ │ ├── Image.cpp │ │ │ │ │ │ │ ├── Image.h │ │ │ │ │ │ │ ├── Mesh.cpp │ │ │ │ │ │ │ ├── Mesh.h │ │ │ │ │ │ │ ├── OpenGL.cpp │ │ │ │ │ │ │ ├── OpenGL.h │ │ │ │ │ │ │ ├── ParticleSystem.cpp │ │ │ │ │ │ │ ├── ParticleSystem.h │ │ │ │ │ │ │ ├── Polyline.cpp │ │ │ │ │ │ │ ├── Polyline.h │ │ │ │ │ │ │ ├── Shader.cpp │ │ │ │ │ │ │ ├── Shader.h │ │ │ │ │ │ │ ├── SpriteBatch.cpp │ │ │ │ │ │ │ ├── SpriteBatch.h │ │ │ │ │ │ │ ├── Text.cpp │ │ │ │ │ │ │ ├── Text.h │ │ │ │ │ │ │ ├── Video.cpp │ │ │ │ │ │ │ ├── Video.h │ │ │ │ │ │ │ ├── wrap_Canvas.cpp │ │ │ │ │ │ │ ├── wrap_Canvas.h │ │ │ │ │ │ │ ├── wrap_Font.cpp │ │ │ │ │ │ │ ├── wrap_Font.h │ │ │ │ │ │ │ ├── wrap_Graphics.cpp │ │ │ │ │ │ │ ├── wrap_Graphics.h │ │ │ │ │ │ │ ├── wrap_Graphics.lua │ │ │ │ │ │ │ ├── wrap_Image.cpp │ │ │ │ │ │ │ ├── wrap_Image.h │ │ │ │ │ │ │ ├── wrap_Mesh.cpp │ │ │ │ │ │ │ ├── wrap_Mesh.h │ │ │ │ │ │ │ ├── wrap_ParticleSystem.cpp │ │ │ │ │ │ │ ├── wrap_ParticleSystem.h │ │ │ │ │ │ │ ├── wrap_Shader.cpp │ │ │ │ │ │ │ ├── wrap_Shader.h │ │ │ │ │ │ │ ├── wrap_SpriteBatch.cpp │ │ │ │ │ │ │ ├── wrap_SpriteBatch.h │ │ │ │ │ │ │ ├── wrap_Text.cpp │ │ │ │ │ │ │ ├── wrap_Text.h │ │ │ │ │ │ │ ├── wrap_Video.cpp │ │ │ │ │ │ │ ├── wrap_Video.h │ │ │ │ │ │ │ └── wrap_Video.lua │ │ │ │ │ │ ├── wrap_Quad.cpp │ │ │ │ │ │ ├── wrap_Quad.h │ │ │ │ │ │ ├── wrap_Texture.cpp │ │ │ │ │ │ └── wrap_Texture.h │ │ │ │ │ ├── image │ │ │ │ │ │ ├── CompressedImageData.cpp │ │ │ │ │ │ ├── CompressedImageData.h │ │ │ │ │ │ ├── Image.h │ │ │ │ │ │ ├── ImageData.cpp │ │ │ │ │ │ ├── ImageData.h │ │ │ │ │ │ ├── magpie │ │ │ │ │ │ │ ├── ASTCHandler.cpp │ │ │ │ │ │ │ ├── ASTCHandler.h │ │ │ │ │ │ │ ├── CompressedFormatHandler.h │ │ │ │ │ │ │ ├── CompressedImageData.cpp │ │ │ │ │ │ │ ├── CompressedImageData.h │ │ │ │ │ │ │ ├── FormatHandler.cpp │ │ │ │ │ │ │ ├── FormatHandler.h │ │ │ │ │ │ │ ├── Image.cpp │ │ │ │ │ │ │ ├── Image.h │ │ │ │ │ │ │ ├── ImageData.cpp │ │ │ │ │ │ │ ├── ImageData.h │ │ │ │ │ │ │ ├── KTXHandler.cpp │ │ │ │ │ │ │ ├── KTXHandler.h │ │ │ │ │ │ │ ├── PKMHandler.cpp │ │ │ │ │ │ │ ├── PKMHandler.h │ │ │ │ │ │ │ ├── PNGHandler.cpp │ │ │ │ │ │ │ ├── PNGHandler.h │ │ │ │ │ │ │ ├── PVRHandler.cpp │ │ │ │ │ │ │ ├── PVRHandler.h │ │ │ │ │ │ │ ├── STBHandler.cpp │ │ │ │ │ │ │ ├── STBHandler.h │ │ │ │ │ │ │ ├── ddsHandler.cpp │ │ │ │ │ │ │ └── ddsHandler.h │ │ │ │ │ │ ├── wrap_CompressedImageData.cpp │ │ │ │ │ │ ├── wrap_CompressedImageData.h │ │ │ │ │ │ ├── wrap_Image.cpp │ │ │ │ │ │ ├── wrap_Image.h │ │ │ │ │ │ ├── wrap_ImageData.cpp │ │ │ │ │ │ ├── wrap_ImageData.h │ │ │ │ │ │ └── wrap_ImageData.lua │ │ │ │ │ ├── joystick │ │ │ │ │ │ ├── Joystick.cpp │ │ │ │ │ │ ├── Joystick.h │ │ │ │ │ │ ├── JoystickModule.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Joystick.cpp │ │ │ │ │ │ │ ├── Joystick.h │ │ │ │ │ │ │ ├── JoystickModule.cpp │ │ │ │ │ │ │ └── JoystickModule.h │ │ │ │ │ │ ├── wrap_Joystick.cpp │ │ │ │ │ │ ├── wrap_Joystick.h │ │ │ │ │ │ ├── wrap_JoystickModule.cpp │ │ │ │ │ │ └── wrap_JoystickModule.h │ │ │ │ │ ├── keyboard │ │ │ │ │ │ ├── Keyboard.cpp │ │ │ │ │ │ ├── Keyboard.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Keyboard.cpp │ │ │ │ │ │ │ └── Keyboard.h │ │ │ │ │ │ ├── wrap_Keyboard.cpp │ │ │ │ │ │ └── wrap_Keyboard.h │ │ │ │ │ ├── love │ │ │ │ │ │ ├── love.cpp │ │ │ │ │ │ └── love.h │ │ │ │ │ ├── math │ │ │ │ │ │ ├── BezierCurve.cpp │ │ │ │ │ │ ├── BezierCurve.h │ │ │ │ │ │ ├── CompressedData.cpp │ │ │ │ │ │ ├── CompressedData.h │ │ │ │ │ │ ├── Compressor.cpp │ │ │ │ │ │ ├── Compressor.h │ │ │ │ │ │ ├── MathModule.cpp │ │ │ │ │ │ ├── MathModule.h │ │ │ │ │ │ ├── RandomGenerator.cpp │ │ │ │ │ │ ├── RandomGenerator.h │ │ │ │ │ │ ├── wrap_BezierCurve.cpp │ │ │ │ │ │ ├── wrap_BezierCurve.h │ │ │ │ │ │ ├── wrap_CompressedData.cpp │ │ │ │ │ │ ├── wrap_CompressedData.h │ │ │ │ │ │ ├── wrap_Math.cpp │ │ │ │ │ │ ├── wrap_Math.h │ │ │ │ │ │ ├── wrap_Math.lua │ │ │ │ │ │ ├── wrap_RandomGenerator.cpp │ │ │ │ │ │ ├── wrap_RandomGenerator.h │ │ │ │ │ │ └── wrap_RandomGenerator.lua │ │ │ │ │ ├── mouse │ │ │ │ │ │ ├── Cursor.cpp │ │ │ │ │ │ ├── Cursor.h │ │ │ │ │ │ ├── Mouse.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Cursor.cpp │ │ │ │ │ │ │ ├── Cursor.h │ │ │ │ │ │ │ ├── Mouse.cpp │ │ │ │ │ │ │ └── Mouse.h │ │ │ │ │ │ ├── wrap_Cursor.cpp │ │ │ │ │ │ ├── wrap_Cursor.h │ │ │ │ │ │ ├── wrap_Mouse.cpp │ │ │ │ │ │ └── wrap_Mouse.h │ │ │ │ │ ├── physics │ │ │ │ │ │ ├── Body.cpp │ │ │ │ │ │ ├── Body.h │ │ │ │ │ │ ├── Joint.cpp │ │ │ │ │ │ ├── Joint.h │ │ │ │ │ │ ├── Shape.cpp │ │ │ │ │ │ ├── Shape.h │ │ │ │ │ │ └── box2d │ │ │ │ │ │ │ ├── Body.cpp │ │ │ │ │ │ │ ├── Body.h │ │ │ │ │ │ │ ├── ChainShape.cpp │ │ │ │ │ │ │ ├── ChainShape.h │ │ │ │ │ │ │ ├── CircleShape.cpp │ │ │ │ │ │ │ ├── CircleShape.h │ │ │ │ │ │ │ ├── Contact.cpp │ │ │ │ │ │ │ ├── Contact.h │ │ │ │ │ │ │ ├── DistanceJoint.cpp │ │ │ │ │ │ │ ├── DistanceJoint.h │ │ │ │ │ │ │ ├── EdgeShape.cpp │ │ │ │ │ │ │ ├── EdgeShape.h │ │ │ │ │ │ │ ├── Fixture.cpp │ │ │ │ │ │ │ ├── Fixture.h │ │ │ │ │ │ │ ├── FrictionJoint.cpp │ │ │ │ │ │ │ ├── FrictionJoint.h │ │ │ │ │ │ │ ├── GearJoint.cpp │ │ │ │ │ │ │ ├── GearJoint.h │ │ │ │ │ │ │ ├── Joint.cpp │ │ │ │ │ │ │ ├── Joint.h │ │ │ │ │ │ │ ├── MotorJoint.cpp │ │ │ │ │ │ │ ├── MotorJoint.h │ │ │ │ │ │ │ ├── MouseJoint.cpp │ │ │ │ │ │ │ ├── MouseJoint.h │ │ │ │ │ │ │ ├── Physics.cpp │ │ │ │ │ │ │ ├── Physics.h │ │ │ │ │ │ │ ├── PolygonShape.cpp │ │ │ │ │ │ │ ├── PolygonShape.h │ │ │ │ │ │ │ ├── PrismaticJoint.cpp │ │ │ │ │ │ │ ├── PrismaticJoint.h │ │ │ │ │ │ │ ├── PulleyJoint.cpp │ │ │ │ │ │ │ ├── PulleyJoint.h │ │ │ │ │ │ │ ├── RevoluteJoint.cpp │ │ │ │ │ │ │ ├── RevoluteJoint.h │ │ │ │ │ │ │ ├── RopeJoint.cpp │ │ │ │ │ │ │ ├── RopeJoint.h │ │ │ │ │ │ │ ├── Shape.cpp │ │ │ │ │ │ │ ├── Shape.h │ │ │ │ │ │ │ ├── WeldJoint.cpp │ │ │ │ │ │ │ ├── WeldJoint.h │ │ │ │ │ │ │ ├── WheelJoint.cpp │ │ │ │ │ │ │ ├── WheelJoint.h │ │ │ │ │ │ │ ├── World.cpp │ │ │ │ │ │ │ ├── World.h │ │ │ │ │ │ │ ├── wrap_Body.cpp │ │ │ │ │ │ │ ├── wrap_Body.h │ │ │ │ │ │ │ ├── wrap_ChainShape.cpp │ │ │ │ │ │ │ ├── wrap_ChainShape.h │ │ │ │ │ │ │ ├── wrap_CircleShape.cpp │ │ │ │ │ │ │ ├── wrap_CircleShape.h │ │ │ │ │ │ │ ├── wrap_Contact.cpp │ │ │ │ │ │ │ ├── wrap_Contact.h │ │ │ │ │ │ │ ├── wrap_DistanceJoint.cpp │ │ │ │ │ │ │ ├── wrap_DistanceJoint.h │ │ │ │ │ │ │ ├── wrap_EdgeShape.cpp │ │ │ │ │ │ │ ├── wrap_EdgeShape.h │ │ │ │ │ │ │ ├── wrap_Fixture.cpp │ │ │ │ │ │ │ ├── wrap_Fixture.h │ │ │ │ │ │ │ ├── wrap_FrictionJoint.cpp │ │ │ │ │ │ │ ├── wrap_FrictionJoint.h │ │ │ │ │ │ │ ├── wrap_GearJoint.cpp │ │ │ │ │ │ │ ├── wrap_GearJoint.h │ │ │ │ │ │ │ ├── wrap_Joint.cpp │ │ │ │ │ │ │ ├── wrap_Joint.h │ │ │ │ │ │ │ ├── wrap_MotorJoint.cpp │ │ │ │ │ │ │ ├── wrap_MotorJoint.h │ │ │ │ │ │ │ ├── wrap_MouseJoint.cpp │ │ │ │ │ │ │ ├── wrap_MouseJoint.h │ │ │ │ │ │ │ ├── wrap_Physics.cpp │ │ │ │ │ │ │ ├── wrap_Physics.h │ │ │ │ │ │ │ ├── wrap_PolygonShape.cpp │ │ │ │ │ │ │ ├── wrap_PolygonShape.h │ │ │ │ │ │ │ ├── wrap_PrismaticJoint.cpp │ │ │ │ │ │ │ ├── wrap_PrismaticJoint.h │ │ │ │ │ │ │ ├── wrap_PulleyJoint.cpp │ │ │ │ │ │ │ ├── wrap_PulleyJoint.h │ │ │ │ │ │ │ ├── wrap_RevoluteJoint.cpp │ │ │ │ │ │ │ ├── wrap_RevoluteJoint.h │ │ │ │ │ │ │ ├── wrap_RopeJoint.cpp │ │ │ │ │ │ │ ├── wrap_RopeJoint.h │ │ │ │ │ │ │ ├── wrap_Shape.cpp │ │ │ │ │ │ │ ├── wrap_Shape.h │ │ │ │ │ │ │ ├── wrap_WeldJoint.cpp │ │ │ │ │ │ │ ├── wrap_WeldJoint.h │ │ │ │ │ │ │ ├── wrap_WheelJoint.cpp │ │ │ │ │ │ │ ├── wrap_WheelJoint.h │ │ │ │ │ │ │ ├── wrap_World.cpp │ │ │ │ │ │ │ └── wrap_World.h │ │ │ │ │ ├── sound │ │ │ │ │ │ ├── Decoder.h │ │ │ │ │ │ ├── Sound.cpp │ │ │ │ │ │ ├── Sound.h │ │ │ │ │ │ ├── SoundData.cpp │ │ │ │ │ │ ├── SoundData.h │ │ │ │ │ │ ├── lullaby │ │ │ │ │ │ │ ├── CoreAudioDecoder.cpp │ │ │ │ │ │ │ ├── CoreAudioDecoder.h │ │ │ │ │ │ │ ├── Decoder.cpp │ │ │ │ │ │ │ ├── Decoder.h │ │ │ │ │ │ │ ├── FLACDecoder.cpp │ │ │ │ │ │ │ ├── FLACDecoder.h │ │ │ │ │ │ │ ├── GmeDecoder.cpp │ │ │ │ │ │ │ ├── GmeDecoder.h │ │ │ │ │ │ │ ├── ModPlugDecoder.cpp │ │ │ │ │ │ │ ├── ModPlugDecoder.h │ │ │ │ │ │ │ ├── Mpg123Decoder.cpp │ │ │ │ │ │ │ ├── Mpg123Decoder.h │ │ │ │ │ │ │ ├── Sound.cpp │ │ │ │ │ │ │ ├── Sound.h │ │ │ │ │ │ │ ├── VorbisDecoder.cpp │ │ │ │ │ │ │ ├── VorbisDecoder.h │ │ │ │ │ │ │ ├── WaveDecoder.cpp │ │ │ │ │ │ │ └── WaveDecoder.h │ │ │ │ │ │ ├── wrap_Decoder.cpp │ │ │ │ │ │ ├── wrap_Decoder.h │ │ │ │ │ │ ├── wrap_Sound.cpp │ │ │ │ │ │ ├── wrap_Sound.h │ │ │ │ │ │ ├── wrap_SoundData.cpp │ │ │ │ │ │ ├── wrap_SoundData.h │ │ │ │ │ │ └── wrap_SoundData.lua │ │ │ │ │ ├── system │ │ │ │ │ │ ├── System.cpp │ │ │ │ │ │ ├── System.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── System.cpp │ │ │ │ │ │ │ └── System.h │ │ │ │ │ │ ├── wrap_System.cpp │ │ │ │ │ │ └── wrap_System.h │ │ │ │ │ ├── thread │ │ │ │ │ │ ├── Channel.cpp │ │ │ │ │ │ ├── Channel.h │ │ │ │ │ │ ├── LuaThread.cpp │ │ │ │ │ │ ├── LuaThread.h │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ ├── ThreadModule.cpp │ │ │ │ │ │ ├── ThreadModule.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Thread.cpp │ │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ │ ├── threads.cpp │ │ │ │ │ │ │ └── threads.h │ │ │ │ │ │ ├── threads.cpp │ │ │ │ │ │ ├── threads.h │ │ │ │ │ │ ├── wrap_Channel.cpp │ │ │ │ │ │ ├── wrap_Channel.h │ │ │ │ │ │ ├── wrap_LuaThread.cpp │ │ │ │ │ │ ├── wrap_LuaThread.h │ │ │ │ │ │ ├── wrap_ThreadModule.cpp │ │ │ │ │ │ └── wrap_ThreadModule.h │ │ │ │ │ ├── timer │ │ │ │ │ │ ├── Timer.cpp │ │ │ │ │ │ ├── Timer.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Timer.cpp │ │ │ │ │ │ │ └── Timer.h │ │ │ │ │ │ ├── wrap_Timer.cpp │ │ │ │ │ │ └── wrap_Timer.h │ │ │ │ │ ├── touch │ │ │ │ │ │ ├── Touch.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ │ ├── Touch.cpp │ │ │ │ │ │ │ └── Touch.h │ │ │ │ │ │ ├── wrap_Touch.cpp │ │ │ │ │ │ └── wrap_Touch.h │ │ │ │ │ ├── video │ │ │ │ │ │ ├── Video.h │ │ │ │ │ │ ├── VideoStream.cpp │ │ │ │ │ │ ├── VideoStream.h │ │ │ │ │ │ ├── theora │ │ │ │ │ │ │ ├── Video.cpp │ │ │ │ │ │ │ ├── Video.h │ │ │ │ │ │ │ ├── VideoStream.cpp │ │ │ │ │ │ │ └── VideoStream.h │ │ │ │ │ │ ├── wrap_Video.cpp │ │ │ │ │ │ ├── wrap_Video.h │ │ │ │ │ │ ├── wrap_VideoStream.cpp │ │ │ │ │ │ └── wrap_VideoStream.h │ │ │ │ │ └── window │ │ │ │ │ │ ├── Window.cpp │ │ │ │ │ │ ├── Window.h │ │ │ │ │ │ ├── sdl │ │ │ │ │ │ ├── Window.cpp │ │ │ │ │ │ └── Window.h │ │ │ │ │ │ ├── wrap_Window.cpp │ │ │ │ │ │ └── wrap_Window.h │ │ │ │ │ └── scripts │ │ │ │ │ ├── auto.lua │ │ │ │ │ ├── boot.lua │ │ │ │ │ ├── boot.lua.h │ │ │ │ │ ├── nogame.lua │ │ │ │ │ └── nogame.lua.h │ │ │ ├── mpg123-1.17.0 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── NEWS.libmpg123 │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.status │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── doc │ │ │ │ │ ├── ACCURACY │ │ │ │ │ ├── BENCHMARKING │ │ │ │ │ ├── BUGS │ │ │ │ │ ├── CONTACT │ │ │ │ │ ├── LARGEFILE │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.3DNOW │ │ │ │ │ ├── README.gain │ │ │ │ │ ├── README.remote │ │ │ │ │ ├── ROAD_TO_LGPL │ │ │ │ │ ├── THANKS │ │ │ │ │ ├── TODO │ │ │ │ │ ├── doxy_examples.c │ │ │ │ │ ├── doxygen.conf │ │ │ │ │ ├── doxyhead.xhtml │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dump_seekindex.c │ │ │ │ │ │ ├── extract_frames.c │ │ │ │ │ │ ├── feedseek.c │ │ │ │ │ │ ├── id3dump.c │ │ │ │ │ │ ├── mpg123_to_wav.c │ │ │ │ │ │ ├── mpglib.c │ │ │ │ │ │ └── scan.c │ │ │ │ │ └── libmpg123_speed.txt │ │ │ │ ├── equalize.dat │ │ │ │ ├── libmpg123.pc │ │ │ │ ├── libmpg123.pc.in │ │ │ │ ├── libtool │ │ │ │ ├── m4 │ │ │ │ │ ├── addrconfig.m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ ├── makedll.sh │ │ │ │ ├── man1 │ │ │ │ │ └── mpg123.1 │ │ │ │ ├── mpg123.spec.in │ │ │ │ ├── ports │ │ │ │ │ ├── MSVC++ │ │ │ │ │ │ ├── 2005 │ │ │ │ │ │ │ └── libmpg123 │ │ │ │ │ │ │ │ └── libmpg123.vcproj │ │ │ │ │ │ ├── 2008 │ │ │ │ │ │ │ ├── dump_seekindex │ │ │ │ │ │ │ │ └── dump_seekindex.vcproj │ │ │ │ │ │ │ ├── feedseek │ │ │ │ │ │ │ │ └── feedseek.vcproj │ │ │ │ │ │ │ ├── libmpg123 │ │ │ │ │ │ │ │ └── libmpg123.vcproj │ │ │ │ │ │ │ ├── mpg123.sln │ │ │ │ │ │ │ ├── mpglib │ │ │ │ │ │ │ │ └── mpglib.vcproj │ │ │ │ │ │ │ └── scan │ │ │ │ │ │ │ │ └── scan.vcproj │ │ │ │ │ │ ├── 2010 │ │ │ │ │ │ │ ├── dump_seekindex │ │ │ │ │ │ │ │ ├── dump_seekindex.vcxproj │ │ │ │ │ │ │ │ └── dump_seekindex.vcxproj.filters │ │ │ │ │ │ │ ├── feedseek │ │ │ │ │ │ │ │ ├── feedseek.vcxproj │ │ │ │ │ │ │ │ └── feedseek.vcxproj.filters │ │ │ │ │ │ │ ├── libmpg123 │ │ │ │ │ │ │ │ └── libmpg123.vcxproj │ │ │ │ │ │ │ ├── mpg123.sln │ │ │ │ │ │ │ └── scan │ │ │ │ │ │ │ │ ├── scan.vcxproj │ │ │ │ │ │ │ │ └── scan.vcxproj.filters │ │ │ │ │ │ ├── 2008clr │ │ │ │ │ │ │ ├── 2008clr.sln │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── ReplaceReaderclr │ │ │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ │ │ └── ReplaceReaderclr.csproj │ │ │ │ │ │ │ │ ├── feedseekclr │ │ │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ │ │ └── feedseekclr.csproj │ │ │ │ │ │ │ │ └── scanclr │ │ │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ │ │ └── scanclr.csproj │ │ │ │ │ │ │ └── mpg123clr │ │ │ │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ │ │ ├── advanced.cpp │ │ │ │ │ │ │ │ ├── advanced.h │ │ │ │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ │ │ │ ├── enum.h │ │ │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ │ │ ├── id3v1.cpp │ │ │ │ │ │ │ │ ├── id3v1.h │ │ │ │ │ │ │ │ ├── id3v2.cpp │ │ │ │ │ │ │ │ ├── id3v2.h │ │ │ │ │ │ │ │ ├── mpg123clr.cpp │ │ │ │ │ │ │ │ ├── mpg123clr.h │ │ │ │ │ │ │ │ ├── mpg123clr.rc │ │ │ │ │ │ │ │ ├── mpg123clr.vcproj │ │ │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ │ │ ├── string.cpp │ │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ │ ├── targetver.h │ │ │ │ │ │ │ │ ├── text.cpp │ │ │ │ │ │ │ │ └── text.h │ │ │ │ │ │ ├── CMP3Stream │ │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ │ │ ├── CORE │ │ │ │ │ │ │ │ │ ├── CORE_FileIn.H │ │ │ │ │ │ │ │ │ └── SourceFilter_MP3.H │ │ │ │ │ │ │ │ ├── IIEP_Def.H │ │ │ │ │ │ │ │ └── IIEP_FileIn.H │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── SOURCE │ │ │ │ │ │ │ │ ├── CORE_FileIn.CPP │ │ │ │ │ │ │ │ ├── CORE_Log.CPP │ │ │ │ │ │ │ │ ├── CORE_Mutex.CPP │ │ │ │ │ │ │ │ └── SourceFilter_MP3Stream.CPP │ │ │ │ │ │ │ └── libMPG123 │ │ │ │ │ │ │ │ ├── PLACE_LIBMPG123_SOURCES_HERE │ │ │ │ │ │ │ │ └── libMPG123.vcproj │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── feedseek.c │ │ │ │ │ │ │ └── scan.c │ │ │ │ │ │ ├── mpg123.h │ │ │ │ │ │ └── msvc.c │ │ │ │ │ ├── README │ │ │ │ │ ├── Sony_PSP │ │ │ │ │ │ ├── Makefile.psp │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ └── readers.c.patch │ │ │ │ │ ├── Xcode │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── mpg123.h │ │ │ │ │ │ └── mpg123.xcodeproj │ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── mpg123_.pas │ │ │ │ ├── scripts │ │ │ │ │ ├── benchmark-cpu.pl │ │ │ │ │ ├── conplay │ │ │ │ │ ├── mpg123info │ │ │ │ │ └── tag_lyrics.py │ │ │ │ ├── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── audio.c │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── control_generic.c │ │ │ │ │ ├── equalizer.c │ │ │ │ │ ├── genre.c │ │ │ │ │ ├── genre.h │ │ │ │ │ ├── getlopt.c │ │ │ │ │ ├── getlopt.h │ │ │ │ │ ├── httpget.c │ │ │ │ │ ├── httpget.h │ │ │ │ │ ├── legacy_module.c │ │ │ │ │ ├── libmpg123 │ │ │ │ │ │ ├── .libs │ │ │ │ │ │ │ ├── libmpg123.exp │ │ │ │ │ │ │ ├── libmpg123.la │ │ │ │ │ │ │ ├── libmpg123.lai │ │ │ │ │ │ │ ├── libmpg123.so.0 │ │ │ │ │ │ │ ├── libmpg123.so.0.38.4 │ │ │ │ │ │ │ └── libmpg123.ver │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── abi_align.h │ │ │ │ │ │ ├── compat.c │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── compat.lo │ │ │ │ │ │ ├── dct36_3dnow.S │ │ │ │ │ │ ├── dct36_3dnowext.S │ │ │ │ │ │ ├── dct36_avx.S │ │ │ │ │ │ ├── dct36_sse.S │ │ │ │ │ │ ├── dct36_x86_64.S │ │ │ │ │ │ ├── dct64.c │ │ │ │ │ │ ├── dct64.lo │ │ │ │ │ │ ├── dct64_3dnow.S │ │ │ │ │ │ ├── dct64_3dnowext.S │ │ │ │ │ │ ├── dct64_altivec.c │ │ │ │ │ │ ├── dct64_avx.S │ │ │ │ │ │ ├── dct64_avx_float.S │ │ │ │ │ │ ├── dct64_i386.c │ │ │ │ │ │ ├── dct64_i486.c │ │ │ │ │ │ ├── dct64_mmx.S │ │ │ │ │ │ ├── dct64_neon.S │ │ │ │ │ │ ├── dct64_neon_float.S │ │ │ │ │ │ ├── dct64_sse.S │ │ │ │ │ │ ├── dct64_sse_float.S │ │ │ │ │ │ ├── dct64_x86_64.S │ │ │ │ │ │ ├── dct64_x86_64_float.S │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── dither.c │ │ │ │ │ │ ├── dither.h │ │ │ │ │ │ ├── equalizer.c │ │ │ │ │ │ ├── equalizer.lo │ │ │ │ │ │ ├── equalizer_3dnow.S │ │ │ │ │ │ ├── feature.c │ │ │ │ │ │ ├── feature.lo │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ ├── format.lo │ │ │ │ │ │ ├── frame.c │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── frame.lo │ │ │ │ │ │ ├── gapless.h │ │ │ │ │ │ ├── getbits.h │ │ │ │ │ │ ├── getcpuflags.S │ │ │ │ │ │ ├── getcpuflags.h │ │ │ │ │ │ ├── getcpuflags_x86_64.S │ │ │ │ │ │ ├── huffman.h │ │ │ │ │ │ ├── icy.c │ │ │ │ │ │ ├── icy.h │ │ │ │ │ │ ├── icy.lo │ │ │ │ │ │ ├── icy2utf8.c │ │ │ │ │ │ ├── icy2utf8.h │ │ │ │ │ │ ├── icy2utf8.lo │ │ │ │ │ │ ├── id3.c │ │ │ │ │ │ ├── id3.h │ │ │ │ │ │ ├── id3.lo │ │ │ │ │ │ ├── index.c │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ ├── index.lo │ │ │ │ │ │ ├── intsym.h │ │ │ │ │ │ ├── l12_integer_tables.h │ │ │ │ │ │ ├── l2tables.h │ │ │ │ │ │ ├── l3_integer_tables.h │ │ │ │ │ │ ├── layer1.c │ │ │ │ │ │ ├── layer1.lo │ │ │ │ │ │ ├── layer2.c │ │ │ │ │ │ ├── layer2.lo │ │ │ │ │ │ ├── layer3.c │ │ │ │ │ │ ├── layer3.lo │ │ │ │ │ │ ├── lfs_alias.c │ │ │ │ │ │ ├── lfs_alias.lo │ │ │ │ │ │ ├── lfs_wrap.c │ │ │ │ │ │ ├── libmpg123.c │ │ │ │ │ │ ├── libmpg123.la │ │ │ │ │ │ ├── libmpg123.lo │ │ │ │ │ │ ├── mangle.h │ │ │ │ │ │ ├── mpeghead.h │ │ │ │ │ │ ├── mpg123.h │ │ │ │ │ │ ├── mpg123.h.in │ │ │ │ │ │ ├── mpg123lib_intern.h │ │ │ │ │ │ ├── newhuffman.h │ │ │ │ │ │ ├── ntom.c │ │ │ │ │ │ ├── ntom.lo │ │ │ │ │ │ ├── optimize.c │ │ │ │ │ │ ├── optimize.h │ │ │ │ │ │ ├── optimize.lo │ │ │ │ │ │ ├── parse.c │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ ├── parse.lo │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── readers.c │ │ │ │ │ │ ├── readers.lo │ │ │ │ │ │ ├── sample.h │ │ │ │ │ │ ├── stringbuf.c │ │ │ │ │ │ ├── stringbuf.lo │ │ │ │ │ │ ├── synth.c │ │ │ │ │ │ ├── synth.h │ │ │ │ │ │ ├── synth.lo │ │ │ │ │ │ ├── synth_3dnow.S │ │ │ │ │ │ ├── synth_3dnowext.S │ │ │ │ │ │ ├── synth_8bit.c │ │ │ │ │ │ ├── synth_8bit.h │ │ │ │ │ │ ├── synth_8bit.lo │ │ │ │ │ │ ├── synth_altivec.c │ │ │ │ │ │ ├── synth_arm.S │ │ │ │ │ │ ├── synth_arm.lo │ │ │ │ │ │ ├── synth_arm_accurate.S │ │ │ │ │ │ ├── synth_i486.c │ │ │ │ │ │ ├── synth_i586.S │ │ │ │ │ │ ├── synth_i586_dither.S │ │ │ │ │ │ ├── synth_mmx.S │ │ │ │ │ │ ├── synth_mono.h │ │ │ │ │ │ ├── synth_neon.S │ │ │ │ │ │ ├── synth_neon_accurate.S │ │ │ │ │ │ ├── synth_neon_float.S │ │ │ │ │ │ ├── synth_neon_s32.S │ │ │ │ │ │ ├── synth_ntom.h │ │ │ │ │ │ ├── synth_real.c │ │ │ │ │ │ ├── synth_s32.c │ │ │ │ │ │ ├── synth_sse.S │ │ │ │ │ │ ├── synth_sse3d.h │ │ │ │ │ │ ├── synth_sse_accurate.S │ │ │ │ │ │ ├── synth_sse_float.S │ │ │ │ │ │ ├── synth_sse_s32.S │ │ │ │ │ │ ├── synth_stereo_avx.S │ │ │ │ │ │ ├── synth_stereo_avx_accurate.S │ │ │ │ │ │ ├── synth_stereo_avx_float.S │ │ │ │ │ │ ├── synth_stereo_avx_s32.S │ │ │ │ │ │ ├── synth_stereo_neon.S │ │ │ │ │ │ ├── synth_stereo_neon_accurate.S │ │ │ │ │ │ ├── synth_stereo_neon_float.S │ │ │ │ │ │ ├── synth_stereo_neon_s32.S │ │ │ │ │ │ ├── synth_stereo_sse_accurate.S │ │ │ │ │ │ ├── synth_stereo_sse_float.S │ │ │ │ │ │ ├── synth_stereo_sse_s32.S │ │ │ │ │ │ ├── synth_stereo_x86_64.S │ │ │ │ │ │ ├── synth_stereo_x86_64_accurate.S │ │ │ │ │ │ ├── synth_stereo_x86_64_float.S │ │ │ │ │ │ ├── synth_stereo_x86_64_s32.S │ │ │ │ │ │ ├── synth_x86_64.S │ │ │ │ │ │ ├── synth_x86_64_accurate.S │ │ │ │ │ │ ├── synth_x86_64_float.S │ │ │ │ │ │ ├── synth_x86_64_s32.S │ │ │ │ │ │ ├── synths.h │ │ │ │ │ │ ├── tabinit.c │ │ │ │ │ │ ├── tabinit.lo │ │ │ │ │ │ ├── tabinit_mmx.S │ │ │ │ │ │ ├── testcpu.c │ │ │ │ │ │ └── true.h │ │ │ │ │ ├── local.c │ │ │ │ │ ├── local.h │ │ │ │ │ ├── metaprint.c │ │ │ │ │ ├── metaprint.h │ │ │ │ │ ├── module.c │ │ │ │ │ ├── module.h │ │ │ │ │ ├── mpg123-id3dump.c │ │ │ │ │ ├── mpg123-strip.c │ │ │ │ │ ├── mpg123-with-modules │ │ │ │ │ ├── mpg123.c │ │ │ │ │ ├── mpg123app.h │ │ │ │ │ ├── output │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aix.c │ │ │ │ │ │ ├── alib.c │ │ │ │ │ │ ├── alsa.c │ │ │ │ │ │ ├── arts.c │ │ │ │ │ │ ├── coreaudio.c │ │ │ │ │ │ ├── dummy.c │ │ │ │ │ │ ├── esd.c │ │ │ │ │ │ ├── hp.c │ │ │ │ │ │ ├── jack.c │ │ │ │ │ │ ├── mint.c │ │ │ │ │ │ ├── nas.c │ │ │ │ │ │ ├── openal.c │ │ │ │ │ │ ├── os2.c │ │ │ │ │ │ ├── oss.c │ │ │ │ │ │ ├── portaudio.c │ │ │ │ │ │ ├── pulse.c │ │ │ │ │ │ ├── qsa.c │ │ │ │ │ │ ├── sdl.c │ │ │ │ │ │ ├── sgi.c │ │ │ │ │ │ ├── sndio.c │ │ │ │ │ │ ├── sun.c │ │ │ │ │ │ ├── tinyalsa.c │ │ │ │ │ │ ├── win32.c │ │ │ │ │ │ └── win32_wasapi.c │ │ │ │ │ ├── playlist.c │ │ │ │ │ ├── playlist.h │ │ │ │ │ ├── resolver.c │ │ │ │ │ ├── resolver.h │ │ │ │ │ ├── sfifo.c │ │ │ │ │ ├── sfifo.h │ │ │ │ │ ├── stamp-h1 │ │ │ │ │ ├── streamdump.c │ │ │ │ │ ├── streamdump.h │ │ │ │ │ ├── term.c │ │ │ │ │ ├── term.h │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── noise.c │ │ │ │ │ │ ├── plain_id3.c │ │ │ │ │ │ ├── seek_whence.c │ │ │ │ │ │ ├── testtext.h │ │ │ │ │ │ └── text.c │ │ │ │ │ ├── wav.c │ │ │ │ │ ├── wavhead.h │ │ │ │ │ ├── win32_net.c │ │ │ │ │ ├── win32_support.c │ │ │ │ │ ├── win32_support.h │ │ │ │ │ ├── xfermem.c │ │ │ │ │ └── xfermem.h │ │ │ │ └── windows-builds.sh │ │ │ ├── openal-soft-1.17.0 │ │ │ │ ├── Alc │ │ │ │ │ ├── ALc.c │ │ │ │ │ ├── ALu.c │ │ │ │ │ ├── alcConfig.c │ │ │ │ │ ├── alcRing.c │ │ │ │ │ ├── alstring.h │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── alsa.c │ │ │ │ │ │ ├── base.c │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── coreaudio.c │ │ │ │ │ │ ├── dsound.c │ │ │ │ │ │ ├── loopback.c │ │ │ │ │ │ ├── mmdevapi.c │ │ │ │ │ │ ├── null.c │ │ │ │ │ │ ├── opensl.c │ │ │ │ │ │ ├── oss.c │ │ │ │ │ │ ├── portaudio.c │ │ │ │ │ │ ├── pulseaudio.c │ │ │ │ │ │ ├── qsa.c │ │ │ │ │ │ ├── sndio.c │ │ │ │ │ │ ├── solaris.c │ │ │ │ │ │ ├── wave.c │ │ │ │ │ │ └── winmm.c │ │ │ │ │ ├── bs2b.c │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── autowah.c │ │ │ │ │ │ ├── chorus.c │ │ │ │ │ │ ├── compressor.c │ │ │ │ │ │ ├── dedicated.c │ │ │ │ │ │ ├── distortion.c │ │ │ │ │ │ ├── echo.c │ │ │ │ │ │ ├── equalizer.c │ │ │ │ │ │ ├── flanger.c │ │ │ │ │ │ ├── modulator.c │ │ │ │ │ │ ├── null.c │ │ │ │ │ │ └── reverb.c │ │ │ │ │ ├── evtqueue.h │ │ │ │ │ ├── helpers.c │ │ │ │ │ ├── hrtf.c │ │ │ │ │ ├── hrtf.h │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── base.c │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── dummy.c │ │ │ │ │ │ ├── fluidsynth.c │ │ │ │ │ │ ├── sf2load.c │ │ │ │ │ │ └── soft.c │ │ │ │ │ ├── mixer.c │ │ │ │ │ ├── mixer_c.c │ │ │ │ │ ├── mixer_defs.h │ │ │ │ │ ├── mixer_inc.c │ │ │ │ │ ├── mixer_neon.c │ │ │ │ │ ├── mixer_sse.c │ │ │ │ │ ├── mixer_sse2.c │ │ │ │ │ ├── mixer_sse41.c │ │ │ │ │ ├── panning.c │ │ │ │ │ └── vector.h │ │ │ │ ├── Android.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── OpenAL32 │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── alAuxEffectSlot.h │ │ │ │ │ │ ├── alBuffer.h │ │ │ │ │ │ ├── alEffect.h │ │ │ │ │ │ ├── alError.h │ │ │ │ │ │ ├── alFilter.h │ │ │ │ │ │ ├── alListener.h │ │ │ │ │ │ ├── alMain.h │ │ │ │ │ │ ├── alMidi.h │ │ │ │ │ │ ├── alSource.h │ │ │ │ │ │ ├── alThunk.h │ │ │ │ │ │ ├── alu.h │ │ │ │ │ │ ├── bs2b.h │ │ │ │ │ │ └── sample_cvt.h │ │ │ │ │ ├── alAuxEffectSlot.c │ │ │ │ │ ├── alBuffer.c │ │ │ │ │ ├── alEffect.c │ │ │ │ │ ├── alError.c │ │ │ │ │ ├── alExtension.c │ │ │ │ │ ├── alFilter.c │ │ │ │ │ ├── alFontsound.c │ │ │ │ │ ├── alListener.c │ │ │ │ │ ├── alMidi.c │ │ │ │ │ ├── alPreset.c │ │ │ │ │ ├── alSoundfont.c │ │ │ │ │ ├── alSource.c │ │ │ │ │ ├── alState.c │ │ │ │ │ ├── alThunk.c │ │ │ │ │ └── sample_cvt.c │ │ │ │ ├── README │ │ │ │ ├── XCompile.txt │ │ │ │ ├── alsoftrc.sample │ │ │ │ ├── cmake │ │ │ │ │ ├── CheckFileOffsetBits.c │ │ │ │ │ ├── CheckFileOffsetBits.cmake │ │ │ │ │ ├── CheckSharedFunctionExists.cmake │ │ │ │ │ ├── FindALSA.cmake │ │ │ │ │ ├── FindAudioIO.cmake │ │ │ │ │ ├── FindDSound.cmake │ │ │ │ │ ├── FindFFmpeg.cmake │ │ │ │ │ ├── FindFluidSynth.cmake │ │ │ │ │ ├── FindOSS.cmake │ │ │ │ │ ├── FindPortAudio.cmake │ │ │ │ │ ├── FindPulseAudio.cmake │ │ │ │ │ ├── FindQSA.cmake │ │ │ │ │ ├── FindSDL2.cmake │ │ │ │ │ ├── FindSDL_sound.cmake │ │ │ │ │ └── FindSoundIO.cmake │ │ │ │ ├── common │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── rwlock.c │ │ │ │ │ ├── threads.c │ │ │ │ │ └── uintmap.c │ │ │ │ ├── config.h │ │ │ │ ├── config.h.in │ │ │ │ ├── env-vars.txt │ │ │ │ ├── examples │ │ │ │ │ ├── alffplay.c │ │ │ │ │ ├── allatency.c │ │ │ │ │ ├── alloopback.c │ │ │ │ │ ├── alreverb.c │ │ │ │ │ ├── alstream.c │ │ │ │ │ └── common │ │ │ │ │ │ ├── alhelpers.c │ │ │ │ │ │ ├── alhelpers.h │ │ │ │ │ │ ├── sdl_sound.c │ │ │ │ │ │ └── sdl_sound.h │ │ │ │ ├── hrtf.txt │ │ │ │ ├── hrtf │ │ │ │ │ ├── default-44100.mhr │ │ │ │ │ └── default-48000.mhr │ │ │ │ ├── include │ │ │ │ │ ├── AL │ │ │ │ │ │ ├── al.h │ │ │ │ │ │ ├── alc.h │ │ │ │ │ │ ├── alext.h │ │ │ │ │ │ ├── efx-creative.h │ │ │ │ │ │ ├── efx-presets.h │ │ │ │ │ │ └── efx.h │ │ │ │ │ ├── align.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bool.h │ │ │ │ │ ├── rwlock.h │ │ │ │ │ ├── static_assert.h │ │ │ │ │ ├── threads.h │ │ │ │ │ └── uintmap.h │ │ │ │ ├── openal.pc.in │ │ │ │ └── utils │ │ │ │ │ ├── CIAIR.def │ │ │ │ │ ├── IRC_1005.def │ │ │ │ │ ├── MIT_KEMAR.def │ │ │ │ │ ├── alsoft-config │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── mainwindow.ui │ │ │ │ │ ├── makehrtf.c │ │ │ │ │ └── openal-info.c │ │ │ └── physfs-2.1.0 │ │ │ │ ├── .hg_archival.txt │ │ │ │ ├── .hgignore │ │ │ │ ├── .hgtags │ │ │ │ ├── Android.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── docs │ │ │ │ ├── CHANGELOG.txt │ │ │ │ ├── CREDITS.txt │ │ │ │ ├── Doxyfile │ │ │ │ ├── INSTALL.txt │ │ │ │ └── TODO.txt │ │ │ │ ├── extras │ │ │ │ ├── PhysFS.NET │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── PhysFS.NET.csproj │ │ │ │ │ ├── PhysFS.NET.sln │ │ │ │ │ ├── PhysFS.cs │ │ │ │ │ ├── PhysFSFileStream.cs │ │ │ │ │ ├── PhysFS_DLL.cs │ │ │ │ │ ├── README.txt │ │ │ │ │ └── TestApp │ │ │ │ │ │ ├── App.ico │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── TestApp.csproj │ │ │ │ │ │ ├── TestApp.sln │ │ │ │ │ │ ├── TestAppForm.cs │ │ │ │ │ │ └── TestAppForm.resx │ │ │ │ ├── abs-file.h │ │ │ │ ├── casefolding.txt │ │ │ │ ├── globbing.c │ │ │ │ ├── globbing.h │ │ │ │ ├── ignorecase.c │ │ │ │ ├── ignorecase.h │ │ │ │ ├── makecasefoldhashtable.pl │ │ │ │ ├── physfs-swig.i │ │ │ │ ├── physfs.pc.in │ │ │ │ ├── physfshttpd.c │ │ │ │ ├── physfsrwops.c │ │ │ │ ├── physfsrwops.h │ │ │ │ ├── physfsunpack.c │ │ │ │ ├── selfextract.c │ │ │ │ └── uninstall.sh │ │ │ │ ├── src │ │ │ │ ├── archiver_dir.c │ │ │ │ ├── archiver_grp.c │ │ │ │ ├── archiver_hog.c │ │ │ │ ├── archiver_iso9660.c │ │ │ │ ├── archiver_lzma.c │ │ │ │ ├── archiver_mvl.c │ │ │ │ ├── archiver_qpak.c │ │ │ │ ├── archiver_slb.c │ │ │ │ ├── archiver_unpacked.c │ │ │ │ ├── archiver_wad.c │ │ │ │ ├── archiver_zip.c │ │ │ │ ├── lzma │ │ │ │ │ ├── 7zC.txt │ │ │ │ │ ├── 7zFormat.txt │ │ │ │ │ ├── C │ │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ │ ├── 7zCrcT8.c │ │ │ │ │ │ ├── Alloc.c │ │ │ │ │ │ ├── Alloc.h │ │ │ │ │ │ ├── Archive │ │ │ │ │ │ │ └── 7z │ │ │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── Compress │ │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ │ │ ├── BranchTypes.h │ │ │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ │ │ ├── BranchX86_2.c │ │ │ │ │ │ │ │ └── BranchX86_2.h │ │ │ │ │ │ │ ├── Huffman │ │ │ │ │ │ │ │ ├── HuffmanEncode.c │ │ │ │ │ │ │ │ └── HuffmanEncode.h │ │ │ │ │ │ │ ├── Lz │ │ │ │ │ │ │ │ ├── LzHash.h │ │ │ │ │ │ │ │ ├── MatchFinder.c │ │ │ │ │ │ │ │ ├── MatchFinder.h │ │ │ │ │ │ │ │ ├── MatchFinderMt.c │ │ │ │ │ │ │ │ └── MatchFinderMt.h │ │ │ │ │ │ │ └── Lzma │ │ │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ │ │ └── LzmaTypes.h │ │ │ │ │ │ ├── CpuArch.h │ │ │ │ │ │ ├── IStream.h │ │ │ │ │ │ ├── Sort.c │ │ │ │ │ │ ├── Sort.h │ │ │ │ │ │ ├── Threads.c │ │ │ │ │ │ ├── Threads.h │ │ │ │ │ │ └── Types.h │ │ │ │ │ ├── CPP │ │ │ │ │ │ ├── 7zip │ │ │ │ │ │ │ ├── Archive │ │ │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ │ │ └── IArchive.h │ │ │ │ │ │ │ ├── Bundles │ │ │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ │ │ ├── Compress │ │ │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ │ │ │ ├── BCJ2Register.cpp │ │ │ │ │ │ │ │ │ ├── BCJRegister.cpp │ │ │ │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ │ │ ├── Copy │ │ │ │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ │ │ │ ├── LZMARegister.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ │ ├── ICoder.h │ │ │ │ │ │ │ ├── IDecl.h │ │ │ │ │ │ │ ├── IPassword.h │ │ │ │ │ │ │ ├── IProgress.h │ │ │ │ │ │ │ ├── IStream.h │ │ │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ │ │ ├── PropID.h │ │ │ │ │ │ │ └── UI │ │ │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ └── makefile │ │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ │ │ └── Console │ │ │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ │ │ └── afxres.h │ │ │ │ │ │ ├── Build.mak │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ │ │ ├── Buffer.h │ │ │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ │ │ ├── ComTry.h │ │ │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ │ │ ├── Defs.h │ │ │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ │ │ ├── IntToString.h │ │ │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ │ │ ├── MyCom.h │ │ │ │ │ │ │ ├── MyException.h │ │ │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ │ │ ├── MyString.h │ │ │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ │ │ ├── MyVector.h │ │ │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ │ │ ├── Types.h │ │ │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ │ │ └── Wildcard.h │ │ │ │ │ │ └── Windows │ │ │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ │ │ ├── DLL.h │ │ │ │ │ │ │ ├── Defs.h │ │ │ │ │ │ │ ├── Error.cpp │ │ │ │ │ │ │ ├── Error.h │ │ │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ │ │ ├── FileDir.h │ │ │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ │ │ ├── FileFind.h │ │ │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ │ │ ├── FileIO.h │ │ │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ │ │ ├── FileName.h │ │ │ │ │ │ │ ├── Handle.h │ │ │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ │ │ ├── System.cpp │ │ │ │ │ │ │ ├── System.h │ │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ │ └── Time.h │ │ │ │ │ ├── CS │ │ │ │ │ │ └── 7zip │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CRC.cs │ │ │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ │ │ ├── Compress │ │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ │ │ └── ICoder.cs │ │ │ │ │ ├── Java │ │ │ │ │ │ └── SevenZip │ │ │ │ │ │ │ ├── CRC.java │ │ │ │ │ │ │ ├── Compression │ │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ │ │ └── LzmaBench.java │ │ │ │ │ ├── LGPL.txt │ │ │ │ │ ├── Methods.txt │ │ │ │ │ ├── history.txt │ │ │ │ │ ├── lzma.exe │ │ │ │ │ └── lzma.txt │ │ │ │ ├── physfs.c │ │ │ │ ├── physfs.h │ │ │ │ ├── physfs_byteorder.c │ │ │ │ ├── physfs_casefolding.h │ │ │ │ ├── physfs_internal.h │ │ │ │ ├── physfs_miniz.h │ │ │ │ ├── physfs_platforms.h │ │ │ │ ├── physfs_unicode.c │ │ │ │ ├── platform_beos.cpp │ │ │ │ ├── platform_macosx.c │ │ │ │ ├── platform_posix.c │ │ │ │ ├── platform_unix.c │ │ │ │ └── platform_windows.c │ │ │ │ └── test │ │ │ │ ├── test_physfs.c │ │ │ │ ├── test_physfs.pl │ │ │ │ └── test_physfs.rb │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── org │ │ │ └── love2d │ │ │ └── android │ │ │ ├── DownloadActivity.java │ │ │ ├── DownloadService.java │ │ │ └── GameActivity.java │ ├── love_icon_512x512.png │ ├── project.properties │ └── settings.gradle ├── ios │ ├── CMakeLists.txt │ ├── bitbucket-pipelines.yml │ ├── changes.txt │ ├── extra │ │ ├── appveyor │ │ │ └── appveyor.yml │ │ ├── cmake │ │ │ ├── FindLuaJIT.cmake │ │ │ ├── FindMPG123.cmake │ │ │ ├── FindModPlug.cmake │ │ │ ├── FindSDL2.cmake │ │ │ ├── FindTheora.cmake │ │ │ └── FindVorbis.cmake │ │ ├── nsis │ │ │ ├── game.ico │ │ │ ├── left.bmp │ │ │ ├── love.ico │ │ │ ├── love.nsi │ │ │ └── top.bmp │ │ ├── reshax │ │ │ └── res │ │ │ │ ├── knoll1.png │ │ │ │ ├── planet.png │ │ │ │ └── star1.png │ │ ├── resources │ │ │ ├── Vera.ttf │ │ │ ├── b64.lua │ │ │ ├── heart.png │ │ │ └── pig.png │ │ └── windows │ │ │ ├── love.ico │ │ │ └── love.rc │ ├── license.txt │ ├── platform │ │ ├── unix │ │ │ ├── Makefile.am │ │ │ ├── application-x-love-game.svg │ │ │ ├── automagic │ │ │ ├── configure.ac │ │ │ ├── cpp11.m4 │ │ │ ├── debian │ │ │ │ ├── changelog.in │ │ │ │ ├── compat │ │ │ │ ├── control.in │ │ │ │ ├── copyright │ │ │ │ ├── docs │ │ │ │ ├── liblove-unstable.install │ │ │ │ ├── liblove-unstable0.docs │ │ │ │ ├── liblove-unstable0.install │ │ │ │ ├── liblove.install │ │ │ │ ├── liblove0.docs │ │ │ │ ├── liblove0.install │ │ │ │ ├── love-unstable.install │ │ │ │ ├── love-unstable.manpages │ │ │ │ ├── love.install │ │ │ │ ├── love.manpages │ │ │ │ ├── rules.in │ │ │ │ └── source │ │ │ │ │ └── format │ │ │ ├── exclude │ │ │ ├── gen-makefile │ │ │ ├── genmodules │ │ │ ├── love.6 │ │ │ ├── love.desktop.in │ │ │ ├── love.svg │ │ │ └── love.xml │ │ └── xcode │ │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ ├── GameIcon.iconset │ │ │ │ ├── icon_128x128.png │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ ├── icon_16x16.png │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ ├── icon_256x256.png │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ ├── icon_32x32.png │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ ├── icon_512x512.png │ │ │ │ └── icon_512x512@2x.png │ │ │ ├── OS X AppIcon.appiconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 128.png │ │ │ │ ├── 16.png │ │ │ │ ├── 256.png │ │ │ │ ├── 32.png │ │ │ │ ├── 512.png │ │ │ │ ├── 64.png │ │ │ │ └── Contents.json │ │ │ ├── iOS AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-29pt@1x-1.png │ │ │ │ ├── Icon-29pt@2x-1.png │ │ │ │ ├── Icon-57.png │ │ │ │ ├── Icon-57@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small-40.png │ │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ ├── Icon-Small-50.png │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ ├── hmm.png │ │ │ │ └── icon-29pt@3x.png │ │ │ └── iOS LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-375w-667h@2x~iphone.png │ │ │ │ ├── Default-414w-736h@3x~iphone.png │ │ │ │ ├── Default-568h@2x~iphone-1.png │ │ │ │ ├── Default-568h@2x~iphone.png │ │ │ │ ├── Default-Landscape-414w-736h@3x.png │ │ │ │ ├── Default-LandscapeLeft@2x~ipad.png │ │ │ │ ├── Default-LandscapeRight@2x~ipad.png │ │ │ │ ├── Default-LandscapeRight~ipad.png │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ ├── Default-PortraitUpsideDown@2x~ipad.png │ │ │ │ ├── Default-PortraitUpsideDown~ipad-1.png │ │ │ │ ├── Default-PortraitUpsideDown~ipad.png │ │ │ │ ├── Default-Portrait~ipad-1.png │ │ │ │ ├── Default-Portrait~ipad-2.png │ │ │ │ ├── Default-Portrait~ipad-3.png │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ ├── Default@2x~iphone-1.png │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ └── Default~iphone.png │ │ │ ├── Super Sphere.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── default.pbxuser │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── kennethreitz.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── kennethreitz.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── love-ios.xcscheme │ │ │ │ ├── love-macosx.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── ios │ │ │ ├── .DS_Store │ │ │ ├── Launch Screen.xib │ │ │ ├── include │ │ │ │ ├── .DS_Store │ │ │ │ ├── SDL2 │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── 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_iphoneos.h │ │ │ │ │ ├── SDL_config_minimal.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_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.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 │ │ │ │ ├── freetype │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── pcftypes.h │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ ├── luajit │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── luajit.h │ │ │ │ │ └── lualib.h │ │ │ │ ├── modplug │ │ │ │ │ └── modplug.h │ │ │ │ ├── ogg │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── physfs │ │ │ │ │ └── physfs.h │ │ │ │ ├── theora │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── theora.h │ │ │ │ │ ├── theoradec.h │ │ │ │ │ └── theoraenc.h │ │ │ │ └── vorbis │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ ├── libraries │ │ │ │ ├── SDL2 │ │ │ │ │ └── libSDL2.a │ │ │ │ ├── freetype │ │ │ │ │ └── libFreetype2.a │ │ │ │ ├── luajit │ │ │ │ │ └── libluajit.a │ │ │ │ ├── modplug │ │ │ │ │ └── libmodplug.a │ │ │ │ ├── ogg │ │ │ │ │ └── libogg.a │ │ │ │ ├── physfs │ │ │ │ │ └── libphysfs.a │ │ │ │ ├── theora │ │ │ │ │ └── libtheora.a │ │ │ │ └── vorbis │ │ │ │ │ └── libvorbis.a │ │ │ ├── love-ios.plist │ │ │ ├── lovedocument.icns │ │ │ └── luajit-iOS.sh │ │ │ ├── liblove.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── kennethreitz.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── liblove-ios.xcscheme │ │ │ │ ├── liblove-macosx.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── love.entitlements │ │ │ └── macosx │ │ │ ├── liblove-macosx.plist │ │ │ └── love-macosx.plist │ ├── readme-iOS.rtf │ ├── readme.md │ └── src │ │ ├── common │ │ ├── Data.h │ │ ├── EnumMap.h │ │ ├── Exception.cpp │ │ ├── Exception.h │ │ ├── Matrix.cpp │ │ ├── Matrix.h │ │ ├── Memoizer.cpp │ │ ├── Memoizer.h │ │ ├── Module.cpp │ │ ├── Module.h │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── Reference.cpp │ │ ├── Reference.h │ │ ├── Stream.h │ │ ├── StringMap.h │ │ ├── Variant.cpp │ │ ├── Variant.h │ │ ├── Vector.cpp │ │ ├── Vector.h │ │ ├── android.cpp │ │ ├── android.h │ │ ├── b64.cpp │ │ ├── b64.h │ │ ├── config.h │ │ ├── delay.cpp │ │ ├── delay.h │ │ ├── int.h │ │ ├── ios.h │ │ ├── ios.mm │ │ ├── macosx.h │ │ ├── macosx.mm │ │ ├── math.h │ │ ├── runtime.cpp │ │ ├── runtime.h │ │ ├── types.cpp │ │ ├── types.h │ │ ├── utf8.cpp │ │ ├── utf8.h │ │ ├── version.h │ │ ├── wrap_Data.cpp │ │ └── wrap_Data.h │ │ ├── libraries │ │ ├── Box2D │ │ │ ├── Box2D.h │ │ │ ├── Collision │ │ │ │ ├── Shapes │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ └── b2Shape.h │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ ├── b2BroadPhase.h │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ ├── b2Collision.cpp │ │ │ │ ├── b2Collision.h │ │ │ │ ├── b2Distance.cpp │ │ │ │ ├── b2Distance.h │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ ├── b2DynamicTree.h │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ ├── b2Draw.cpp │ │ │ │ ├── b2Draw.h │ │ │ │ ├── b2GrowableStack.h │ │ │ │ ├── b2Math.cpp │ │ │ │ ├── b2Math.h │ │ │ │ ├── b2Settings.cpp │ │ │ │ ├── b2Settings.h │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ ├── b2StackAllocator.h │ │ │ │ ├── b2Timer.cpp │ │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ │ ├── Contacts │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ ├── Joints │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ │ ├── b2MotorJoint.h │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ ├── b2Body.cpp │ │ │ │ ├── b2Body.h │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ ├── b2ContactManager.h │ │ │ │ ├── b2Fixture.cpp │ │ │ │ ├── b2Fixture.h │ │ │ │ ├── b2Island.cpp │ │ │ │ ├── b2Island.h │ │ │ │ ├── b2TimeStep.h │ │ │ │ ├── b2World.cpp │ │ │ │ ├── b2World.h │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ └── b2WorldCallbacks.h │ │ │ ├── README.MODIFIED │ │ │ └── Rope │ │ │ │ ├── b2Rope.cpp │ │ │ │ └── b2Rope.h │ │ ├── Wuff │ │ │ ├── wuff.c │ │ │ ├── wuff.h │ │ │ ├── wuff_config.h │ │ │ ├── wuff_convert.c │ │ │ ├── wuff_convert.h │ │ │ ├── wuff_internal.c │ │ │ ├── wuff_internal.h │ │ │ └── wuff_memory.c │ │ ├── ddsparse │ │ │ ├── ddsinfo.h │ │ │ ├── ddsparse.cpp │ │ │ └── ddsparse.h │ │ ├── enet │ │ │ ├── enet.cpp │ │ │ ├── libenet │ │ │ │ ├── ChangeLog │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── callbacks.c │ │ │ │ ├── compress.c │ │ │ │ ├── host.c │ │ │ │ ├── include │ │ │ │ │ └── enet │ │ │ │ │ │ ├── callbacks.h │ │ │ │ │ │ ├── enet.h │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ ├── protocol.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── unix.h │ │ │ │ │ │ ├── utility.h │ │ │ │ │ │ └── win32.h │ │ │ │ ├── list.c │ │ │ │ ├── packet.c │ │ │ │ ├── peer.c │ │ │ │ ├── protocol.c │ │ │ │ ├── unix.c │ │ │ │ └── win32.c │ │ │ └── lua-enet.h │ │ ├── glad │ │ │ ├── glad.cpp │ │ │ ├── glad.hpp │ │ │ └── gladfuncs.hpp │ │ ├── lodepng │ │ │ ├── lodepng.cpp │ │ │ └── lodepng.h │ │ ├── luasocket │ │ │ ├── libluasocket │ │ │ │ ├── auxiliar.c │ │ │ │ ├── auxiliar.h │ │ │ │ ├── buffer.c │ │ │ │ ├── buffer.h │ │ │ │ ├── except.c │ │ │ │ ├── except.h │ │ │ │ ├── ftp.lua │ │ │ │ ├── ftp.lua.h │ │ │ │ ├── http.lua │ │ │ │ ├── http.lua.h │ │ │ │ ├── inet.c │ │ │ │ ├── inet.h │ │ │ │ ├── io.c │ │ │ │ ├── io.h │ │ │ │ ├── ltn12.lua │ │ │ │ ├── ltn12.lua.h │ │ │ │ ├── lua.h │ │ │ │ ├── luasocket.c │ │ │ │ ├── luasocket.h │ │ │ │ ├── mime.c │ │ │ │ ├── mime.h │ │ │ │ ├── mime.lua │ │ │ │ ├── mime.lua.h │ │ │ │ ├── options.c │ │ │ │ ├── options.h │ │ │ │ ├── pre.lua │ │ │ │ ├── select.c │ │ │ │ ├── select.h │ │ │ │ ├── smtp.lua │ │ │ │ ├── smtp.lua.h │ │ │ │ ├── socket.h │ │ │ │ ├── socket.lua │ │ │ │ ├── socket.lua.h │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp.h │ │ │ │ ├── timeout.c │ │ │ │ ├── timeout.h │ │ │ │ ├── tp.lua │ │ │ │ ├── tp.lua.h │ │ │ │ ├── udp.c │ │ │ │ ├── udp.h │ │ │ │ ├── unix.c │ │ │ │ ├── unix.h │ │ │ │ ├── url.lua │ │ │ │ ├── url.lua.h │ │ │ │ ├── usocket.c │ │ │ │ ├── usocket.h │ │ │ │ ├── wsocket.c │ │ │ │ └── wsocket.h │ │ │ ├── luasocket.cpp │ │ │ └── luasocket.h │ │ ├── luautf8 │ │ │ ├── lprefix.h │ │ │ ├── lutf8lib.c │ │ │ └── lutf8lib.h │ │ ├── lz4 │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4hc.c │ │ │ └── lz4hc.h │ │ ├── noise1234 │ │ │ ├── noise1234.cpp │ │ │ ├── noise1234.h │ │ │ ├── simplexnoise1234.cpp │ │ │ └── simplexnoise1234.h │ │ ├── stb │ │ │ └── stb_image.h │ │ └── utf8 │ │ │ ├── utf8.h │ │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ │ ├── love.cpp │ │ ├── modules │ │ ├── audio │ │ │ ├── Audio.cpp │ │ │ ├── Audio.h │ │ │ ├── Source.cpp │ │ │ ├── Source.h │ │ │ ├── null │ │ │ │ ├── Audio.cpp │ │ │ │ ├── Audio.h │ │ │ │ ├── Source.cpp │ │ │ │ └── Source.h │ │ │ ├── openal │ │ │ │ ├── Audio.cpp │ │ │ │ ├── Audio.h │ │ │ │ ├── Pool.cpp │ │ │ │ ├── Pool.h │ │ │ │ ├── Source.cpp │ │ │ │ └── Source.h │ │ │ ├── wrap_Audio.cpp │ │ │ ├── wrap_Audio.h │ │ │ ├── wrap_Source.cpp │ │ │ └── wrap_Source.h │ │ ├── event │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── sdl │ │ │ │ ├── Event.cpp │ │ │ │ └── Event.h │ │ │ ├── wrap_Event.cpp │ │ │ └── wrap_Event.h │ │ ├── filesystem │ │ │ ├── DroppedFile.cpp │ │ │ ├── DroppedFile.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── FileData.cpp │ │ │ ├── FileData.h │ │ │ ├── Filesystem.cpp │ │ │ ├── Filesystem.h │ │ │ ├── physfs │ │ │ │ ├── File.cpp │ │ │ │ ├── File.h │ │ │ │ ├── Filesystem.cpp │ │ │ │ └── Filesystem.h │ │ │ ├── wrap_DroppedFile.cpp │ │ │ ├── wrap_DroppedFile.h │ │ │ ├── wrap_File.cpp │ │ │ ├── wrap_File.h │ │ │ ├── wrap_FileData.cpp │ │ │ ├── wrap_FileData.h │ │ │ ├── wrap_Filesystem.cpp │ │ │ └── wrap_Filesystem.h │ │ ├── font │ │ │ ├── BMFontRasterizer.cpp │ │ │ ├── BMFontRasterizer.h │ │ │ ├── Font.cpp │ │ │ ├── Font.h │ │ │ ├── GlyphData.cpp │ │ │ ├── GlyphData.h │ │ │ ├── ImageRasterizer.cpp │ │ │ ├── ImageRasterizer.h │ │ │ ├── Rasterizer.cpp │ │ │ ├── Rasterizer.h │ │ │ ├── TrueTypeRasterizer.cpp │ │ │ ├── TrueTypeRasterizer.h │ │ │ ├── Vera.ttf.h │ │ │ ├── freetype │ │ │ │ ├── Font.cpp │ │ │ │ ├── Font.h │ │ │ │ ├── TrueTypeRasterizer.cpp │ │ │ │ └── TrueTypeRasterizer.h │ │ │ ├── wrap_Font.cpp │ │ │ ├── wrap_Font.h │ │ │ ├── wrap_GlyphData.cpp │ │ │ ├── wrap_GlyphData.h │ │ │ ├── wrap_Rasterizer.cpp │ │ │ └── wrap_Rasterizer.h │ │ ├── graphics │ │ │ ├── Color.h │ │ │ ├── Drawable.h │ │ │ ├── Graphics.cpp │ │ │ ├── Graphics.h │ │ │ ├── ParticleSystem.cpp │ │ │ ├── ParticleSystem.h │ │ │ ├── Quad.cpp │ │ │ ├── Quad.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── Volatile.cpp │ │ │ ├── Volatile.h │ │ │ ├── opengl │ │ │ │ ├── Canvas.cpp │ │ │ │ ├── Canvas.h │ │ │ │ ├── Font.cpp │ │ │ │ ├── Font.h │ │ │ │ ├── GLBuffer.cpp │ │ │ │ ├── GLBuffer.h │ │ │ │ ├── Graphics.cpp │ │ │ │ ├── Graphics.h │ │ │ │ ├── Image.cpp │ │ │ │ ├── Image.h │ │ │ │ ├── Mesh.cpp │ │ │ │ ├── Mesh.h │ │ │ │ ├── OpenGL.cpp │ │ │ │ ├── OpenGL.h │ │ │ │ ├── ParticleSystem.cpp │ │ │ │ ├── ParticleSystem.h │ │ │ │ ├── Polyline.cpp │ │ │ │ ├── Polyline.h │ │ │ │ ├── Shader.cpp │ │ │ │ ├── Shader.h │ │ │ │ ├── SpriteBatch.cpp │ │ │ │ ├── SpriteBatch.h │ │ │ │ ├── Text.cpp │ │ │ │ ├── Text.h │ │ │ │ ├── Video.cpp │ │ │ │ ├── Video.h │ │ │ │ ├── wrap_Canvas.cpp │ │ │ │ ├── wrap_Canvas.h │ │ │ │ ├── wrap_Font.cpp │ │ │ │ ├── wrap_Font.h │ │ │ │ ├── wrap_Graphics.cpp │ │ │ │ ├── wrap_Graphics.h │ │ │ │ ├── wrap_Graphics.lua │ │ │ │ ├── wrap_Image.cpp │ │ │ │ ├── wrap_Image.h │ │ │ │ ├── wrap_Mesh.cpp │ │ │ │ ├── wrap_Mesh.h │ │ │ │ ├── wrap_ParticleSystem.cpp │ │ │ │ ├── wrap_ParticleSystem.h │ │ │ │ ├── wrap_Shader.cpp │ │ │ │ ├── wrap_Shader.h │ │ │ │ ├── wrap_SpriteBatch.cpp │ │ │ │ ├── wrap_SpriteBatch.h │ │ │ │ ├── wrap_Text.cpp │ │ │ │ ├── wrap_Text.h │ │ │ │ ├── wrap_Video.cpp │ │ │ │ ├── wrap_Video.h │ │ │ │ └── wrap_Video.lua │ │ │ ├── wrap_Quad.cpp │ │ │ ├── wrap_Quad.h │ │ │ ├── wrap_Texture.cpp │ │ │ └── wrap_Texture.h │ │ ├── image │ │ │ ├── CompressedImageData.cpp │ │ │ ├── CompressedImageData.h │ │ │ ├── Image.h │ │ │ ├── ImageData.cpp │ │ │ ├── ImageData.h │ │ │ ├── magpie │ │ │ │ ├── ASTCHandler.cpp │ │ │ │ ├── ASTCHandler.h │ │ │ │ ├── CompressedFormatHandler.h │ │ │ │ ├── CompressedImageData.cpp │ │ │ │ ├── CompressedImageData.h │ │ │ │ ├── FormatHandler.cpp │ │ │ │ ├── FormatHandler.h │ │ │ │ ├── Image.cpp │ │ │ │ ├── Image.h │ │ │ │ ├── ImageData.cpp │ │ │ │ ├── ImageData.h │ │ │ │ ├── KTXHandler.cpp │ │ │ │ ├── KTXHandler.h │ │ │ │ ├── PKMHandler.cpp │ │ │ │ ├── PKMHandler.h │ │ │ │ ├── PNGHandler.cpp │ │ │ │ ├── PNGHandler.h │ │ │ │ ├── PVRHandler.cpp │ │ │ │ ├── PVRHandler.h │ │ │ │ ├── STBHandler.cpp │ │ │ │ ├── STBHandler.h │ │ │ │ ├── ddsHandler.cpp │ │ │ │ └── ddsHandler.h │ │ │ ├── wrap_CompressedImageData.cpp │ │ │ ├── wrap_CompressedImageData.h │ │ │ ├── wrap_Image.cpp │ │ │ ├── wrap_Image.h │ │ │ ├── wrap_ImageData.cpp │ │ │ ├── wrap_ImageData.h │ │ │ └── wrap_ImageData.lua │ │ ├── joystick │ │ │ ├── Joystick.cpp │ │ │ ├── Joystick.h │ │ │ ├── JoystickModule.h │ │ │ ├── sdl │ │ │ │ ├── Joystick.cpp │ │ │ │ ├── Joystick.h │ │ │ │ ├── JoystickModule.cpp │ │ │ │ └── JoystickModule.h │ │ │ ├── wrap_Joystick.cpp │ │ │ ├── wrap_Joystick.h │ │ │ ├── wrap_JoystickModule.cpp │ │ │ └── wrap_JoystickModule.h │ │ ├── keyboard │ │ │ ├── Keyboard.cpp │ │ │ ├── Keyboard.h │ │ │ ├── sdl │ │ │ │ ├── Keyboard.cpp │ │ │ │ └── Keyboard.h │ │ │ ├── wrap_Keyboard.cpp │ │ │ └── wrap_Keyboard.h │ │ ├── love │ │ │ ├── love.cpp │ │ │ └── love.h │ │ ├── math │ │ │ ├── BezierCurve.cpp │ │ │ ├── BezierCurve.h │ │ │ ├── CompressedData.cpp │ │ │ ├── CompressedData.h │ │ │ ├── Compressor.cpp │ │ │ ├── Compressor.h │ │ │ ├── MathModule.cpp │ │ │ ├── MathModule.h │ │ │ ├── RandomGenerator.cpp │ │ │ ├── RandomGenerator.h │ │ │ ├── wrap_BezierCurve.cpp │ │ │ ├── wrap_BezierCurve.h │ │ │ ├── wrap_CompressedData.cpp │ │ │ ├── wrap_CompressedData.h │ │ │ ├── wrap_Math.cpp │ │ │ ├── wrap_Math.h │ │ │ ├── wrap_Math.lua │ │ │ ├── wrap_RandomGenerator.cpp │ │ │ ├── wrap_RandomGenerator.h │ │ │ └── wrap_RandomGenerator.lua │ │ ├── mouse │ │ │ ├── Cursor.cpp │ │ │ ├── Cursor.h │ │ │ ├── Mouse.h │ │ │ ├── sdl │ │ │ │ ├── Cursor.cpp │ │ │ │ ├── Cursor.h │ │ │ │ ├── Mouse.cpp │ │ │ │ └── Mouse.h │ │ │ ├── wrap_Cursor.cpp │ │ │ ├── wrap_Cursor.h │ │ │ ├── wrap_Mouse.cpp │ │ │ └── wrap_Mouse.h │ │ ├── physics │ │ │ ├── Body.cpp │ │ │ ├── Body.h │ │ │ ├── Joint.cpp │ │ │ ├── Joint.h │ │ │ ├── Shape.cpp │ │ │ ├── Shape.h │ │ │ └── box2d │ │ │ │ ├── Body.cpp │ │ │ │ ├── Body.h │ │ │ │ ├── ChainShape.cpp │ │ │ │ ├── ChainShape.h │ │ │ │ ├── CircleShape.cpp │ │ │ │ ├── CircleShape.h │ │ │ │ ├── Contact.cpp │ │ │ │ ├── Contact.h │ │ │ │ ├── DistanceJoint.cpp │ │ │ │ ├── DistanceJoint.h │ │ │ │ ├── EdgeShape.cpp │ │ │ │ ├── EdgeShape.h │ │ │ │ ├── Fixture.cpp │ │ │ │ ├── Fixture.h │ │ │ │ ├── FrictionJoint.cpp │ │ │ │ ├── FrictionJoint.h │ │ │ │ ├── GearJoint.cpp │ │ │ │ ├── GearJoint.h │ │ │ │ ├── Joint.cpp │ │ │ │ ├── Joint.h │ │ │ │ ├── MotorJoint.cpp │ │ │ │ ├── MotorJoint.h │ │ │ │ ├── MouseJoint.cpp │ │ │ │ ├── MouseJoint.h │ │ │ │ ├── Physics.cpp │ │ │ │ ├── Physics.h │ │ │ │ ├── PolygonShape.cpp │ │ │ │ ├── PolygonShape.h │ │ │ │ ├── PrismaticJoint.cpp │ │ │ │ ├── PrismaticJoint.h │ │ │ │ ├── PulleyJoint.cpp │ │ │ │ ├── PulleyJoint.h │ │ │ │ ├── RevoluteJoint.cpp │ │ │ │ ├── RevoluteJoint.h │ │ │ │ ├── RopeJoint.cpp │ │ │ │ ├── RopeJoint.h │ │ │ │ ├── Shape.cpp │ │ │ │ ├── Shape.h │ │ │ │ ├── WeldJoint.cpp │ │ │ │ ├── WeldJoint.h │ │ │ │ ├── WheelJoint.cpp │ │ │ │ ├── WheelJoint.h │ │ │ │ ├── World.cpp │ │ │ │ ├── World.h │ │ │ │ ├── wrap_Body.cpp │ │ │ │ ├── wrap_Body.h │ │ │ │ ├── wrap_ChainShape.cpp │ │ │ │ ├── wrap_ChainShape.h │ │ │ │ ├── wrap_CircleShape.cpp │ │ │ │ ├── wrap_CircleShape.h │ │ │ │ ├── wrap_Contact.cpp │ │ │ │ ├── wrap_Contact.h │ │ │ │ ├── wrap_DistanceJoint.cpp │ │ │ │ ├── wrap_DistanceJoint.h │ │ │ │ ├── wrap_EdgeShape.cpp │ │ │ │ ├── wrap_EdgeShape.h │ │ │ │ ├── wrap_Fixture.cpp │ │ │ │ ├── wrap_Fixture.h │ │ │ │ ├── wrap_FrictionJoint.cpp │ │ │ │ ├── wrap_FrictionJoint.h │ │ │ │ ├── wrap_GearJoint.cpp │ │ │ │ ├── wrap_GearJoint.h │ │ │ │ ├── wrap_Joint.cpp │ │ │ │ ├── wrap_Joint.h │ │ │ │ ├── wrap_MotorJoint.cpp │ │ │ │ ├── wrap_MotorJoint.h │ │ │ │ ├── wrap_MouseJoint.cpp │ │ │ │ ├── wrap_MouseJoint.h │ │ │ │ ├── wrap_Physics.cpp │ │ │ │ ├── wrap_Physics.h │ │ │ │ ├── wrap_PolygonShape.cpp │ │ │ │ ├── wrap_PolygonShape.h │ │ │ │ ├── wrap_PrismaticJoint.cpp │ │ │ │ ├── wrap_PrismaticJoint.h │ │ │ │ ├── wrap_PulleyJoint.cpp │ │ │ │ ├── wrap_PulleyJoint.h │ │ │ │ ├── wrap_RevoluteJoint.cpp │ │ │ │ ├── wrap_RevoluteJoint.h │ │ │ │ ├── wrap_RopeJoint.cpp │ │ │ │ ├── wrap_RopeJoint.h │ │ │ │ ├── wrap_Shape.cpp │ │ │ │ ├── wrap_Shape.h │ │ │ │ ├── wrap_WeldJoint.cpp │ │ │ │ ├── wrap_WeldJoint.h │ │ │ │ ├── wrap_WheelJoint.cpp │ │ │ │ ├── wrap_WheelJoint.h │ │ │ │ ├── wrap_World.cpp │ │ │ │ └── wrap_World.h │ │ ├── sound │ │ │ ├── Decoder.h │ │ │ ├── Sound.cpp │ │ │ ├── Sound.h │ │ │ ├── SoundData.cpp │ │ │ ├── SoundData.h │ │ │ ├── lullaby │ │ │ │ ├── CoreAudioDecoder.cpp │ │ │ │ ├── CoreAudioDecoder.h │ │ │ │ ├── Decoder.cpp │ │ │ │ ├── Decoder.h │ │ │ │ ├── FLACDecoder.cpp │ │ │ │ ├── FLACDecoder.h │ │ │ │ ├── GmeDecoder.cpp │ │ │ │ ├── GmeDecoder.h │ │ │ │ ├── ModPlugDecoder.cpp │ │ │ │ ├── ModPlugDecoder.h │ │ │ │ ├── Mpg123Decoder.cpp │ │ │ │ ├── Mpg123Decoder.h │ │ │ │ ├── Sound.cpp │ │ │ │ ├── Sound.h │ │ │ │ ├── VorbisDecoder.cpp │ │ │ │ ├── VorbisDecoder.h │ │ │ │ ├── WaveDecoder.cpp │ │ │ │ └── WaveDecoder.h │ │ │ ├── wrap_Decoder.cpp │ │ │ ├── wrap_Decoder.h │ │ │ ├── wrap_Sound.cpp │ │ │ ├── wrap_Sound.h │ │ │ ├── wrap_SoundData.cpp │ │ │ ├── wrap_SoundData.h │ │ │ └── wrap_SoundData.lua │ │ ├── system │ │ │ ├── System.cpp │ │ │ ├── System.h │ │ │ ├── sdl │ │ │ │ ├── System.cpp │ │ │ │ └── System.h │ │ │ ├── wrap_System.cpp │ │ │ └── wrap_System.h │ │ ├── thread │ │ │ ├── Channel.cpp │ │ │ ├── Channel.h │ │ │ ├── LuaThread.cpp │ │ │ ├── LuaThread.h │ │ │ ├── Thread.h │ │ │ ├── ThreadModule.cpp │ │ │ ├── ThreadModule.h │ │ │ ├── sdl │ │ │ │ ├── Thread.cpp │ │ │ │ ├── Thread.h │ │ │ │ ├── threads.cpp │ │ │ │ └── threads.h │ │ │ ├── threads.cpp │ │ │ ├── threads.h │ │ │ ├── wrap_Channel.cpp │ │ │ ├── wrap_Channel.h │ │ │ ├── wrap_LuaThread.cpp │ │ │ ├── wrap_LuaThread.h │ │ │ ├── wrap_ThreadModule.cpp │ │ │ └── wrap_ThreadModule.h │ │ ├── timer │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── sdl │ │ │ │ ├── Timer.cpp │ │ │ │ └── Timer.h │ │ │ ├── wrap_Timer.cpp │ │ │ └── wrap_Timer.h │ │ ├── touch │ │ │ ├── Touch.h │ │ │ ├── sdl │ │ │ │ ├── Touch.cpp │ │ │ │ └── Touch.h │ │ │ ├── wrap_Touch.cpp │ │ │ └── wrap_Touch.h │ │ ├── video │ │ │ ├── Video.h │ │ │ ├── VideoStream.cpp │ │ │ ├── VideoStream.h │ │ │ ├── theora │ │ │ │ ├── Video.cpp │ │ │ │ ├── Video.h │ │ │ │ ├── VideoStream.cpp │ │ │ │ └── VideoStream.h │ │ │ ├── wrap_Video.cpp │ │ │ ├── wrap_Video.h │ │ │ ├── wrap_VideoStream.cpp │ │ │ └── wrap_VideoStream.h │ │ └── window │ │ │ ├── Window.cpp │ │ │ ├── Window.h │ │ │ ├── sdl │ │ │ ├── Window.cpp │ │ │ └── Window.h │ │ │ ├── wrap_Window.cpp │ │ │ └── wrap_Window.h │ │ └── scripts │ │ ├── auto.lua │ │ ├── boot.lua │ │ ├── boot.lua.h │ │ ├── nogame.lua │ │ └── nogame.lua.h ├── macos │ └── Super Sphere.app │ │ └── Contents │ │ ├── Frameworks │ │ ├── FreeType.framework │ │ │ ├── FreeType │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ft2build.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Lua.framework │ │ │ ├── Headers │ │ │ ├── Lua │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── luajit.h │ │ │ │ │ └── lualib.h │ │ │ │ ├── Lua │ │ │ │ └── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Current │ │ ├── Ogg.framework │ │ │ ├── Headers │ │ │ ├── Ogg │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── OpenAL-Soft.framework │ │ │ ├── Headers │ │ │ ├── OpenAL-Soft │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── al.h │ │ │ │ │ ├── alc.h │ │ │ │ │ ├── alext.h │ │ │ │ │ ├── efx-creative.h │ │ │ │ │ ├── efx-presets.h │ │ │ │ │ └── efx.h │ │ │ │ ├── OpenAL-Soft │ │ │ │ └── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Current │ │ ├── SDL2.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SDL2 │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_assert.h │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_bits.h │ │ │ │ │ ├── SDL_blendmode.h │ │ │ │ │ ├── SDL_clipboard.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ │ ├── SDL_copying.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_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.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 │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── SDL2 │ │ │ │ └── Current │ │ ├── Theora.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Theora │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── theora.h │ │ │ │ │ ├── theoradec.h │ │ │ │ │ └── theoraenc.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Theora │ │ │ │ └── Current │ │ ├── Vorbis.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Vorbis │ │ │ │ └── Current │ │ │ └── Vorbis │ │ ├── libmodplug.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── libmodplug │ │ │ │ └── Current │ │ │ └── libmodplug │ │ ├── love.framework │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── love │ │ │ │ └── Current │ │ │ └── love │ │ ├── mpg123.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── mpg123 │ │ │ │ └── Current │ │ │ └── mpg123 │ │ └── physfs.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── physfs.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── physfs │ │ │ └── Current │ │ │ └── physfs │ │ ├── Info.plist │ │ ├── MacOS │ │ └── love │ │ ├── PkgInfo │ │ └── Resources │ │ ├── GameIcon.icns │ │ ├── OS X AppIcon.icns │ │ └── license.txt └── windows │ ├── .love.exe │ ├── OpenAL32.dll │ ├── SDL2.dll │ ├── changes.txt │ ├── game.ico │ ├── license.txt │ ├── love.dll │ ├── lua51.dll │ ├── mpg123.dll │ ├── msvcp120.dll │ ├── msvcr120.dll │ └── readme.txt ├── ext ├── icon.ico └── icon.png ├── lib ├── game.lua └── vendor │ ├── TLbind.lua │ ├── inspect.lua │ └── middleclass.lua └── main.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/README.md -------------------------------------------------------------------------------- /assets/Junction-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/Junction-bold.otf -------------------------------------------------------------------------------- /assets/game-over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/game-over.wav -------------------------------------------------------------------------------- /assets/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/jump.wav -------------------------------------------------------------------------------- /assets/loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/loop.wav -------------------------------------------------------------------------------- /assets/loop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/loop2.wav -------------------------------------------------------------------------------- /assets/loop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/assets/loop3.wav -------------------------------------------------------------------------------- /conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/conf.lua -------------------------------------------------------------------------------- /conf.mobile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/conf.mobile.lua -------------------------------------------------------------------------------- /conf.windows.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/conf.windows.lua -------------------------------------------------------------------------------- /crypto/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/crypto/my-release-key.keystore -------------------------------------------------------------------------------- /dist/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/README.md -------------------------------------------------------------------------------- /dist/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/build.gradle -------------------------------------------------------------------------------- /dist/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /dist/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dist/android/app/src/main/res/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/src/main/res/.gitignore -------------------------------------------------------------------------------- /dist/android/app/src/main/res/drawable-ldpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/android/app/src/main/res/mipmap-hdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/android/app/src/main/res/mipmap-mdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /dist/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dist/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/build.gradle -------------------------------------------------------------------------------- /dist/android/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/default.properties -------------------------------------------------------------------------------- /dist/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dist/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/gradlew -------------------------------------------------------------------------------- /dist/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/gradlew.bat -------------------------------------------------------------------------------- /dist/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/local.properties -------------------------------------------------------------------------------- /dist/android/love/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/build.gradle -------------------------------------------------------------------------------- /dist/android/love/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/proguard-rules.pro -------------------------------------------------------------------------------- /dist/android/love/src/jni/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/.gitignore -------------------------------------------------------------------------------- /dist/android/love/src/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/Application.mk -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/Android.mk -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/COPYRIGHT -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/Makefile -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/doc/faq.html -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/etc/luajit.1 -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/etc/luajit.pc -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/.gitignore -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/Makefile -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/jit/bc.lua -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/jit/p.lua -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/jit/v.lua -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lauxlib.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_aux.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_base.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_bit.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_ffi.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_init.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_io.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_jit.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_math.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lib_os.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj.supp -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_alloc.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_alloc.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_api.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_arch.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_asm.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_asm.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_bc.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_bc.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_buf.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_buf.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ccall.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ccall.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_cconv.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_cconv.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_cdata.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_cdata.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_char.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_char.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_clib.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_clib.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ctype.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ctype.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_debug.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_debug.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_def.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_err.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_err.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ff.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_frame.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_func.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_func.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_gc.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_gc.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ir.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_ir.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_iropt.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_jit.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_lex.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_lex.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_lib.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_lib.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_load.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_mcode.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_mcode.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_meta.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_meta.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_obj.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_obj.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_parse.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_parse.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_snap.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_snap.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_state.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_state.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_str.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_str.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_tab.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_tab.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_trace.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_trace.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_udata.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_udata.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lj_vm.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/ljamalg.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lua.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lua.hpp -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/luaconf.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/luajit.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/luajit.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/LuaJIT-2.1/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/LuaJIT-2.1/src/lualib.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/.hgignore -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/.hgtags -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/Android.mk -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/BUGS.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/CMakeLists.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/COPYING.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/CREDITS.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/INSTALL.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/Makefile.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/Makefile.psp -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/Makefile.wiz -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/README-SDL.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/README.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/SDL.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/SDL.tag -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/SDL2.spec.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/TODO.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/VisualC.html -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/WhatsNew.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/autogen.sh -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/configure -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/configure.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/debian/control -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/debian/docs -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/debian/rules -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/docs/README.md -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/docs/doxyfile -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/include/SDL.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/sdl2-config.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/sdl2.m4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/sdl2.pc.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/src/SDL.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/src/SDL_log.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/COPYING -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/axis.bmp -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/configure -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/icon.bmp -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/moose.dat -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/testgl2.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/testime.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/testsem.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/testver.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/testwm2.c -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/SDL2-2.0.5/test/utf8.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/compile -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/depcomp -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/install-sh -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/missing -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /dist/android/love/src/jni/freetype2-android/FTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/freetype2-android/FTL.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/libmodplug-0.8.8.4/COPYING: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. -------------------------------------------------------------------------------- /dist/android/love/src/jni/libmodplug-0.8.8.4/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libmodplug-0.8.8.4/NEWS -------------------------------------------------------------------------------- /dist/android/love/src/jni/libmodplug-0.8.8.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libmodplug-0.8.8.4/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/libmodplug-0.8.8.4/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libmodplug-0.8.8.4/TODO -------------------------------------------------------------------------------- /dist/android/love/src/jni/libmodplug-0.8.8.4/src/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for src/config.h 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/AUTHORS -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/Android.mk -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/CHANGES -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/COPYING -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/Makefile.am -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/Makefile.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/compile -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/config.guess -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/config.h.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/config.sub -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/configure -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/configure.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/depcomp -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/install-sh -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/missing -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/ogg.m4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/libogg-1.3.2/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libogg-1.3.2/ogg.pc.in -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/AUTHORS -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/CHANGES -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/COPYING -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/compile -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/depcomp -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/m4/ogg.m4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/m4/pkg.m4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/missing -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/todo.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/vorbis.m4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/vq/16.vqs -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/vq/8.vqs -------------------------------------------------------------------------------- /dist/android/love/src/jni/libvorbis-1.3.5/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/libvorbis-1.3.5/vq/8u.vqs -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/.hg_archival.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/.hgignore -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/.hgtags -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/Android.mk -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/CMakeLists.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/changes.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/extra/nsis/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/extra/nsis/game.ico -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/extra/nsis/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/extra/nsis/left.bmp -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/extra/nsis/love.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/extra/nsis/love.ico -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/extra/nsis/love.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/extra/nsis/love.nsi -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/extra/nsis/top.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/extra/nsis/top.bmp -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/license.txt -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/liblove-unstable0.docs: -------------------------------------------------------------------------------- 1 | readme.md 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/liblove0.docs: -------------------------------------------------------------------------------- 1 | readme.md 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/love-unstable.install: -------------------------------------------------------------------------------- 1 | usr/bin/love-unstable 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/love-unstable.manpages: -------------------------------------------------------------------------------- 1 | platform/unix/love-unstable.6 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/love.manpages: -------------------------------------------------------------------------------- 1 | platform/unix/love.6 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/love.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/platform/unix/love.1 -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/love.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/platform/unix/love.6 -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/platform/unix/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/platform/unix/postrm -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/readme-iOS.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/readme-iOS.rtf -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/readme.md -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Data.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/EnumMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/EnumMap.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Matrix.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Module.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Object.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Stream.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Variant.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/Vector.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/android.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/b64.cpp -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/b64.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/config.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/delay.cpp -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/delay.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/int.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/ios.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/ios.mm -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/math.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/common/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/common/utf8.h -------------------------------------------------------------------------------- /dist/android/love/src/jni/love/src/love.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/love/src/love.cpp -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/AUTHORS -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/COPYING -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/INSTALL -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/Makefile -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/NEWS -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/README -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/TODO -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/doc/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/doc/BUGS -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/doc/TODO -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/mpg123-1.17.0/libtool -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/ports/Sony_PSP/readers.c.patch: -------------------------------------------------------------------------------- 1 | 14a15 2 | > #include 3 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.la: -------------------------------------------------------------------------------- 1 | ../libmpg123.la -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0: -------------------------------------------------------------------------------- 1 | libmpg123.so.0.38.4 -------------------------------------------------------------------------------- /dist/android/love/src/jni/mpg123-1.17.0/src/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for src/config.h 2 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/physfs-2.1.0/.hgignore: -------------------------------------------------------------------------------- 1 | syntax:glob 2 | cmake-build 3 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/physfs-2.1.0/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/jni/physfs-2.1.0/.hgtags -------------------------------------------------------------------------------- /dist/android/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /dist/android/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dist/android/love/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dist/android/love_icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/love_icon_512x512.png -------------------------------------------------------------------------------- /dist/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/project.properties -------------------------------------------------------------------------------- /dist/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/android/settings.gradle -------------------------------------------------------------------------------- /dist/ios/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/CMakeLists.txt -------------------------------------------------------------------------------- /dist/ios/bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /dist/ios/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/changes.txt -------------------------------------------------------------------------------- /dist/ios/extra/appveyor/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/appveyor/appveyor.yml -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindLuaJIT.cmake -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindMPG123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindMPG123.cmake -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindModPlug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindModPlug.cmake -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindTheora.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindTheora.cmake -------------------------------------------------------------------------------- /dist/ios/extra/cmake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/cmake/FindVorbis.cmake -------------------------------------------------------------------------------- /dist/ios/extra/nsis/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/nsis/game.ico -------------------------------------------------------------------------------- /dist/ios/extra/nsis/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/nsis/left.bmp -------------------------------------------------------------------------------- /dist/ios/extra/nsis/love.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/nsis/love.ico -------------------------------------------------------------------------------- /dist/ios/extra/nsis/love.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/nsis/love.nsi -------------------------------------------------------------------------------- /dist/ios/extra/nsis/top.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/nsis/top.bmp -------------------------------------------------------------------------------- /dist/ios/extra/reshax/res/knoll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/reshax/res/knoll1.png -------------------------------------------------------------------------------- /dist/ios/extra/reshax/res/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/reshax/res/planet.png -------------------------------------------------------------------------------- /dist/ios/extra/reshax/res/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/reshax/res/star1.png -------------------------------------------------------------------------------- /dist/ios/extra/resources/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/resources/Vera.ttf -------------------------------------------------------------------------------- /dist/ios/extra/resources/b64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/resources/b64.lua -------------------------------------------------------------------------------- /dist/ios/extra/resources/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/resources/heart.png -------------------------------------------------------------------------------- /dist/ios/extra/resources/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/resources/pig.png -------------------------------------------------------------------------------- /dist/ios/extra/windows/love.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/windows/love.ico -------------------------------------------------------------------------------- /dist/ios/extra/windows/love.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/extra/windows/love.rc -------------------------------------------------------------------------------- /dist/ios/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/license.txt -------------------------------------------------------------------------------- /dist/ios/platform/unix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/Makefile.am -------------------------------------------------------------------------------- /dist/ios/platform/unix/automagic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/automagic -------------------------------------------------------------------------------- /dist/ios/platform/unix/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/configure.ac -------------------------------------------------------------------------------- /dist/ios/platform/unix/cpp11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/cpp11.m4 -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/changelog.in -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/control.in -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/copyright -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/docs -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/liblove-unstable0.docs: -------------------------------------------------------------------------------- 1 | readme.md 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/liblove.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/liblove.install -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/liblove0.docs: -------------------------------------------------------------------------------- 1 | readme.md 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/liblove0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/liblove0.install -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/love-unstable.install: -------------------------------------------------------------------------------- 1 | usr/bin/love-unstable 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/love-unstable.manpages: -------------------------------------------------------------------------------- 1 | platform/unix/love-unstable.6 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/love.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/love.install -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/love.manpages: -------------------------------------------------------------------------------- 1 | platform/unix/love.6 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/debian/rules.in -------------------------------------------------------------------------------- /dist/ios/platform/unix/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dist/ios/platform/unix/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/exclude -------------------------------------------------------------------------------- /dist/ios/platform/unix/gen-makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/gen-makefile -------------------------------------------------------------------------------- /dist/ios/platform/unix/genmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/genmodules -------------------------------------------------------------------------------- /dist/ios/platform/unix/love.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/love.6 -------------------------------------------------------------------------------- /dist/ios/platform/unix/love.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/love.desktop.in -------------------------------------------------------------------------------- /dist/ios/platform/unix/love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/love.svg -------------------------------------------------------------------------------- /dist/ios/platform/unix/love.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/unix/love.xml -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/.DS_Store -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/Launch Screen.xib -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/include/.DS_Store -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/include/SDL2/SDL.h -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/include/luajit/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/include/luajit/lua.h -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/include/ogg/ogg.h -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/love-ios.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/love-ios.plist -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/lovedocument.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/lovedocument.icns -------------------------------------------------------------------------------- /dist/ios/platform/xcode/ios/luajit-iOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/ios/luajit-iOS.sh -------------------------------------------------------------------------------- /dist/ios/platform/xcode/love.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/love.entitlements -------------------------------------------------------------------------------- /dist/ios/platform/xcode/macosx/love-macosx.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/platform/xcode/macosx/love-macosx.plist -------------------------------------------------------------------------------- /dist/ios/readme-iOS.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/readme-iOS.rtf -------------------------------------------------------------------------------- /dist/ios/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/readme.md -------------------------------------------------------------------------------- /dist/ios/src/common/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Data.h -------------------------------------------------------------------------------- /dist/ios/src/common/EnumMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/EnumMap.h -------------------------------------------------------------------------------- /dist/ios/src/common/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Exception.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Exception.h -------------------------------------------------------------------------------- /dist/ios/src/common/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Matrix.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Matrix.h -------------------------------------------------------------------------------- /dist/ios/src/common/Memoizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Memoizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Memoizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Memoizer.h -------------------------------------------------------------------------------- /dist/ios/src/common/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Module.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Module.h -------------------------------------------------------------------------------- /dist/ios/src/common/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Object.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Object.h -------------------------------------------------------------------------------- /dist/ios/src/common/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Reference.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Reference.h -------------------------------------------------------------------------------- /dist/ios/src/common/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Stream.h -------------------------------------------------------------------------------- /dist/ios/src/common/StringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/StringMap.h -------------------------------------------------------------------------------- /dist/ios/src/common/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Variant.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Variant.h -------------------------------------------------------------------------------- /dist/ios/src/common/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Vector.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/Vector.h -------------------------------------------------------------------------------- /dist/ios/src/common/android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/android.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/android.h -------------------------------------------------------------------------------- /dist/ios/src/common/b64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/b64.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/b64.h -------------------------------------------------------------------------------- /dist/ios/src/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/config.h -------------------------------------------------------------------------------- /dist/ios/src/common/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/delay.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/delay.h -------------------------------------------------------------------------------- /dist/ios/src/common/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/int.h -------------------------------------------------------------------------------- /dist/ios/src/common/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/ios.h -------------------------------------------------------------------------------- /dist/ios/src/common/ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/ios.mm -------------------------------------------------------------------------------- /dist/ios/src/common/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/macosx.h -------------------------------------------------------------------------------- /dist/ios/src/common/macosx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/macosx.mm -------------------------------------------------------------------------------- /dist/ios/src/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/math.h -------------------------------------------------------------------------------- /dist/ios/src/common/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/runtime.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/runtime.h -------------------------------------------------------------------------------- /dist/ios/src/common/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/types.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/types.h -------------------------------------------------------------------------------- /dist/ios/src/common/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/utf8.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/utf8.h -------------------------------------------------------------------------------- /dist/ios/src/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/version.h -------------------------------------------------------------------------------- /dist/ios/src/common/wrap_Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/wrap_Data.cpp -------------------------------------------------------------------------------- /dist/ios/src/common/wrap_Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/common/wrap_Data.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Box2D.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/README.MODIFIED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/README.MODIFIED -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_config.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_convert.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_convert.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_internal.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_internal.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/Wuff/wuff_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/Wuff/wuff_memory.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/ddsparse/ddsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/ddsparse/ddsinfo.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/ddsparse/ddsparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/ddsparse/ddsparse.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/ddsparse/ddsparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/ddsparse/ddsparse.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/enet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/enet.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/ChangeLog -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/LICENSE -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/README -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/callbacks.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/compress.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/host.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/list.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/packet.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/peer.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/protocol.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/unix.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/libenet/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/libenet/win32.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/enet/lua-enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/enet/lua-enet.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/glad/glad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/glad/glad.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/glad/glad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/glad/glad.hpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/glad/gladfuncs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/glad/gladfuncs.hpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lodepng/lodepng.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/luasocket/luasocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/luasocket/luasocket.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/luasocket/luasocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/luasocket/luasocket.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/luautf8/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/luautf8/lprefix.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/luautf8/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/luautf8/lutf8lib.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/luautf8/lutf8lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/luautf8/lutf8lib.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lz4/lz4.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lz4/lz4.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lz4/lz4hc.c -------------------------------------------------------------------------------- /dist/ios/src/libraries/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/lz4/lz4hc.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/noise1234/noise1234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/noise1234/noise1234.cpp -------------------------------------------------------------------------------- /dist/ios/src/libraries/noise1234/noise1234.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/noise1234/noise1234.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/stb/stb_image.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/utf8/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/utf8/utf8.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/utf8/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/utf8/utf8/checked.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/utf8/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/utf8/utf8/core.h -------------------------------------------------------------------------------- /dist/ios/src/libraries/utf8/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/libraries/utf8/utf8/unchecked.h -------------------------------------------------------------------------------- /dist/ios/src/love.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/love.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/Audio.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/Audio.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/Source.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/Source.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/null/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/null/Audio.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/null/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/null/Audio.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/null/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/null/Source.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/null/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/null/Source.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Audio.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Audio.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Pool.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Pool.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Source.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/openal/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/openal/Source.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/wrap_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/wrap_Audio.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/wrap_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/wrap_Audio.h -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/wrap_Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/wrap_Source.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/audio/wrap_Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/audio/wrap_Source.h -------------------------------------------------------------------------------- /dist/ios/src/modules/event/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/Event.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/event/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/Event.h -------------------------------------------------------------------------------- /dist/ios/src/modules/event/sdl/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/sdl/Event.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/event/sdl/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/sdl/Event.h -------------------------------------------------------------------------------- /dist/ios/src/modules/event/wrap_Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/wrap_Event.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/event/wrap_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/event/wrap_Event.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/DroppedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/DroppedFile.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/DroppedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/DroppedFile.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/File.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/File.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/FileData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/FileData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/FileData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/Filesystem.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/Filesystem.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/physfs/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/physfs/File.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/physfs/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/physfs/File.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/wrap_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/wrap_File.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/wrap_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/wrap_File.h -------------------------------------------------------------------------------- /dist/ios/src/modules/filesystem/wrap_FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/filesystem/wrap_FileData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/BMFontRasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/BMFontRasterizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/BMFontRasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/BMFontRasterizer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/Font.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/Font.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/GlyphData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/GlyphData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/GlyphData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/GlyphData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/ImageRasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/ImageRasterizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/ImageRasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/ImageRasterizer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/Rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/Rasterizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/Rasterizer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/TrueTypeRasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/TrueTypeRasterizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/TrueTypeRasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/TrueTypeRasterizer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/Vera.ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/Vera.ttf.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/freetype/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/freetype/Font.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/freetype/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/freetype/Font.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_Font.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_Font.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_GlyphData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_GlyphData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_GlyphData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_GlyphData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_Rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_Rasterizer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/font/wrap_Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/font/wrap_Rasterizer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Color.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Drawable.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Graphics.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Graphics.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/ParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/ParticleSystem.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/ParticleSystem.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Quad.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Quad.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Texture.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Texture.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Volatile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Volatile.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/Volatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/Volatile.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Canvas.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Canvas.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Font.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Font.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/GLBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/GLBuffer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Graphics.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Image.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Image.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Mesh.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Mesh.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/OpenGL.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/OpenGL.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Polyline.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Shader.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Shader.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Text.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Text.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Video.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/Video.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/wrap_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/wrap_Font.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/wrap_Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/wrap_Mesh.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/opengl/wrap_Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/opengl/wrap_Text.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/wrap_Quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/wrap_Quad.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/wrap_Quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/wrap_Quad.h -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/wrap_Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/wrap_Texture.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/graphics/wrap_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/graphics/wrap_Texture.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/CompressedImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/CompressedImageData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/Image.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/ImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/ImageData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/ImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/ImageData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/ASTCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/ASTCHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/Image.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/Image.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/ImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/ImageData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/ImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/ImageData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/KTXHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/KTXHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/KTXHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/KTXHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PKMHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PKMHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PKMHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PKMHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PNGHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PNGHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PNGHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PNGHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PVRHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PVRHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/PVRHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/PVRHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/STBHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/STBHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/STBHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/STBHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/ddsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/ddsHandler.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/magpie/ddsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/magpie/ddsHandler.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/wrap_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/wrap_Image.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/wrap_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/wrap_Image.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/wrap_ImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/wrap_ImageData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/image/wrap_ImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/wrap_ImageData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/image/wrap_ImageData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/image/wrap_ImageData.lua -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/Joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/Joystick.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/Joystick.h -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/JoystickModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/JoystickModule.h -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/sdl/Joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/sdl/Joystick.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/sdl/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/sdl/Joystick.h -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/wrap_Joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/wrap_Joystick.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/joystick/wrap_Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/joystick/wrap_Joystick.h -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/Keyboard.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/Keyboard.h -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/sdl/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/sdl/Keyboard.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/sdl/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/sdl/Keyboard.h -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/wrap_Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/wrap_Keyboard.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/keyboard/wrap_Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/keyboard/wrap_Keyboard.h -------------------------------------------------------------------------------- /dist/ios/src/modules/love/love.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/love/love.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/love/love.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/love/love.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/BezierCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/BezierCurve.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/BezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/BezierCurve.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/CompressedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/CompressedData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/CompressedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/CompressedData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/Compressor.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/Compressor.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/MathModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/MathModule.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/MathModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/MathModule.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/RandomGenerator.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/RandomGenerator.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_BezierCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_BezierCurve.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_BezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_BezierCurve.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_CompressedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_CompressedData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_Math.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_Math.h -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_Math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_Math.lua -------------------------------------------------------------------------------- /dist/ios/src/modules/math/wrap_RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/math/wrap_RandomGenerator.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/Cursor.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/Cursor.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/Mouse.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/sdl/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/sdl/Cursor.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/sdl/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/sdl/Cursor.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/sdl/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/sdl/Mouse.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/sdl/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/sdl/Mouse.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/wrap_Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/wrap_Cursor.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/wrap_Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/wrap_Cursor.h -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/wrap_Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/wrap_Mouse.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/mouse/wrap_Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/mouse/wrap_Mouse.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Body.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Body.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Joint.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Joint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Shape.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/Shape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Body.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Body.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/ChainShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/ChainShape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/CircleShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/CircleShape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Contact.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Contact.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/EdgeShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/EdgeShape.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/EdgeShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/EdgeShape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Fixture.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Fixture.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/GearJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/GearJoint.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/GearJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/GearJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Joint.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Joint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/MotorJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/MotorJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/MouseJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/MouseJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Physics.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Physics.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/PulleyJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/PulleyJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/RopeJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/RopeJoint.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/RopeJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/RopeJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Shape.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/Shape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/WeldJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/WeldJoint.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/WeldJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/WeldJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/WheelJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/WheelJoint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/World.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/World.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/wrap_Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/wrap_Body.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/wrap_Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/wrap_Body.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/wrap_Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/wrap_Joint.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/wrap_Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/wrap_Shape.h -------------------------------------------------------------------------------- /dist/ios/src/modules/physics/box2d/wrap_World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/physics/box2d/wrap_World.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/Decoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/Sound.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/Sound.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/SoundData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/SoundData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/SoundData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/SoundData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/Decoder.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/Decoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/FLACDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/FLACDecoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/GmeDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/GmeDecoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/Sound.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/Sound.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/lullaby/WaveDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/lullaby/WaveDecoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_Decoder.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_Decoder.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_Sound.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_Sound.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_SoundData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_SoundData.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_SoundData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_SoundData.h -------------------------------------------------------------------------------- /dist/ios/src/modules/sound/wrap_SoundData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/sound/wrap_SoundData.lua -------------------------------------------------------------------------------- /dist/ios/src/modules/system/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/System.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/system/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/System.h -------------------------------------------------------------------------------- /dist/ios/src/modules/system/sdl/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/sdl/System.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/system/sdl/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/sdl/System.h -------------------------------------------------------------------------------- /dist/ios/src/modules/system/wrap_System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/wrap_System.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/system/wrap_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/system/wrap_System.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/Channel.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/Channel.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/LuaThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/LuaThread.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/LuaThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/LuaThread.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/Thread.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/ThreadModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/ThreadModule.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/ThreadModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/ThreadModule.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/sdl/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/sdl/Thread.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/sdl/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/sdl/Thread.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/sdl/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/sdl/threads.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/sdl/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/sdl/threads.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/threads.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/threads.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/wrap_Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/wrap_Channel.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/wrap_Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/wrap_Channel.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/wrap_LuaThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/wrap_LuaThread.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/wrap_LuaThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/wrap_LuaThread.h -------------------------------------------------------------------------------- /dist/ios/src/modules/thread/wrap_ThreadModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/thread/wrap_ThreadModule.h -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/Timer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/Timer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/sdl/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/sdl/Timer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/sdl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/sdl/Timer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/wrap_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/wrap_Timer.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/timer/wrap_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/timer/wrap_Timer.h -------------------------------------------------------------------------------- /dist/ios/src/modules/touch/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/touch/Touch.h -------------------------------------------------------------------------------- /dist/ios/src/modules/touch/sdl/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/touch/sdl/Touch.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/touch/sdl/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/touch/sdl/Touch.h -------------------------------------------------------------------------------- /dist/ios/src/modules/touch/wrap_Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/touch/wrap_Touch.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/touch/wrap_Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/touch/wrap_Touch.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/Video.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/VideoStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/VideoStream.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/video/VideoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/VideoStream.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/theora/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/theora/Video.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/video/theora/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/theora/Video.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/theora/VideoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/theora/VideoStream.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/wrap_Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/wrap_Video.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/video/wrap_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/wrap_Video.h -------------------------------------------------------------------------------- /dist/ios/src/modules/video/wrap_VideoStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/wrap_VideoStream.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/video/wrap_VideoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/video/wrap_VideoStream.h -------------------------------------------------------------------------------- /dist/ios/src/modules/window/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/Window.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/window/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/Window.h -------------------------------------------------------------------------------- /dist/ios/src/modules/window/sdl/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/sdl/Window.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/window/sdl/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/sdl/Window.h -------------------------------------------------------------------------------- /dist/ios/src/modules/window/wrap_Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/wrap_Window.cpp -------------------------------------------------------------------------------- /dist/ios/src/modules/window/wrap_Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/modules/window/wrap_Window.h -------------------------------------------------------------------------------- /dist/ios/src/scripts/auto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/scripts/auto.lua -------------------------------------------------------------------------------- /dist/ios/src/scripts/boot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/scripts/boot.lua -------------------------------------------------------------------------------- /dist/ios/src/scripts/boot.lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/scripts/boot.lua.h -------------------------------------------------------------------------------- /dist/ios/src/scripts/nogame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/scripts/nogame.lua -------------------------------------------------------------------------------- /dist/ios/src/scripts/nogame.lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/ios/src/scripts/nogame.lua.h -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/FreeType.framework/FreeType: -------------------------------------------------------------------------------- 1 | Versions/Current/FreeType -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/FreeType.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/FreeType.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/FreeType.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Lua.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Lua.framework/Lua: -------------------------------------------------------------------------------- 1 | Versions/Current/Lua -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Lua.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Lua.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Ogg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/Ogg -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Ogg.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Ogg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/OpenAL-Soft.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/OpenAL-Soft.framework/OpenAL-Soft: -------------------------------------------------------------------------------- 1 | Versions/Current/OpenAL-Soft -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/OpenAL-Soft.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/OpenAL-Soft.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Theora.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Theora.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Theora.framework/Theora: -------------------------------------------------------------------------------- 1 | Versions/Current/Theora -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Theora.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Vorbis.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Vorbis.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Vorbis.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/Vorbis.framework/Vorbis: -------------------------------------------------------------------------------- 1 | Versions/Current/Vorbis -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/libmodplug.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/libmodplug.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/libmodplug.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/libmodplug.framework/libmodplug: -------------------------------------------------------------------------------- 1 | Versions/Current/libmodplug -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/love.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/love.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/love.framework/love: -------------------------------------------------------------------------------- 1 | Versions/Current/love -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/mpg123.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/mpg123.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/mpg123.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/mpg123.framework/mpg123: -------------------------------------------------------------------------------- 1 | Versions/Current/mpg123 -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/physfs.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/physfs.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/physfs.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Frameworks/physfs.framework/physfs: -------------------------------------------------------------------------------- 1 | Versions/Current/physfs -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/macos/Super Sphere.app/Contents/Info.plist -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/MacOS/love: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/macos/Super Sphere.app/Contents/MacOS/love -------------------------------------------------------------------------------- /dist/macos/Super Sphere.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLoVe -------------------------------------------------------------------------------- /dist/windows/.love.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/.love.exe -------------------------------------------------------------------------------- /dist/windows/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/OpenAL32.dll -------------------------------------------------------------------------------- /dist/windows/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/SDL2.dll -------------------------------------------------------------------------------- /dist/windows/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/changes.txt -------------------------------------------------------------------------------- /dist/windows/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/game.ico -------------------------------------------------------------------------------- /dist/windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/license.txt -------------------------------------------------------------------------------- /dist/windows/love.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/love.dll -------------------------------------------------------------------------------- /dist/windows/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/lua51.dll -------------------------------------------------------------------------------- /dist/windows/mpg123.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/mpg123.dll -------------------------------------------------------------------------------- /dist/windows/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/msvcp120.dll -------------------------------------------------------------------------------- /dist/windows/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/msvcr120.dll -------------------------------------------------------------------------------- /dist/windows/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/dist/windows/readme.txt -------------------------------------------------------------------------------- /ext/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/ext/icon.ico -------------------------------------------------------------------------------- /ext/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/ext/icon.png -------------------------------------------------------------------------------- /lib/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/lib/game.lua -------------------------------------------------------------------------------- /lib/vendor/TLbind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/lib/vendor/TLbind.lua -------------------------------------------------------------------------------- /lib/vendor/inspect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/lib/vendor/inspect.lua -------------------------------------------------------------------------------- /lib/vendor/middleclass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/lib/vendor/middleclass.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz/super-sphere/HEAD/main.lua --------------------------------------------------------------------------------