├── .gitignore ├── 3rdparty ├── SDL │ ├── SDL │ │ ├── .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-android.txt │ │ ├── README-cmake.txt │ │ ├── README-directfb.txt │ │ ├── README-dynapi.txt │ │ ├── README-gesture.txt │ │ ├── README-hg.txt │ │ ├── README-ios.txt │ │ ├── README-linux.txt │ │ ├── README-macosx.txt │ │ ├── README-pandora.txt │ │ ├── README-platforms.txt │ │ ├── README-porting.txt │ │ ├── README-psp.txt │ │ ├── README-raspberrypi.txt │ │ ├── README-touch.txt │ │ ├── README-wince.txt │ │ ├── README-windows.txt │ │ ├── README.txt │ │ ├── SDL2.spec │ │ ├── SDL2.spec.in │ │ ├── TODO.txt │ │ ├── VisualC-WinRT │ │ │ ├── WinPhone80_VS2012 │ │ │ │ ├── SDL-WinPhone80.vcxproj │ │ │ │ └── SDL-WinPhone80.vcxproj.filters │ │ │ ├── WinPhone81_VS2013 │ │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ │ ├── WinRT80_VS2012 │ │ │ │ ├── SDL-WinRT80.sln │ │ │ │ ├── SDL-WinRT80.vcxproj │ │ │ │ └── SDL-WinRT80.vcxproj.filters │ │ │ ├── WinRT81_VS2013 │ │ │ │ ├── SDL-WinRT81.vcxproj │ │ │ │ └── SDL-WinRT81.vcxproj.filters │ │ │ └── tests │ │ │ │ ├── loopwave │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── loopwave_VS2012.vcxproj │ │ │ │ └── loopwave_VS2012_TemporaryKey.pfx │ │ │ │ └── testthread │ │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── testthread_VS2012.vcxproj │ │ │ │ └── testthread_VS2012_TemporaryKey.pfx │ │ ├── VisualC.html │ │ ├── VisualC │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ ├── SDL.vcxproj.filters │ │ │ │ ├── SDL_VS2008.vcproj │ │ │ │ ├── SDL_VS2010.vcxproj │ │ │ │ ├── SDL_VS2012.vcxproj │ │ │ │ ├── SDL_VS2013.vcxproj │ │ │ │ └── SDL_VS2013.vcxproj.user │ │ │ ├── SDL_VS2008.sln │ │ │ ├── SDL_VS2010.sln │ │ │ ├── SDL_VS2010EE.sln │ │ │ ├── SDL_VS2012.sln │ │ │ ├── SDL_VS2012EE.sln │ │ │ ├── SDL_VS2013.sln │ │ │ ├── SDLmain │ │ │ │ ├── SDLmain.vcxproj │ │ │ │ ├── SDLmain_VS2008.vcproj │ │ │ │ ├── SDLmain_VS2010.vcxproj │ │ │ │ ├── SDLmain_VS2012.vcxproj │ │ │ │ └── SDLmain_VS2013.vcxproj │ │ │ ├── clean.sh │ │ │ └── visualtest │ │ │ │ ├── unittest │ │ │ │ └── testquit │ │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ │ └── visualtest_VS2012.vcxproj │ │ ├── WhatsNew.txt │ │ ├── Xcode-iOS │ │ │ ├── Demos │ │ │ │ ├── Default.png │ │ │ │ ├── Demos.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ ├── data │ │ │ │ │ ├── bitmapfont │ │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ │ └── license.txt │ │ │ │ │ ├── drums │ │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ │ ├── icon.bmp │ │ │ │ │ ├── ship.bmp │ │ │ │ │ ├── space.bmp │ │ │ │ │ └── stroke.bmp │ │ │ │ └── src │ │ │ │ │ ├── accelerometer.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── fireworks.c │ │ │ │ │ ├── happy.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── mixer.c │ │ │ │ │ ├── rectangles.c │ │ │ │ │ └── touch.c │ │ │ ├── SDL │ │ │ │ └── SDL.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── SDLtest │ │ │ │ └── SDL2test.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── Template │ │ │ │ └── SDL iOS Application │ │ │ │ │ ├── Default-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-emscripten.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 │ │ ├── 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 │ │ │ └── doxyfile │ │ ├── sdl2-config.cmake.in │ │ ├── sdl2-config.in │ │ ├── sdl2.m4 │ │ ├── sdl2.pc.in │ │ ├── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_log.c │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiomem.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── arts │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── bsd │ │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ │ └── SDL_bsdaudio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ │ └── SDL_coreaudio.h │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ ├── SDL_directsound.h │ │ │ │ │ └── directx.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.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_ibus.c │ │ │ │ │ ├── SDL_ibus.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 │ │ │ │ ├── emscripten │ │ │ │ │ └── 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_syshaptic.c │ │ │ │ │ ├── SDL_syshaptic_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 │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── iphoneos │ │ │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_dxjoystick.c │ │ │ │ │ ├── SDL_dxjoystick_c.h │ │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ │ └── winrt │ │ │ │ │ └── SDL_xinputjoystick.c │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── 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 │ │ │ │ ├── emscripten │ │ │ │ │ └── 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 │ │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenevents.c │ │ │ │ ├── SDL_emscriptenevents.h │ │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ │ ├── SDL_emscriptenmouse.c │ │ │ │ ├── SDL_emscriptenmouse.h │ │ │ │ ├── SDL_emscriptenopengles.c │ │ │ │ ├── SDL_emscriptenopengles.h │ │ │ │ ├── SDL_emscriptenvideo.c │ │ │ │ └── SDL_emscriptenvideo.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_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_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 │ │ └── 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 │ │ │ ├── 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 │ ├── SDL2_image │ │ ├── Android.mk │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── IMG.c │ │ ├── IMG_ImageIO.m │ │ ├── IMG_UIImage.m │ │ ├── IMG_bmp.c │ │ ├── IMG_gif.c │ │ ├── IMG_jpg.c │ │ ├── IMG_lbm.c │ │ ├── IMG_pcx.c │ │ ├── IMG_png.c │ │ ├── IMG_pnm.c │ │ ├── IMG_tga.c │ │ ├── IMG_tif.c │ │ ├── IMG_webp.c │ │ ├── IMG_xcf.c │ │ ├── IMG_xpm.c │ │ ├── IMG_xv.c │ │ ├── IMG_xxx.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── SDL2_image.pc.in │ │ ├── SDL2_image.spec │ │ ├── SDL2_image.spec.in │ │ ├── SDL_image.h │ │ ├── VisualC-WinRT │ │ │ ├── WinPhone80_VS2012 │ │ │ │ ├── SDL_image-WinPhone80.vcxproj │ │ │ │ ├── SDL_image-WinPhone80.vcxproj.filters │ │ │ │ ├── jpeg-WinPhone80.vcxproj │ │ │ │ ├── jpeg-WinPhone80.vcxproj.filters │ │ │ │ ├── libpng-WinPhone80.vcxproj │ │ │ │ ├── libpng-WinPhone80.vcxproj.filters │ │ │ │ ├── libwebp-WinPhone80.vcxproj │ │ │ │ ├── libwebp-WinPhone80.vcxproj.filters │ │ │ │ ├── zlib-WinPhone80.vcxproj │ │ │ │ └── zlib-WinPhone80.vcxproj.filters │ │ │ ├── WinPhone81_VS2013 │ │ │ │ ├── Objs │ │ │ │ │ └── ARM │ │ │ │ │ │ └── Release │ │ │ │ │ │ └── SDL_image-WinPhone81 │ │ │ │ │ │ └── SDL_image-WinPhone81.vcxprojResolveAssemblyReference.cache │ │ │ │ ├── SDL_image-WinPhone81.vcxproj │ │ │ │ ├── SDL_image-WinPhone81.vcxproj.filters │ │ │ │ ├── jpeg-WinPhone81.vcxproj │ │ │ │ ├── jpeg-WinPhone81.vcxproj.filters │ │ │ │ ├── jpeg-WinRT81.vcxproj │ │ │ │ ├── jpeg-WinRT81.vcxproj.filters │ │ │ │ ├── libpng-WinPhone81.vcxproj │ │ │ │ ├── libpng-WinPhone81.vcxproj.filters │ │ │ │ ├── libwebp-WinPhone81.vcxproj │ │ │ │ ├── libwebp-WinPhone81.vcxproj.filters │ │ │ │ ├── zlib-WinPhone81.vcxproj │ │ │ │ └── zlib-WinPhone81.vcxproj.filters │ │ │ ├── WinRT80_VS2012 │ │ │ │ ├── SDL_image-WinRT80.vcxproj │ │ │ │ ├── SDL_image-WinRT80.vcxproj.filters │ │ │ │ ├── jpeg-WinRT80.vcxproj │ │ │ │ ├── jpeg-WinRT80.vcxproj.filters │ │ │ │ ├── libpng-WinRT80.vcxproj │ │ │ │ ├── libpng-WinRT80.vcxproj.filters │ │ │ │ ├── libwebp-WinRT80.vcxproj │ │ │ │ ├── libwebp-WinRT80.vcxproj.filters │ │ │ │ ├── zlib-WinRT80.vcxproj │ │ │ │ └── zlib-WinRT80.vcxproj.filters │ │ │ ├── WinRT81_VS2013 │ │ │ │ ├── SDL_image-WinRT81.vcxproj │ │ │ │ ├── SDL_image-WinRT81.vcxproj.filters │ │ │ │ ├── jpeg-WinRT81.vcxproj │ │ │ │ ├── jpeg-WinRT81.vcxproj.filters │ │ │ │ ├── libpng-WinRT81.vcxproj │ │ │ │ ├── libpng-WinRT81.vcxproj.filters │ │ │ │ ├── libwebp-WinRT81.vcxproj │ │ │ │ ├── libwebp-WinRT81.vcxproj.filters │ │ │ │ ├── zlib-WinRT81.vcxproj │ │ │ │ └── zlib-WinRT81.vcxproj.filters │ │ │ ├── jpeg.def │ │ │ └── libwebp.def │ │ ├── VisualC │ │ │ ├── SDL_image.sln │ │ │ ├── SDL_image.vcxproj │ │ │ ├── SDL_image.vcxproj.filters │ │ │ ├── SDL_image_VS2008.sln │ │ │ ├── SDL_image_VS2008.vcproj │ │ │ ├── SDL_image_VS2010.sln │ │ │ ├── SDL_image_VS2010.vcxproj │ │ │ ├── SDL_image_VS2012.sln │ │ │ ├── SDL_image_VS2012.vcxproj │ │ │ ├── SDL_image_VS2012.vcxproj.user │ │ │ ├── Version.rc │ │ │ ├── clean.sh │ │ │ ├── external │ │ │ │ ├── include │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ ├── png.h │ │ │ │ │ ├── pngconf.h │ │ │ │ │ ├── pnglibconf.h │ │ │ │ │ ├── tiff.h │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ ├── tiffio.h │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ ├── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── zconf.h │ │ │ │ │ └── zlib.h │ │ │ │ └── lib │ │ │ │ │ ├── x64 │ │ │ │ │ ├── LICENSE.jpeg.txt │ │ │ │ │ ├── LICENSE.png.txt │ │ │ │ │ ├── LICENSE.tiff.txt │ │ │ │ │ ├── LICENSE.webp.txt │ │ │ │ │ ├── LICENSE.zlib.txt │ │ │ │ │ ├── libjpeg-9.dll │ │ │ │ │ ├── libpng16-16.dll │ │ │ │ │ ├── libtiff-5.dll │ │ │ │ │ ├── libwebp-4.dll │ │ │ │ │ └── zlib1.dll │ │ │ │ │ └── x86 │ │ │ │ │ ├── LICENSE.jpeg.txt │ │ │ │ │ ├── LICENSE.png.txt │ │ │ │ │ ├── LICENSE.tiff.txt │ │ │ │ │ ├── LICENSE.webp.txt │ │ │ │ │ ├── LICENSE.zlib.txt │ │ │ │ │ ├── libjpeg-9.dll │ │ │ │ │ ├── libpng16-16.dll │ │ │ │ │ ├── libtiff-5.dll │ │ │ │ │ ├── libwebp-4.dll │ │ │ │ │ └── zlib1.dll │ │ │ ├── resource.h │ │ │ └── showimage │ │ │ │ ├── showimage.vcxproj │ │ │ │ ├── showimage.vcxproj.filters │ │ │ │ ├── showimage_VS2008.vcproj │ │ │ │ ├── showimage_VS2010.vcxproj │ │ │ │ └── showimage_VS2012.vcxproj │ │ ├── VisualCE │ │ │ ├── SDL_image.dsp │ │ │ ├── SDL_image.dsw │ │ │ ├── SDL_image.sln │ │ │ ├── SDL_image.vcproj │ │ │ ├── Version.rc │ │ │ ├── clean.sh │ │ │ ├── resource.h │ │ │ └── showimage │ │ │ │ ├── showimage.dsp │ │ │ │ ├── showimage.sln │ │ │ │ └── showimage.vcproj │ │ ├── Xcode-iOS │ │ │ └── SDL_image.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── Frameworks │ │ │ │ └── webp.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── LICENSE.webp.txt │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ └── webp │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ └── webp │ │ │ │ │ └── webp │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL_image.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── package │ │ │ ├── pkg-support │ │ │ │ ├── SDL_image.info │ │ │ │ ├── codesign-frameworks.sh │ │ │ │ ├── mkpackage.sh │ │ │ │ └── resources │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── Welcome.txt │ │ │ └── showimage │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info-showimage__Upgraded_.plist │ │ │ │ ├── SDLMain.h │ │ │ │ ├── SDLMain.m │ │ │ │ └── showimage.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── acinclude │ │ │ ├── libtool.m4 │ │ │ ├── ltdl.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── pkg.m4 │ │ │ └── sdl2.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── examples │ │ │ │ └── Makefile │ │ │ ├── libsdl2-image-dev.examples │ │ │ ├── libsdl2-image-dev.install │ │ │ ├── libsdl2-image.install │ │ │ ├── libsdl2-image.lintian-overrides │ │ │ ├── rules │ │ │ ├── source │ │ │ │ ├── format │ │ │ │ └── lintian-overrides │ │ │ └── watch │ │ ├── depcomp │ │ ├── external │ │ │ ├── jpeg-9.patch │ │ │ ├── jpeg-9 │ │ │ │ ├── Android.mk │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── ar-lib │ │ │ │ ├── cderror.h │ │ │ │ ├── cdjpeg.c │ │ │ │ ├── cdjpeg.h │ │ │ │ ├── change.log │ │ │ │ ├── cjpeg.1 │ │ │ │ ├── cjpeg.c │ │ │ │ ├── ckconfig.c │ │ │ │ ├── coderules.txt │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── djpeg.1 │ │ │ │ ├── djpeg.c │ │ │ │ ├── example.c │ │ │ │ ├── filelist.txt │ │ │ │ ├── install-sh │ │ │ │ ├── install.txt │ │ │ │ ├── jaricom.c │ │ │ │ ├── jcapimin.c │ │ │ │ ├── jcapistd.c │ │ │ │ ├── jcarith.c │ │ │ │ ├── jccoefct.c │ │ │ │ ├── jccolor.c │ │ │ │ ├── jcdctmgr.c │ │ │ │ ├── jchuff.c │ │ │ │ ├── jcinit.c │ │ │ │ ├── jcmainct.c │ │ │ │ ├── jcmarker.c │ │ │ │ ├── jcmaster.c │ │ │ │ ├── jcomapi.c │ │ │ │ ├── jconfig.bcc │ │ │ │ ├── jconfig.cfg │ │ │ │ ├── jconfig.dj │ │ │ │ ├── jconfig.h │ │ │ │ ├── jconfig.mac │ │ │ │ ├── jconfig.manx │ │ │ │ ├── jconfig.mc6 │ │ │ │ ├── jconfig.sas │ │ │ │ ├── jconfig.st │ │ │ │ ├── jconfig.txt │ │ │ │ ├── jconfig.vc │ │ │ │ ├── jconfig.vms │ │ │ │ ├── jconfig.wat │ │ │ │ ├── jcparam.c │ │ │ │ ├── jcprepct.c │ │ │ │ ├── jcsample.c │ │ │ │ ├── jctrans.c │ │ │ │ ├── jdapimin.c │ │ │ │ ├── jdapistd.c │ │ │ │ ├── jdarith.c │ │ │ │ ├── jdatadst.c │ │ │ │ ├── jdatasrc.c │ │ │ │ ├── jdcoefct.c │ │ │ │ ├── jdcolor.c │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.c │ │ │ │ ├── jdhuff.c │ │ │ │ ├── jdinput.c │ │ │ │ ├── jdmainct.c │ │ │ │ ├── jdmarker.c │ │ │ │ ├── jdmaster.c │ │ │ │ ├── jdmerge.c │ │ │ │ ├── jdpostct.c │ │ │ │ ├── jdsample.c │ │ │ │ ├── jdtrans.c │ │ │ │ ├── jerror.c │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.c │ │ │ │ ├── jfdctfst.c │ │ │ │ ├── jfdctint.c │ │ │ │ ├── jidctflt.c │ │ │ │ ├── jidctfst.S │ │ │ │ ├── jidctfst.c │ │ │ │ ├── jidctint.c │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmem-android.c │ │ │ │ ├── jmemansi.c │ │ │ │ ├── jmemdos.c │ │ │ │ ├── jmemdosa.asm │ │ │ │ ├── jmemmac.c │ │ │ │ ├── jmemmgr.c │ │ │ │ ├── jmemname.c │ │ │ │ ├── jmemnobs.c │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jpegtran.1 │ │ │ │ ├── jpegtran.c │ │ │ │ ├── jquant1.c │ │ │ │ ├── jquant2.c │ │ │ │ ├── jutils.c │ │ │ │ ├── jversion.h │ │ │ │ ├── libjpeg.map │ │ │ │ ├── libjpeg.txt │ │ │ │ ├── ltmain.sh │ │ │ │ ├── makcjpeg.st │ │ │ │ ├── makdjpeg.st │ │ │ │ ├── makeadsw.vc6 │ │ │ │ ├── makeasln.v10 │ │ │ │ ├── makecdep.vc6 │ │ │ │ ├── makecdsp.vc6 │ │ │ │ ├── makecfil.v10 │ │ │ │ ├── makecmak.vc6 │ │ │ │ ├── makecvcx.v10 │ │ │ │ ├── makeddep.vc6 │ │ │ │ ├── makeddsp.vc6 │ │ │ │ ├── makedfil.v10 │ │ │ │ ├── makedmak.vc6 │ │ │ │ ├── makedvcx.v10 │ │ │ │ ├── makefile.ansi │ │ │ │ ├── makefile.bcc │ │ │ │ ├── makefile.dj │ │ │ │ ├── makefile.manx │ │ │ │ ├── makefile.mc6 │ │ │ │ ├── makefile.mms │ │ │ │ ├── makefile.sas │ │ │ │ ├── makefile.unix │ │ │ │ ├── makefile.vc │ │ │ │ ├── makefile.vms │ │ │ │ ├── makefile.wat │ │ │ │ ├── makejdep.vc6 │ │ │ │ ├── makejdsp.vc6 │ │ │ │ ├── makejdsw.vc6 │ │ │ │ ├── makejfil.v10 │ │ │ │ ├── makejmak.vc6 │ │ │ │ ├── makejsln.v10 │ │ │ │ ├── makejvcx.v10 │ │ │ │ ├── makeproj.mac │ │ │ │ ├── makerdep.vc6 │ │ │ │ ├── makerdsp.vc6 │ │ │ │ ├── makerfil.v10 │ │ │ │ ├── makermak.vc6 │ │ │ │ ├── makervcx.v10 │ │ │ │ ├── maketdep.vc6 │ │ │ │ ├── maketdsp.vc6 │ │ │ │ ├── maketfil.v10 │ │ │ │ ├── maketmak.vc6 │ │ │ │ ├── maketvcx.v10 │ │ │ │ ├── makewdep.vc6 │ │ │ │ ├── makewdsp.vc6 │ │ │ │ ├── makewfil.v10 │ │ │ │ ├── makewmak.vc6 │ │ │ │ ├── makewvcx.v10 │ │ │ │ ├── makljpeg.st │ │ │ │ ├── maktjpeg.st │ │ │ │ ├── makvms.opt │ │ │ │ ├── missing │ │ │ │ ├── rdbmp.c │ │ │ │ ├── rdcolmap.c │ │ │ │ ├── rdgif.c │ │ │ │ ├── rdjpgcom.1 │ │ │ │ ├── rdjpgcom.c │ │ │ │ ├── rdppm.c │ │ │ │ ├── rdrle.c │ │ │ │ ├── rdswitch.c │ │ │ │ ├── rdtarga.c │ │ │ │ ├── structure.txt │ │ │ │ ├── testimg.bmp │ │ │ │ ├── testimg.jpg │ │ │ │ ├── testimg.ppm │ │ │ │ ├── testimgp.jpg │ │ │ │ ├── testorig.jpg │ │ │ │ ├── testprog.jpg │ │ │ │ ├── transupp.c │ │ │ │ ├── transupp.h │ │ │ │ ├── usage.txt │ │ │ │ ├── wizard.txt │ │ │ │ ├── wrbmp.c │ │ │ │ ├── wrgif.c │ │ │ │ ├── wrjpgcom.1 │ │ │ │ ├── wrjpgcom.c │ │ │ │ ├── wrppm.c │ │ │ │ ├── wrrle.c │ │ │ │ └── wrtarga.c │ │ │ ├── libpng-1.6.2.patch │ │ │ ├── libpng-1.6.2 │ │ │ │ ├── ANNOUNCE │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── arm │ │ │ │ │ ├── arm_init.c │ │ │ │ │ └── filter_neon.S │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── contrib │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── iccfrompng.c │ │ │ │ │ │ ├── pngpixel.c │ │ │ │ │ │ └── pngtopng.c │ │ │ │ │ ├── gregbook │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile.mingw32 │ │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ │ ├── Makefile.unx │ │ │ │ │ │ ├── Makefile.w32 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makevms.com │ │ │ │ │ │ ├── readpng.c │ │ │ │ │ │ ├── readpng.h │ │ │ │ │ │ ├── readpng2.c │ │ │ │ │ │ ├── readpng2.h │ │ │ │ │ │ ├── readppm.c │ │ │ │ │ │ ├── rpng-win.c │ │ │ │ │ │ ├── rpng-x.c │ │ │ │ │ │ ├── rpng2-win.c │ │ │ │ │ │ ├── rpng2-x.c │ │ │ │ │ │ ├── toucan.png │ │ │ │ │ │ ├── wpng.c │ │ │ │ │ │ ├── writepng.c │ │ │ │ │ │ └── writepng.h │ │ │ │ │ ├── libtests │ │ │ │ │ │ ├── fakepng.c │ │ │ │ │ │ ├── gentests.sh │ │ │ │ │ │ ├── makepng.c │ │ │ │ │ │ ├── pngstest.c │ │ │ │ │ │ ├── pngunknown.c │ │ │ │ │ │ ├── pngvalid.c │ │ │ │ │ │ ├── readpng.c │ │ │ │ │ │ ├── tarith.c │ │ │ │ │ │ └── timepng.c │ │ │ │ │ ├── pngminim │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── decoder │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ │ ├── encoder │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ │ └── preader │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ ├── pngminus │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makefile.std │ │ │ │ │ │ ├── makefile.tc3 │ │ │ │ │ │ ├── makevms.com │ │ │ │ │ │ ├── png2pnm.bat │ │ │ │ │ │ ├── png2pnm.c │ │ │ │ │ │ ├── png2pnm.sh │ │ │ │ │ │ ├── pngminus.bat │ │ │ │ │ │ ├── pngminus.sh │ │ │ │ │ │ ├── pnm2png.bat │ │ │ │ │ │ ├── pnm2png.c │ │ │ │ │ │ └── pnm2png.sh │ │ │ │ │ ├── pngsuite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── basn0g01.png │ │ │ │ │ │ ├── basn0g02.png │ │ │ │ │ │ ├── basn0g04.png │ │ │ │ │ │ ├── basn0g08.png │ │ │ │ │ │ ├── basn0g16.png │ │ │ │ │ │ ├── basn2c08.png │ │ │ │ │ │ ├── basn2c16.png │ │ │ │ │ │ ├── basn3p01.png │ │ │ │ │ │ ├── basn3p02.png │ │ │ │ │ │ ├── basn3p04.png │ │ │ │ │ │ ├── basn3p08.png │ │ │ │ │ │ ├── basn4a08.png │ │ │ │ │ │ ├── basn4a16.png │ │ │ │ │ │ ├── basn6a08.png │ │ │ │ │ │ ├── basn6a16.png │ │ │ │ │ │ ├── ftbbn0g01.png │ │ │ │ │ │ ├── ftbbn0g02.png │ │ │ │ │ │ ├── ftbbn0g04.png │ │ │ │ │ │ ├── ftbbn2c16.png │ │ │ │ │ │ ├── ftbbn3p08.png │ │ │ │ │ │ ├── ftbgn2c16.png │ │ │ │ │ │ ├── ftbgn3p08.png │ │ │ │ │ │ ├── ftbrn2c08.png │ │ │ │ │ │ ├── ftbwn0g16.png │ │ │ │ │ │ ├── ftbwn3p08.png │ │ │ │ │ │ ├── ftbyn3p08.png │ │ │ │ │ │ ├── ftp0n0g08.png │ │ │ │ │ │ ├── ftp0n2c08.png │ │ │ │ │ │ ├── ftp0n3p08.png │ │ │ │ │ │ └── ftp1n3p08.png │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── checksum-icc.c │ │ │ │ │ │ ├── chkfmt │ │ │ │ │ │ ├── cvtcolor.c │ │ │ │ │ │ ├── fixitxt.c │ │ │ │ │ │ ├── intgamma.sh │ │ │ │ │ │ ├── makesRGB.c │ │ │ │ │ │ └── sRGB.h │ │ │ │ │ └── visupng │ │ │ │ │ │ ├── PngFile.c │ │ │ │ │ │ ├── PngFile.h │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── VisualPng.c │ │ │ │ │ │ ├── VisualPng.dsp │ │ │ │ │ │ ├── VisualPng.dsw │ │ │ │ │ │ ├── VisualPng.ico │ │ │ │ │ │ ├── VisualPng.png │ │ │ │ │ │ ├── VisualPng.rc │ │ │ │ │ │ ├── cexcept.h │ │ │ │ │ │ └── resource.h │ │ │ │ ├── depcomp │ │ │ │ ├── example.c │ │ │ │ ├── install-sh │ │ │ │ ├── libpng-config.in │ │ │ │ ├── libpng-manual.txt │ │ │ │ ├── libpng.3 │ │ │ │ ├── libpng.pc.in │ │ │ │ ├── libpngpf.3 │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── png.5 │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngbar.jpg │ │ │ │ ├── pngbar.png │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngnow.png │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngpriv.h │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngstruct.h │ │ │ │ ├── pngtest.c │ │ │ │ ├── pngtest.png │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngusr.dfa │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ ├── pngwutil.c │ │ │ │ ├── projects │ │ │ │ │ ├── owatcom │ │ │ │ │ │ ├── libpng.tgt │ │ │ │ │ │ ├── libpng.wpj │ │ │ │ │ │ ├── pngconfig.mak │ │ │ │ │ │ ├── pngstest.tgt │ │ │ │ │ │ ├── pngtest.tgt │ │ │ │ │ │ └── pngvalid.tgt │ │ │ │ │ ├── visualc71 │ │ │ │ │ │ ├── PRJ0041.mak │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── README_zlib.txt │ │ │ │ │ │ ├── libpng.sln │ │ │ │ │ │ ├── libpng.vcproj │ │ │ │ │ │ ├── pngtest.vcproj │ │ │ │ │ │ └── zlib.vcproj │ │ │ │ │ └── vstudio │ │ │ │ │ │ ├── WARNING │ │ │ │ │ │ ├── libpng │ │ │ │ │ │ └── libpng.vcxproj │ │ │ │ │ │ ├── pnglibconf │ │ │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ │ │ ├── pngstest │ │ │ │ │ │ └── pngstest.vcxproj │ │ │ │ │ │ ├── pngtest │ │ │ │ │ │ └── pngtest.vcxproj │ │ │ │ │ │ ├── pngunknown │ │ │ │ │ │ └── pngunknown.vcxproj │ │ │ │ │ │ ├── pngvalid │ │ │ │ │ │ └── pngvalid.vcxproj │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── vstudio.sln │ │ │ │ │ │ ├── zlib.props │ │ │ │ │ │ └── zlib │ │ │ │ │ │ └── zlib.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── SCOPTIONS.ppc │ │ │ │ │ ├── checksym.awk │ │ │ │ │ ├── def.dfn │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── dfn.awk │ │ │ │ │ ├── intprefix.dfn │ │ │ │ │ ├── libpng-config-body.in │ │ │ │ │ ├── libpng-config-head.in │ │ │ │ │ ├── libpng.pc.in │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ │ ├── macro.lst │ │ │ │ │ ├── makefile.32sunu │ │ │ │ │ ├── makefile.64sunu │ │ │ │ │ ├── makefile.acorn │ │ │ │ │ ├── makefile.aix │ │ │ │ │ ├── makefile.amiga │ │ │ │ │ ├── makefile.atari │ │ │ │ │ ├── makefile.bc32 │ │ │ │ │ ├── makefile.beos │ │ │ │ │ ├── makefile.bor │ │ │ │ │ ├── makefile.cegcc │ │ │ │ │ ├── makefile.darwin │ │ │ │ │ ├── makefile.dec │ │ │ │ │ ├── makefile.dj2 │ │ │ │ │ ├── makefile.elf │ │ │ │ │ ├── makefile.freebsd │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ ├── makefile.hp64 │ │ │ │ │ ├── makefile.hpgcc │ │ │ │ │ ├── makefile.hpux │ │ │ │ │ ├── makefile.ibmc │ │ │ │ │ ├── makefile.intel │ │ │ │ │ ├── makefile.knr │ │ │ │ │ ├── makefile.linux │ │ │ │ │ ├── makefile.mips │ │ │ │ │ ├── makefile.msc │ │ │ │ │ ├── makefile.msys │ │ │ │ │ ├── makefile.ne12bsd │ │ │ │ │ ├── makefile.netbsd │ │ │ │ │ ├── makefile.openbsd │ │ │ │ │ ├── makefile.sco │ │ │ │ │ ├── makefile.sggcc │ │ │ │ │ ├── makefile.sgi │ │ │ │ │ ├── makefile.so9 │ │ │ │ │ ├── makefile.solaris │ │ │ │ │ ├── makefile.solaris-x86 │ │ │ │ │ ├── makefile.std │ │ │ │ │ ├── makefile.sunos │ │ │ │ │ ├── makefile.tc3 │ │ │ │ │ ├── makefile.vcwin32 │ │ │ │ │ ├── makevms.com │ │ │ │ │ ├── options.awk │ │ │ │ │ ├── pnglibconf.dfa │ │ │ │ │ ├── pnglibconf.h.prebuilt │ │ │ │ │ ├── pnglibconf.mak │ │ │ │ │ ├── pngwin.rc │ │ │ │ │ ├── prefix.dfn │ │ │ │ │ ├── smakefile.ppc │ │ │ │ │ ├── sym.dfn │ │ │ │ │ ├── symbols.def │ │ │ │ │ ├── symbols.dfn │ │ │ │ │ └── vers.dfn │ │ │ │ ├── test-driver │ │ │ │ └── tests │ │ │ │ │ ├── pngstest │ │ │ │ │ ├── pngstest-0g01 │ │ │ │ │ ├── pngstest-0g02 │ │ │ │ │ ├── pngstest-0g04 │ │ │ │ │ ├── pngstest-0g08 │ │ │ │ │ ├── pngstest-0g16 │ │ │ │ │ ├── pngstest-2c08 │ │ │ │ │ ├── pngstest-2c16 │ │ │ │ │ ├── pngstest-3p01 │ │ │ │ │ ├── pngstest-3p02 │ │ │ │ │ ├── pngstest-3p04 │ │ │ │ │ ├── pngstest-3p08 │ │ │ │ │ ├── pngstest-4a08 │ │ │ │ │ ├── pngstest-4a16 │ │ │ │ │ ├── pngstest-6a08 │ │ │ │ │ ├── pngstest-6a16 │ │ │ │ │ ├── pngstest-error │ │ │ │ │ ├── pngtest │ │ │ │ │ ├── pngunknown-IDAT │ │ │ │ │ ├── pngunknown-discard │ │ │ │ │ ├── pngunknown-if-safe │ │ │ │ │ ├── pngunknown-sAPI │ │ │ │ │ ├── pngunknown-sTER │ │ │ │ │ ├── pngunknown-save │ │ │ │ │ ├── pngunknown-vpAg │ │ │ │ │ ├── pngvalid-gamma-16-to-8 │ │ │ │ │ ├── pngvalid-gamma-alpha-mode │ │ │ │ │ ├── pngvalid-gamma-background │ │ │ │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ │ │ │ ├── pngvalid-gamma-expand16-background │ │ │ │ │ ├── pngvalid-gamma-expand16-transform │ │ │ │ │ ├── pngvalid-gamma-sbit │ │ │ │ │ ├── pngvalid-gamma-threshold │ │ │ │ │ ├── pngvalid-gamma-transform │ │ │ │ │ ├── pngvalid-progressive-interlace-size │ │ │ │ │ ├── pngvalid-progressive-interlace-standard │ │ │ │ │ ├── pngvalid-progressive-interlace-transform │ │ │ │ │ ├── pngvalid-progressive-standard │ │ │ │ │ └── pngvalid-standard │ │ │ ├── libwebp-0.3.0 │ │ │ │ ├── ._ar-lib │ │ │ │ ├── ._compile │ │ │ │ ├── ._config.guess │ │ │ │ ├── ._config.sub │ │ │ │ ├── ._depcomp │ │ │ │ ├── ._install-sh │ │ │ │ ├── ._ltmain.sh │ │ │ │ ├── ._missing │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.vc │ │ │ │ ├── NEWS │ │ │ │ ├── PATENTS │ │ │ │ ├── README │ │ │ │ ├── README.mux │ │ │ │ ├── autogen.sh │ │ │ │ ├── configure.ac │ │ │ │ ├── doc │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── template.html │ │ │ │ │ ├── webp-container-spec.txt │ │ │ │ │ └── webp-lossless-bitstream-spec.txt │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── cwebp.c │ │ │ │ │ ├── dwebp.c │ │ │ │ │ ├── example_util.c │ │ │ │ │ ├── example_util.h │ │ │ │ │ ├── gif2webp.c │ │ │ │ │ ├── jpegdec.c │ │ │ │ │ ├── jpegdec.h │ │ │ │ │ ├── metadata.c │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── pngdec.c │ │ │ │ │ ├── pngdec.h │ │ │ │ │ ├── stopwatch.h │ │ │ │ │ ├── test.webp │ │ │ │ │ ├── test_ref.ppm │ │ │ │ │ ├── tiffdec.c │ │ │ │ │ ├── tiffdec.h │ │ │ │ │ ├── vwebp.c │ │ │ │ │ ├── webpmux.c │ │ │ │ │ ├── wicdec.c │ │ │ │ │ └── wicdec.h │ │ │ │ ├── iosbuild.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── ._libtool.m4 │ │ │ │ │ ├── ._ltoptions.m4 │ │ │ │ │ ├── ._ltsugar.m4 │ │ │ │ │ ├── ._ltversion.m4 │ │ │ │ │ ├── ._lt~obsolete.m4 │ │ │ │ │ └── ax_pthread.m4 │ │ │ │ ├── makefile.unix │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── cwebp.1 │ │ │ │ │ ├── dwebp.1 │ │ │ │ │ ├── gif2webp.1 │ │ │ │ │ └── webpmux.1 │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── dec │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── alpha.c │ │ │ │ │ │ ├── buffer.c │ │ │ │ │ │ ├── decode_vp8.h │ │ │ │ │ │ ├── frame.c │ │ │ │ │ │ ├── idec.c │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ ├── layer.c │ │ │ │ │ │ ├── quant.c │ │ │ │ │ │ ├── tree.c │ │ │ │ │ │ ├── vp8.c │ │ │ │ │ │ ├── vp8i.h │ │ │ │ │ │ ├── vp8l.c │ │ │ │ │ │ ├── vp8li.h │ │ │ │ │ │ ├── webp.c │ │ │ │ │ │ └── webpi.h │ │ │ │ │ ├── demux │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── demux.c │ │ │ │ │ │ └── libwebpdemux.pc.in │ │ │ │ │ ├── dsp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── dec.c │ │ │ │ │ │ ├── dec_neon.c │ │ │ │ │ │ ├── dec_sse2.c │ │ │ │ │ │ ├── dsp.h │ │ │ │ │ │ ├── enc.c │ │ │ │ │ │ ├── enc_neon.c │ │ │ │ │ │ ├── enc_sse2.c │ │ │ │ │ │ ├── lossless.c │ │ │ │ │ │ ├── lossless.h │ │ │ │ │ │ ├── upsampling.c │ │ │ │ │ │ ├── upsampling_neon.c │ │ │ │ │ │ ├── upsampling_sse2.c │ │ │ │ │ │ ├── yuv.c │ │ │ │ │ │ └── yuv.h │ │ │ │ │ ├── enc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── alpha.c │ │ │ │ │ │ ├── analysis.c │ │ │ │ │ │ ├── backward_references.c │ │ │ │ │ │ ├── backward_references.h │ │ │ │ │ │ ├── config.c │ │ │ │ │ │ ├── cost.c │ │ │ │ │ │ ├── cost.h │ │ │ │ │ │ ├── filter.c │ │ │ │ │ │ ├── frame.c │ │ │ │ │ │ ├── histogram.c │ │ │ │ │ │ ├── histogram.h │ │ │ │ │ │ ├── iterator.c │ │ │ │ │ │ ├── layer.c │ │ │ │ │ │ ├── picture.c │ │ │ │ │ │ ├── quant.c │ │ │ │ │ │ ├── syntax.c │ │ │ │ │ │ ├── token.c │ │ │ │ │ │ ├── tree.c │ │ │ │ │ │ ├── vp8enci.h │ │ │ │ │ │ ├── vp8l.c │ │ │ │ │ │ ├── vp8li.h │ │ │ │ │ │ └── webpenc.c │ │ │ │ │ ├── libwebp.pc.in │ │ │ │ │ ├── libwebpdecoder.pc.in │ │ │ │ │ ├── mux │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── libwebpmux.pc.in │ │ │ │ │ │ ├── muxedit.c │ │ │ │ │ │ ├── muxi.h │ │ │ │ │ │ ├── muxinternal.c │ │ │ │ │ │ └── muxread.c │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── bit_reader.c │ │ │ │ │ │ ├── bit_reader.h │ │ │ │ │ │ ├── bit_writer.c │ │ │ │ │ │ ├── bit_writer.h │ │ │ │ │ │ ├── color_cache.c │ │ │ │ │ │ ├── color_cache.h │ │ │ │ │ │ ├── filters.c │ │ │ │ │ │ ├── filters.h │ │ │ │ │ │ ├── huffman.c │ │ │ │ │ │ ├── huffman.h │ │ │ │ │ │ ├── huffman_encode.c │ │ │ │ │ │ ├── huffman_encode.h │ │ │ │ │ │ ├── quant_levels.c │ │ │ │ │ │ ├── quant_levels.h │ │ │ │ │ │ ├── quant_levels_dec.c │ │ │ │ │ │ ├── quant_levels_dec.h │ │ │ │ │ │ ├── rescaler.c │ │ │ │ │ │ ├── rescaler.h │ │ │ │ │ │ ├── thread.c │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ └── utils.h │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── demux.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── format_constants.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── mux_types.h │ │ │ │ │ │ └── types.h │ │ │ │ └── swig │ │ │ │ │ ├── README │ │ │ │ │ ├── libwebp.i │ │ │ │ │ ├── libwebp.jar │ │ │ │ │ ├── libwebp.py │ │ │ │ │ ├── libwebp_java_wrap.c │ │ │ │ │ ├── libwebp_python_wrap.c │ │ │ │ │ └── setup.py │ │ │ ├── tiff-4.0.3 │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── ChangeLog │ │ │ │ ├── HOWTO-RELEASE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.vc │ │ │ │ ├── README │ │ │ │ ├── README.vms │ │ │ │ ├── RELEASE-DATE │ │ │ │ ├── SConstruct │ │ │ │ ├── TODO │ │ │ │ ├── VERSION │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── build │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── README │ │ │ │ ├── config │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ ├── mkinstalldirs │ │ │ │ │ └── test-driver │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── configure.com │ │ │ │ ├── contrib │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── addtiffo │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── addtiffo.c │ │ │ │ │ │ ├── tif_overview.c │ │ │ │ │ │ ├── tif_ovrcache.c │ │ │ │ │ │ └── tif_ovrcache.h │ │ │ │ │ ├── dbs │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── tiff-bi.c │ │ │ │ │ │ ├── tiff-grayscale.c │ │ │ │ │ │ ├── tiff-palette.c │ │ │ │ │ │ ├── tiff-rgb.c │ │ │ │ │ │ └── xtiff │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── patchlevel.h │ │ │ │ │ │ │ ├── xtiff.c │ │ │ │ │ │ │ └── xtifficon.h │ │ │ │ │ ├── iptcutil │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── iptcutil.c │ │ │ │ │ │ ├── test.iptc │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── mfs │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── mfs_file.c │ │ │ │ │ ├── pds │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── tif_imageiter.c │ │ │ │ │ │ ├── tif_imageiter.h │ │ │ │ │ │ ├── tif_pdsdirread.c │ │ │ │ │ │ └── tif_pdsdirwrite.c │ │ │ │ │ ├── ras │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── ras2tif.c │ │ │ │ │ │ └── tif2ras.c │ │ │ │ │ ├── stream │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── tiffstream.cpp │ │ │ │ │ │ └── tiffstream.h │ │ │ │ │ ├── tags │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── listtif.c │ │ │ │ │ │ ├── maketif.c │ │ │ │ │ │ ├── xtif_dir.c │ │ │ │ │ │ ├── xtiffio.h │ │ │ │ │ │ └── xtiffiop.h │ │ │ │ │ └── win_dib │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.w95 │ │ │ │ │ │ ├── README.Tiffile │ │ │ │ │ │ ├── README.tiff2dib │ │ │ │ │ │ ├── Tiffile.cpp │ │ │ │ │ │ └── tiff2dib.c │ │ │ │ ├── html │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── TIFFTechNote2.html │ │ │ │ │ ├── addingtags.html │ │ │ │ │ ├── bugs.html │ │ │ │ │ ├── build.html │ │ │ │ │ ├── contrib.html │ │ │ │ │ ├── document.html │ │ │ │ │ ├── images.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── back.gif │ │ │ │ │ │ ├── bali.jpg │ │ │ │ │ │ ├── cat.gif │ │ │ │ │ │ ├── cover.jpg │ │ │ │ │ │ ├── cramps.gif │ │ │ │ │ │ ├── dave.gif │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ ├── jello.jpg │ │ │ │ │ │ ├── jim.gif │ │ │ │ │ │ ├── note.gif │ │ │ │ │ │ ├── oxford.gif │ │ │ │ │ │ ├── quad.jpg │ │ │ │ │ │ ├── ring.gif │ │ │ │ │ │ ├── smallliz.jpg │ │ │ │ │ │ ├── strike.gif │ │ │ │ │ │ └── warning.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── internals.html │ │ │ │ │ ├── intro.html │ │ │ │ │ ├── libtiff.html │ │ │ │ │ ├── man │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── TIFFClose.3tiff.html │ │ │ │ │ │ ├── TIFFDataWidth.3tiff.html │ │ │ │ │ │ ├── TIFFError.3tiff.html │ │ │ │ │ │ ├── TIFFFieldDataType.3tiff.html │ │ │ │ │ │ ├── TIFFFieldName.3tiff.html │ │ │ │ │ │ ├── TIFFFieldPassCount.3tiff.html │ │ │ │ │ │ ├── TIFFFieldReadCount.3tiff.html │ │ │ │ │ │ ├── TIFFFieldTag.3tiff.html │ │ │ │ │ │ ├── TIFFFieldWriteCount.3tiff.html │ │ │ │ │ │ ├── TIFFFlush.3tiff.html │ │ │ │ │ │ ├── TIFFGetField.3tiff.html │ │ │ │ │ │ ├── TIFFOpen.3tiff.html │ │ │ │ │ │ ├── TIFFPrintDirectory.3tiff.html │ │ │ │ │ │ ├── TIFFRGBAImage.3tiff.html │ │ │ │ │ │ ├── TIFFReadDirectory.3tiff.html │ │ │ │ │ │ ├── TIFFReadEncodedStrip.3tiff.html │ │ │ │ │ │ ├── TIFFReadEncodedTile.3tiff.html │ │ │ │ │ │ ├── TIFFReadRGBAImage.3tiff.html │ │ │ │ │ │ ├── TIFFReadRGBAStrip.3tiff.html │ │ │ │ │ │ ├── TIFFReadRGBATile.3tiff.html │ │ │ │ │ │ ├── TIFFReadRawStrip.3tiff.html │ │ │ │ │ │ ├── TIFFReadRawTile.3tiff.html │ │ │ │ │ │ ├── TIFFReadScanline.3tiff.html │ │ │ │ │ │ ├── TIFFReadTile.3tiff.html │ │ │ │ │ │ ├── TIFFSetDirectory.3tiff.html │ │ │ │ │ │ ├── TIFFSetField.3tiff.html │ │ │ │ │ │ ├── TIFFWarning.3tiff.html │ │ │ │ │ │ ├── TIFFWriteDirectory.3tiff.html │ │ │ │ │ │ ├── TIFFWriteEncodedStrip.3tiff.html │ │ │ │ │ │ ├── TIFFWriteEncodedTile.3tiff.html │ │ │ │ │ │ ├── TIFFWriteRawStrip.3tiff.html │ │ │ │ │ │ ├── TIFFWriteRawTile.3tiff.html │ │ │ │ │ │ ├── TIFFWriteScanline.3tiff.html │ │ │ │ │ │ ├── TIFFWriteTile.3tiff.html │ │ │ │ │ │ ├── TIFFbuffer.3tiff.html │ │ │ │ │ │ ├── TIFFcodec.3tiff.html │ │ │ │ │ │ ├── TIFFcolor.3tiff.html │ │ │ │ │ │ ├── TIFFmemory.3tiff.html │ │ │ │ │ │ ├── TIFFquery.3tiff.html │ │ │ │ │ │ ├── TIFFsize.3tiff.html │ │ │ │ │ │ ├── TIFFstrip.3tiff.html │ │ │ │ │ │ ├── TIFFswab.3tiff.html │ │ │ │ │ │ ├── TIFFtile.3tiff.html │ │ │ │ │ │ ├── bmp2tiff.1.html │ │ │ │ │ │ ├── fax2ps.1.html │ │ │ │ │ │ ├── fax2tiff.1.html │ │ │ │ │ │ ├── gif2tiff.1.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── libtiff.3tiff.html │ │ │ │ │ │ ├── pal2rgb.1.html │ │ │ │ │ │ ├── ppm2tiff.1.html │ │ │ │ │ │ ├── ras2tiff.1.html │ │ │ │ │ │ ├── raw2tiff.1.html │ │ │ │ │ │ ├── rgb2ycbcr.1.html │ │ │ │ │ │ ├── sgi2tiff.1.html │ │ │ │ │ │ ├── thumbnail.1.html │ │ │ │ │ │ ├── tiff2bw.1.html │ │ │ │ │ │ ├── tiff2pdf.1.html │ │ │ │ │ │ ├── tiff2ps.1.html │ │ │ │ │ │ ├── tiff2rgba.1.html │ │ │ │ │ │ ├── tiffcmp.1.html │ │ │ │ │ │ ├── tiffcp.1.html │ │ │ │ │ │ ├── tiffcrop.1.html │ │ │ │ │ │ ├── tiffdither.1.html │ │ │ │ │ │ ├── tiffdump.1.html │ │ │ │ │ │ ├── tiffgt.1.html │ │ │ │ │ │ ├── tiffinfo.1.html │ │ │ │ │ │ ├── tiffmedian.1.html │ │ │ │ │ │ ├── tiffset.1.html │ │ │ │ │ │ ├── tiffsplit.1.html │ │ │ │ │ │ └── tiffsv.1.html │ │ │ │ │ ├── misc.html │ │ │ │ │ ├── support.html │ │ │ │ │ ├── tools.html │ │ │ │ │ ├── v3.4beta007.html │ │ │ │ │ ├── v3.4beta016.html │ │ │ │ │ ├── v3.4beta018.html │ │ │ │ │ ├── v3.4beta024.html │ │ │ │ │ ├── v3.4beta028.html │ │ │ │ │ ├── v3.4beta029.html │ │ │ │ │ ├── v3.4beta031.html │ │ │ │ │ ├── v3.4beta032.html │ │ │ │ │ ├── v3.4beta033.html │ │ │ │ │ ├── v3.4beta034.html │ │ │ │ │ ├── v3.4beta035.html │ │ │ │ │ ├── v3.4beta036.html │ │ │ │ │ ├── v3.5.1.html │ │ │ │ │ ├── v3.5.2.html │ │ │ │ │ ├── v3.5.3.html │ │ │ │ │ ├── v3.5.4.html │ │ │ │ │ ├── v3.5.5.html │ │ │ │ │ ├── v3.5.6-beta.html │ │ │ │ │ ├── v3.5.7.html │ │ │ │ │ ├── v3.6.0.html │ │ │ │ │ ├── v3.6.1.html │ │ │ │ │ ├── v3.7.0.html │ │ │ │ │ ├── v3.7.0alpha.html │ │ │ │ │ ├── v3.7.0beta.html │ │ │ │ │ ├── v3.7.0beta2.html │ │ │ │ │ ├── v3.7.1.html │ │ │ │ │ ├── v3.7.2.html │ │ │ │ │ ├── v3.7.3.html │ │ │ │ │ ├── v3.7.4.html │ │ │ │ │ ├── v3.8.0.html │ │ │ │ │ ├── v3.8.1.html │ │ │ │ │ ├── v3.8.2.html │ │ │ │ │ ├── v3.9.0beta.html │ │ │ │ │ ├── v3.9.1.html │ │ │ │ │ ├── v3.9.2.html │ │ │ │ │ ├── v4.0.0.html │ │ │ │ │ ├── v4.0.1.html │ │ │ │ │ └── v4.0.2.html │ │ │ │ ├── libtiff-4.pc.in │ │ │ │ ├── libtiff │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ ├── SConstruct │ │ │ │ │ ├── libtiff.def │ │ │ │ │ ├── libtiff.map │ │ │ │ │ ├── libtiffxx.map │ │ │ │ │ ├── mkg3states.c │ │ │ │ │ ├── t4.h │ │ │ │ │ ├── tif_aux.c │ │ │ │ │ ├── tif_close.c │ │ │ │ │ ├── tif_codec.c │ │ │ │ │ ├── tif_color.c │ │ │ │ │ ├── tif_compress.c │ │ │ │ │ ├── tif_config.h-vms │ │ │ │ │ ├── tif_config.h.in │ │ │ │ │ ├── tif_config.vc.h │ │ │ │ │ ├── tif_config.wince.h │ │ │ │ │ ├── tif_dir.c │ │ │ │ │ ├── tif_dir.h │ │ │ │ │ ├── tif_dirinfo.c │ │ │ │ │ ├── tif_dirread.c │ │ │ │ │ ├── tif_dirwrite.c │ │ │ │ │ ├── tif_dumpmode.c │ │ │ │ │ ├── tif_error.c │ │ │ │ │ ├── tif_extension.c │ │ │ │ │ ├── tif_fax3.c │ │ │ │ │ ├── tif_fax3.h │ │ │ │ │ ├── tif_fax3sm.c │ │ │ │ │ ├── tif_flush.c │ │ │ │ │ ├── tif_getimage.c │ │ │ │ │ ├── tif_jbig.c │ │ │ │ │ ├── tif_jpeg.c │ │ │ │ │ ├── tif_jpeg_12.c │ │ │ │ │ ├── tif_luv.c │ │ │ │ │ ├── tif_lzma.c │ │ │ │ │ ├── tif_lzw.c │ │ │ │ │ ├── tif_next.c │ │ │ │ │ ├── tif_ojpeg.c │ │ │ │ │ ├── tif_open.c │ │ │ │ │ ├── tif_packbits.c │ │ │ │ │ ├── tif_pixarlog.c │ │ │ │ │ ├── tif_predict.c │ │ │ │ │ ├── tif_predict.h │ │ │ │ │ ├── tif_print.c │ │ │ │ │ ├── tif_read.c │ │ │ │ │ ├── tif_stream.cxx │ │ │ │ │ ├── tif_strip.c │ │ │ │ │ ├── tif_swab.c │ │ │ │ │ ├── tif_thunder.c │ │ │ │ │ ├── tif_tile.c │ │ │ │ │ ├── tif_unix.c │ │ │ │ │ ├── tif_version.c │ │ │ │ │ ├── tif_warning.c │ │ │ │ │ ├── tif_win32.c │ │ │ │ │ ├── tif_write.c │ │ │ │ │ ├── tif_zip.c │ │ │ │ │ ├── tiff.h │ │ │ │ │ ├── tiffconf.h.in │ │ │ │ │ ├── tiffconf.vc.h │ │ │ │ │ ├── tiffconf.wince.h │ │ │ │ │ ├── tiffio.h │ │ │ │ │ ├── tiffio.hxx │ │ │ │ │ ├── tiffiop.h │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ └── uvcode.h │ │ │ │ ├── m4 │ │ │ │ │ ├── acinclude.m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── TIFFClose.3tiff │ │ │ │ │ ├── TIFFDataWidth.3tiff │ │ │ │ │ ├── TIFFError.3tiff │ │ │ │ │ ├── TIFFFieldDataType.3tiff │ │ │ │ │ ├── TIFFFieldName.3tiff │ │ │ │ │ ├── TIFFFieldPassCount.3tiff │ │ │ │ │ ├── TIFFFieldReadCount.3tiff │ │ │ │ │ ├── TIFFFieldTag.3tiff │ │ │ │ │ ├── TIFFFieldWriteCount.3tiff │ │ │ │ │ ├── TIFFFlush.3tiff │ │ │ │ │ ├── TIFFGetField.3tiff │ │ │ │ │ ├── TIFFOpen.3tiff │ │ │ │ │ ├── TIFFPrintDirectory.3tiff │ │ │ │ │ ├── TIFFRGBAImage.3tiff │ │ │ │ │ ├── TIFFReadDirectory.3tiff │ │ │ │ │ ├── TIFFReadEncodedStrip.3tiff │ │ │ │ │ ├── TIFFReadEncodedTile.3tiff │ │ │ │ │ ├── TIFFReadRGBAImage.3tiff │ │ │ │ │ ├── TIFFReadRGBAStrip.3tiff │ │ │ │ │ ├── TIFFReadRGBATile.3tiff │ │ │ │ │ ├── TIFFReadRawStrip.3tiff │ │ │ │ │ ├── TIFFReadRawTile.3tiff │ │ │ │ │ ├── TIFFReadScanline.3tiff │ │ │ │ │ ├── TIFFReadTile.3tiff │ │ │ │ │ ├── TIFFSetDirectory.3tiff │ │ │ │ │ ├── TIFFSetField.3tiff │ │ │ │ │ ├── TIFFWarning.3tiff │ │ │ │ │ ├── TIFFWriteDirectory.3tiff │ │ │ │ │ ├── TIFFWriteEncodedStrip.3tiff │ │ │ │ │ ├── TIFFWriteEncodedTile.3tiff │ │ │ │ │ ├── TIFFWriteRawStrip.3tiff │ │ │ │ │ ├── TIFFWriteRawTile.3tiff │ │ │ │ │ ├── TIFFWriteScanline.3tiff │ │ │ │ │ ├── TIFFWriteTile.3tiff │ │ │ │ │ ├── TIFFbuffer.3tiff │ │ │ │ │ ├── TIFFcodec.3tiff │ │ │ │ │ ├── TIFFcolor.3tiff │ │ │ │ │ ├── TIFFmemory.3tiff │ │ │ │ │ ├── TIFFquery.3tiff │ │ │ │ │ ├── TIFFsize.3tiff │ │ │ │ │ ├── TIFFstrip.3tiff │ │ │ │ │ ├── TIFFswab.3tiff │ │ │ │ │ ├── TIFFtile.3tiff │ │ │ │ │ ├── bmp2tiff.1 │ │ │ │ │ ├── fax2ps.1 │ │ │ │ │ ├── fax2tiff.1 │ │ │ │ │ ├── gif2tiff.1 │ │ │ │ │ ├── libtiff.3tiff │ │ │ │ │ ├── pal2rgb.1 │ │ │ │ │ ├── ppm2tiff.1 │ │ │ │ │ ├── ras2tiff.1 │ │ │ │ │ ├── raw2tiff.1 │ │ │ │ │ ├── rgb2ycbcr.1 │ │ │ │ │ ├── sgi2tiff.1 │ │ │ │ │ ├── thumbnail.1 │ │ │ │ │ ├── tiff2bw.1 │ │ │ │ │ ├── tiff2pdf.1 │ │ │ │ │ ├── tiff2ps.1 │ │ │ │ │ ├── tiff2rgba.1 │ │ │ │ │ ├── tiffcmp.1 │ │ │ │ │ ├── tiffcp.1 │ │ │ │ │ ├── tiffcrop.1 │ │ │ │ │ ├── tiffdither.1 │ │ │ │ │ ├── tiffdump.1 │ │ │ │ │ ├── tiffgt.1 │ │ │ │ │ ├── tiffinfo.1 │ │ │ │ │ ├── tiffmedian.1 │ │ │ │ │ ├── tiffset.1 │ │ │ │ │ ├── tiffsplit.1 │ │ │ │ │ └── tiffsv.1 │ │ │ │ ├── nmake.opt │ │ │ │ ├── port │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ ├── dummy.c │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── lfind.c │ │ │ │ │ ├── libport.h │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strtoul.c │ │ │ │ │ └── strtoull.c │ │ │ │ ├── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ascii_tag.c │ │ │ │ │ ├── bmp2tiff_palette.sh │ │ │ │ │ ├── bmp2tiff_rgb.sh │ │ │ │ │ ├── check_tag.c │ │ │ │ │ ├── common.sh │ │ │ │ │ ├── custom_dir.c │ │ │ │ │ ├── gif2tiff.sh │ │ │ │ │ ├── images │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── logluv-3c-16b.tiff │ │ │ │ │ │ ├── minisblack-1c-16b.tiff │ │ │ │ │ │ ├── minisblack-1c-8b.pgm │ │ │ │ │ │ ├── minisblack-1c-8b.tiff │ │ │ │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ │ │ │ ├── palette-1c-1b.tiff │ │ │ │ │ │ ├── palette-1c-4b.tiff │ │ │ │ │ │ ├── palette-1c-8b.bmp │ │ │ │ │ │ ├── palette-1c-8b.gif │ │ │ │ │ │ ├── palette-1c-8b.tiff │ │ │ │ │ │ ├── quad-tile.jpg.tiff │ │ │ │ │ │ ├── rgb-3c-16b.tiff │ │ │ │ │ │ ├── rgb-3c-8b.bmp │ │ │ │ │ │ ├── rgb-3c-8b.ppm │ │ │ │ │ │ └── rgb-3c-8b.tiff │ │ │ │ │ ├── long_tag.c │ │ │ │ │ ├── ppm2tiff_pbm.sh │ │ │ │ │ ├── ppm2tiff_pgm.sh │ │ │ │ │ ├── ppm2tiff_ppm.sh │ │ │ │ │ ├── raw_decode.c │ │ │ │ │ ├── rewrite_tag.c │ │ │ │ │ ├── short_tag.c │ │ │ │ │ ├── strip.c │ │ │ │ │ ├── strip_rw.c │ │ │ │ │ ├── test_arrays.c │ │ │ │ │ ├── test_arrays.h │ │ │ │ │ ├── tiff2pdf.sh │ │ │ │ │ ├── tiff2ps-EPS1.sh │ │ │ │ │ ├── tiff2ps-PS1.sh │ │ │ │ │ ├── tiff2ps-PS2.sh │ │ │ │ │ ├── tiff2ps-PS3.sh │ │ │ │ │ ├── tiff2rgba-logluv-3c-16b.sh │ │ │ │ │ ├── tiff2rgba-minisblack-1c-16b.sh │ │ │ │ │ ├── tiff2rgba-minisblack-1c-8b.sh │ │ │ │ │ ├── tiff2rgba-minisblack-2c-8b-alpha.sh │ │ │ │ │ ├── tiff2rgba-miniswhite-1c-1b.sh │ │ │ │ │ ├── tiff2rgba-palette-1c-1b.sh │ │ │ │ │ ├── tiff2rgba-palette-1c-4b.sh │ │ │ │ │ ├── tiff2rgba-palette-1c-8b.sh │ │ │ │ │ ├── tiff2rgba-quad-tile.jpg.sh │ │ │ │ │ ├── tiff2rgba-rgb-3c-16b.sh │ │ │ │ │ ├── tiff2rgba-rgb-3c-8b.sh │ │ │ │ │ ├── tiffcp-g3-1d-fill.sh │ │ │ │ │ ├── tiffcp-g3-1d.sh │ │ │ │ │ ├── tiffcp-g3-2d-fill.sh │ │ │ │ │ ├── tiffcp-g3-2d.sh │ │ │ │ │ ├── tiffcp-g3.sh │ │ │ │ │ ├── tiffcp-g4.sh │ │ │ │ │ ├── tiffcp-logluv.sh │ │ │ │ │ ├── tiffcp-split-join.sh │ │ │ │ │ ├── tiffcp-split.sh │ │ │ │ │ ├── tiffcp-thumbnail.sh │ │ │ │ │ ├── tiffcrop-R90-logluv-3c-16b.sh │ │ │ │ │ ├── tiffcrop-R90-minisblack-1c-16b.sh │ │ │ │ │ ├── tiffcrop-R90-minisblack-1c-8b.sh │ │ │ │ │ ├── tiffcrop-R90-minisblack-2c-8b-alpha.sh │ │ │ │ │ ├── tiffcrop-R90-miniswhite-1c-1b.sh │ │ │ │ │ ├── tiffcrop-R90-palette-1c-1b.sh │ │ │ │ │ ├── tiffcrop-R90-palette-1c-4b.sh │ │ │ │ │ ├── tiffcrop-R90-palette-1c-8b.sh │ │ │ │ │ ├── tiffcrop-R90-rgb-3c-16b.sh │ │ │ │ │ ├── tiffcrop-R90-rgb-3c-8b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-logluv-3c-16b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-minisblack-1c-16b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-minisblack-1c-8b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh │ │ │ │ │ ├── tiffcrop-doubleflip-miniswhite-1c-1b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-palette-1c-1b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-palette-1c-4b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-palette-1c-8b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-rgb-3c-16b.sh │ │ │ │ │ ├── tiffcrop-doubleflip-rgb-3c-8b.sh │ │ │ │ │ ├── tiffcrop-extract-logluv-3c-16b.sh │ │ │ │ │ ├── tiffcrop-extract-minisblack-1c-16b.sh │ │ │ │ │ ├── tiffcrop-extract-minisblack-1c-8b.sh │ │ │ │ │ ├── tiffcrop-extract-minisblack-2c-8b-alpha.sh │ │ │ │ │ ├── tiffcrop-extract-miniswhite-1c-1b.sh │ │ │ │ │ ├── tiffcrop-extract-palette-1c-1b.sh │ │ │ │ │ ├── tiffcrop-extract-palette-1c-4b.sh │ │ │ │ │ ├── tiffcrop-extract-palette-1c-8b.sh │ │ │ │ │ ├── tiffcrop-extract-rgb-3c-16b.sh │ │ │ │ │ ├── tiffcrop-extract-rgb-3c-8b.sh │ │ │ │ │ ├── tiffcrop-extractz14-logluv-3c-16b.sh │ │ │ │ │ ├── tiffcrop-extractz14-minisblack-1c-16b.sh │ │ │ │ │ ├── tiffcrop-extractz14-minisblack-1c-8b.sh │ │ │ │ │ ├── tiffcrop-extractz14-minisblack-2c-8b-alpha.sh │ │ │ │ │ ├── tiffcrop-extractz14-miniswhite-1c-1b.sh │ │ │ │ │ ├── tiffcrop-extractz14-palette-1c-1b.sh │ │ │ │ │ ├── tiffcrop-extractz14-palette-1c-4b.sh │ │ │ │ │ ├── tiffcrop-extractz14-palette-1c-8b.sh │ │ │ │ │ ├── tiffcrop-extractz14-rgb-3c-16b.sh │ │ │ │ │ ├── tiffcrop-extractz14-rgb-3c-8b.sh │ │ │ │ │ ├── tiffdump.sh │ │ │ │ │ ├── tiffinfo.sh │ │ │ │ │ └── tifftest.h │ │ │ │ └── tools │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.vc │ │ │ │ │ ├── bmp2tiff.c │ │ │ │ │ ├── fax2ps.c │ │ │ │ │ ├── fax2tiff.c │ │ │ │ │ ├── gif2tiff.c │ │ │ │ │ ├── pal2rgb.c │ │ │ │ │ ├── ppm2tiff.c │ │ │ │ │ ├── ras2tiff.c │ │ │ │ │ ├── rasterfile.h │ │ │ │ │ ├── raw2tiff.c │ │ │ │ │ ├── rgb2ycbcr.c │ │ │ │ │ ├── sgi2tiff.c │ │ │ │ │ ├── sgisv.c │ │ │ │ │ ├── thumbnail.c │ │ │ │ │ ├── tiff2bw.c │ │ │ │ │ ├── tiff2pdf.c │ │ │ │ │ ├── tiff2ps.c │ │ │ │ │ ├── tiff2rgba.c │ │ │ │ │ ├── tiffcmp.c │ │ │ │ │ ├── tiffcp.c │ │ │ │ │ ├── tiffcrop.c │ │ │ │ │ ├── tiffdither.c │ │ │ │ │ ├── tiffdump.c │ │ │ │ │ ├── tiffgt.c │ │ │ │ │ ├── tiffinfo.c │ │ │ │ │ ├── tiffmedian.c │ │ │ │ │ ├── tiffset.c │ │ │ │ │ ├── tiffsplit.c │ │ │ │ │ └── ycbcr.c │ │ │ ├── zlib-1.2.8.patch │ │ │ └── zlib-1.2.8 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── amiga │ │ │ │ ├── Makefile.pup │ │ │ │ └── Makefile.sas │ │ │ │ ├── as400 │ │ │ │ ├── bndsrc │ │ │ │ ├── compile.clp │ │ │ │ ├── readme.txt │ │ │ │ └── zlib.inc │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── contrib │ │ │ │ ├── README.contrib │ │ │ │ ├── ada │ │ │ │ │ ├── buffer_demo.adb │ │ │ │ │ ├── mtest.adb │ │ │ │ │ ├── read.adb │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── test.adb │ │ │ │ │ ├── zlib-streams.adb │ │ │ │ │ ├── zlib-streams.ads │ │ │ │ │ ├── zlib-thin.adb │ │ │ │ │ ├── zlib-thin.ads │ │ │ │ │ ├── zlib.adb │ │ │ │ │ ├── zlib.ads │ │ │ │ │ └── zlib.gpr │ │ │ │ ├── amd64 │ │ │ │ │ └── amd64-match.S │ │ │ │ ├── asm686 │ │ │ │ │ ├── README.686 │ │ │ │ │ └── match.S │ │ │ │ ├── blast │ │ │ │ │ ├── README │ │ │ │ │ ├── blast.c │ │ │ │ │ ├── blast.h │ │ │ │ │ ├── test.pk │ │ │ │ │ └── test.txt │ │ │ │ ├── delphi │ │ │ │ │ ├── ZLib.pas │ │ │ │ │ ├── ZLibConst.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── zlibd32.mak │ │ │ │ ├── dotzlib │ │ │ │ │ ├── DotZLib.build │ │ │ │ │ ├── DotZLib.chm │ │ │ │ │ ├── DotZLib.sln │ │ │ │ │ ├── DotZLib │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ │ └── UnitTests.cs │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── gcc_gvmat64 │ │ │ │ │ └── gvmat64.S │ │ │ │ ├── infback9 │ │ │ │ │ ├── README │ │ │ │ │ ├── infback9.c │ │ │ │ │ ├── infback9.h │ │ │ │ │ ├── inffix9.h │ │ │ │ │ ├── inflate9.h │ │ │ │ │ ├── inftree9.c │ │ │ │ │ └── inftree9.h │ │ │ │ ├── inflate86 │ │ │ │ │ ├── inffas86.c │ │ │ │ │ └── inffast.S │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── masmx64 │ │ │ │ │ ├── bld_ml64.bat │ │ │ │ │ ├── gvmat64.asm │ │ │ │ │ ├── inffas8664.c │ │ │ │ │ ├── inffasx64.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── masmx86 │ │ │ │ │ ├── bld_ml32.bat │ │ │ │ │ ├── inffas32.asm │ │ │ │ │ ├── match686.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── minizip │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── miniunz.c │ │ │ │ │ ├── miniunzip.1 │ │ │ │ │ ├── minizip.1 │ │ │ │ │ ├── minizip.c │ │ │ │ │ ├── minizip.pc.in │ │ │ │ │ ├── mztools.c │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zip.c │ │ │ │ │ └── zip.h │ │ │ │ ├── pascal │ │ │ │ │ ├── example.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── zlibd32.mak │ │ │ │ │ └── zlibpas.pas │ │ │ │ ├── puff │ │ │ │ │ ├── README │ │ │ │ │ ├── puff.c │ │ │ │ │ ├── puff.h │ │ │ │ │ ├── pufftest.c │ │ │ │ │ └── zeros.raw │ │ │ │ ├── testzlib │ │ │ │ │ ├── testzlib.c │ │ │ │ │ └── testzlib.txt │ │ │ │ ├── untgz │ │ │ │ │ ├── Makefile.msc │ │ │ │ │ └── untgz.c │ │ │ │ └── vstudio │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vc10 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── miniunz.vcxproj.filters │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── minizip.vcxproj.filters │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlib.vcxproj.filters │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibstat.vcxproj.filters │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ ├── zlibvc.vcxproj │ │ │ │ │ └── zlibvc.vcxproj.filters │ │ │ │ │ ├── vc11 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ └── vc9 │ │ │ │ │ ├── miniunz.vcproj │ │ │ │ │ ├── minizip.vcproj │ │ │ │ │ ├── testzlib.vcproj │ │ │ │ │ ├── testzlibdll.vcproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcproj │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ │ ├── examples │ │ │ │ ├── README.examples │ │ │ │ ├── enough.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── gun.c │ │ │ │ ├── gzappend.c │ │ │ │ ├── gzjoin.c │ │ │ │ ├── gzlog.c │ │ │ │ ├── gzlog.h │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ └── zran.c │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── make-cross-x64.sh │ │ │ │ ├── make-cross-x86.sh │ │ │ │ ├── make_vms.com │ │ │ │ ├── msdos │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.dj2 │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.msc │ │ │ │ └── Makefile.tc │ │ │ │ ├── nintendods │ │ │ │ └── README │ │ │ │ ├── old │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.riscos │ │ │ │ ├── README │ │ │ │ ├── descrip.mms │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ └── zlib.def │ │ │ │ └── visual-basic.txt │ │ │ │ ├── qnx │ │ │ │ └── package.qpg │ │ │ │ ├── test │ │ │ │ ├── example.c │ │ │ │ ├── infcover.c │ │ │ │ └── minigzip.c │ │ │ │ ├── treebuild.xml │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── watcom │ │ │ │ ├── watcom_f.mak │ │ │ │ └── watcom_l.mak │ │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.gcc │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── VisualC.txt │ │ │ │ ├── zlib.def │ │ │ │ └── zlib1.rc │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.3.pdf │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.cmakein │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zlib2ansi │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── gcc-fat.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── miniz.h │ │ ├── missing │ │ ├── showimage.c │ │ └── version.rc │ ├── SDL2_mixer │ │ ├── Android.mk │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── SDL2_mixer.pc.in │ │ ├── SDL2_mixer.spec │ │ ├── SDL2_mixer.spec.in │ │ ├── SDL_mixer.h │ │ ├── VisualC-WinRT │ │ │ ├── WinPhone80_VS2012 │ │ │ │ ├── SDL_mixer-WinPhone80.vcxproj │ │ │ │ ├── SDL_mixer-WinPhone80.vcxproj.filters │ │ │ │ ├── libogg_dynamic-WinPhone80.vcxproj │ │ │ │ ├── libogg_dynamic-WinPhone80.vcxproj.filters │ │ │ │ ├── libvorbis_dynamic-WinPhone80.vcxproj │ │ │ │ ├── libvorbis_dynamic-WinPhone80.vcxproj.filters │ │ │ │ ├── libvorbisfile_dynamic-WinPhone80.vcxproj │ │ │ │ └── libvorbisfile_dynamic-WinPhone80.vcxproj.filters │ │ │ ├── WinPhone81_VS2013 │ │ │ │ ├── SDL_mixer-WinPhone81.vcxproj │ │ │ │ ├── SDL_mixer-WinPhone81.vcxproj.filters │ │ │ │ ├── libogg_dynamic-WinPhone81.vcxproj │ │ │ │ ├── libogg_dynamic-WinPhone81.vcxproj.filters │ │ │ │ ├── libvorbis_dynamic-WinPhone81.vcxproj │ │ │ │ ├── libvorbis_dynamic-WinPhone81.vcxproj.filters │ │ │ │ ├── libvorbisfile_dynamic-WinPhone81.vcxproj │ │ │ │ └── libvorbisfile_dynamic-WinPhone81.vcxproj.filters │ │ │ ├── WinRT80_VS2012 │ │ │ │ ├── SDL_mixer-WinRT80.vcxproj │ │ │ │ ├── libogg_dynamic-WinRT80.vcxproj │ │ │ │ ├── libvorbis_dynamic-WinRT80.vcxproj │ │ │ │ └── libvorbisfile_dynamic-WinRT80.vcxproj │ │ │ └── WinRT81_VS2013 │ │ │ │ ├── SDL_mixer-WinRT81.vcxproj │ │ │ │ ├── SDL_mixer-WinRT81.vcxproj.filters │ │ │ │ ├── libogg_dynamic-WinRT81.vcxproj │ │ │ │ ├── libogg_dynamic-WinRT81.vcxproj.filters │ │ │ │ ├── libvorbis_dynamic-WinRT81.vcxproj │ │ │ │ ├── libvorbis_dynamic-WinRT81.vcxproj.filters │ │ │ │ ├── libvorbisfile_dynamic-WinRT81.vcxproj │ │ │ │ └── libvorbisfile_dynamic-WinRT81.vcxproj.filters │ │ ├── VisualC │ │ │ ├── SDL_mixer.sln │ │ │ ├── SDL_mixer.vcxproj │ │ │ ├── SDL_mixer.vcxproj.filters │ │ │ ├── SDL_mixer.vcxproj.user │ │ │ ├── SDL_mixer_VS2008.sln │ │ │ ├── SDL_mixer_VS2008.vcproj │ │ │ ├── SDL_mixer_VS2010.sln │ │ │ ├── SDL_mixer_VS2010.vcxproj │ │ │ ├── SDL_mixer_VS2012.sln │ │ │ ├── SDL_mixer_VS2012.vcxproj │ │ │ ├── Version.rc │ │ │ ├── clean.sh │ │ │ ├── external │ │ │ │ ├── include │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ ├── libmodplug │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── modplug.h │ │ │ │ │ ├── ogg │ │ │ │ │ │ ├── config_types.h │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── smpeg.h │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ └── lib │ │ │ │ │ ├── x64 │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ ├── LICENSE.mikmod.txt │ │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ ├── libFLAC-8.dll │ │ │ │ │ ├── libmikmod-2.dll │ │ │ │ │ ├── libmodplug-1.dll │ │ │ │ │ ├── libogg-0.dll │ │ │ │ │ ├── libvorbis-0.dll │ │ │ │ │ ├── libvorbisfile-3.dll │ │ │ │ │ └── smpeg2.dll │ │ │ │ │ └── x86 │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ ├── libFLAC-8.dll │ │ │ │ │ ├── libmodplug-1.dll │ │ │ │ │ ├── libogg-0.dll │ │ │ │ │ ├── libvorbis-0.dll │ │ │ │ │ ├── libvorbisfile-3.dll │ │ │ │ │ └── smpeg2.dll │ │ │ ├── native_midi │ │ │ │ ├── native_midi.vcxproj │ │ │ │ ├── native_midi.vcxproj.user │ │ │ │ ├── native_midi_VS2008.vcproj │ │ │ │ ├── native_midi_VS2010.vcxproj │ │ │ │ └── native_midi_VS2012.vcxproj │ │ │ ├── playmus │ │ │ │ ├── playmus.vcxproj │ │ │ │ ├── playmus_VS2008.vcproj │ │ │ │ ├── playmus_VS2010.vcxproj │ │ │ │ └── playmus_VS2012.vcxproj │ │ │ ├── playwave │ │ │ │ ├── playwave.vcxproj │ │ │ │ ├── playwave_VS2008.vcproj │ │ │ │ ├── playwave_VS2010.vcxproj │ │ │ │ └── playwave_VS2012.vcxproj │ │ │ ├── resource.h │ │ │ └── timidity │ │ │ │ ├── timidity.vcxproj │ │ │ │ ├── timidity.vcxproj.user │ │ │ │ ├── timidity_VS2008.vcproj │ │ │ │ ├── timidity_VS2010.vcxproj │ │ │ │ └── timidity_VS2012.vcxproj │ │ ├── Xcode-iOS │ │ │ └── SDL_mixer.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── Frameworks │ │ │ │ ├── FLAC.framework │ │ │ │ │ ├── FLAC │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ ├── Ogg.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Ogg │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ ├── Vorbis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ └── Vorbis │ │ │ │ ├── modplug.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── modplug │ │ │ │ │ └── modplug │ │ │ │ └── smpeg2.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ └── smpeg.h │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ │ │ └── smpeg.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.smpeg.txt │ │ │ │ │ │ └── smpeg2 │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── MPEGframe.h │ │ │ │ │ │ └── smpeg.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ └── smpeg2 │ │ │ │ │ └── smpeg2 │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL_mixer.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── package │ │ │ ├── pkg-support │ │ │ │ ├── SDL_mixer.info │ │ │ │ ├── codesign-frameworks.sh │ │ │ │ ├── mkpackage.sh │ │ │ │ └── resources │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── Welcome.txt │ │ │ ├── playmus │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info-playmus__Upgraded_.plist │ │ │ │ ├── SDLMain.h │ │ │ │ ├── SDLMain.m │ │ │ │ └── playmus.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── playwave │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info-playwave__Upgraded_.plist │ │ │ │ ├── SDLMain.h │ │ │ │ ├── SDLMain.m │ │ │ │ └── playwave.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── acinclude │ │ │ ├── libtool.m4 │ │ │ ├── ltdl.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── pkg.m4 │ │ │ ├── sdl2.m4 │ │ │ └── smpeg2.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── build-scripts │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── examples │ │ │ │ └── Makefile │ │ │ ├── libsdl2-mixer-dev.examples │ │ │ ├── libsdl2-mixer-dev.install │ │ │ ├── libsdl2-mixer.install │ │ │ ├── rules │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── dynamic_flac.c │ │ ├── dynamic_flac.h │ │ ├── dynamic_fluidsynth.c │ │ ├── dynamic_fluidsynth.h │ │ ├── dynamic_mod.c │ │ ├── dynamic_mod.h │ │ ├── dynamic_modplug.c │ │ ├── dynamic_modplug.h │ │ ├── dynamic_mp3.c │ │ ├── dynamic_mp3.h │ │ ├── dynamic_ogg.c │ │ ├── dynamic_ogg.h │ │ ├── effect_position.c │ │ ├── effect_stereoreverse.c │ │ ├── effects_internal.c │ │ ├── effects_internal.h │ │ ├── external │ │ │ ├── flac-1.2.1.patch │ │ │ ├── flac-1.2.1 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.FDL │ │ │ │ ├── COPYING.GPL │ │ │ │ ├── COPYING.LGPL │ │ │ │ ├── COPYING.Xiph │ │ │ │ ├── FLAC.dsw │ │ │ │ ├── FLAC.sln │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.lite │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── all.dsp │ │ │ │ ├── all_dynamic.dsp │ │ │ │ ├── all_static.dsp │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.rpath │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── README │ │ │ │ │ ├── c │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── decode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ │ ├── example_c_decode_file.dsp │ │ │ │ │ │ │ │ ├── example_c_decode_file.vcproj │ │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── encode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── example_c_encode_file.dsp │ │ │ │ │ │ │ ├── example_c_encode_file.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── decode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ │ ├── example_cpp_decode_file.dsp │ │ │ │ │ │ │ │ ├── example_cpp_decode_file.vcproj │ │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ └── encode │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── example_cpp_encode_file.dsp │ │ │ │ │ │ │ ├── example_cpp_encode_file.vcproj │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── examples.dsp │ │ │ │ ├── include │ │ │ │ │ ├── FLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── decoder.h │ │ │ │ │ │ ├── encoder.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ └── metadata.h │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── share │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── grabbag.h │ │ │ │ │ │ ├── grabbag │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── cuesheet.h │ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ │ ├── picture.h │ │ │ │ │ │ │ ├── replaygain.h │ │ │ │ │ │ │ └── seektable.h │ │ │ │ │ │ ├── replaygain_analysis.h │ │ │ │ │ │ ├── replaygain_synthesis.h │ │ │ │ │ │ └── utf8.h │ │ │ │ │ └── test_libs_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── file_utils_flac.h │ │ │ │ │ │ └── metadata_utils.h │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── xmms.m4 │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── flac.1 │ │ │ │ │ ├── flac.sgml │ │ │ │ │ ├── metaflac.1 │ │ │ │ │ └── metaflac.sgml │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── obj │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ └── release │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── Makefile.in │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── flac │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── Makefile.lite.iffscan │ │ │ │ │ │ ├── analyze.c │ │ │ │ │ │ ├── analyze.h │ │ │ │ │ │ ├── decode.c │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.c │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── flac.dsp │ │ │ │ │ │ ├── flac.vcproj │ │ │ │ │ │ ├── foreign_metadata.c │ │ │ │ │ │ ├── foreign_metadata.h │ │ │ │ │ │ ├── iffscan.c │ │ │ │ │ │ ├── iffscan.dsp │ │ │ │ │ │ ├── iffscan.vcproj │ │ │ │ │ │ ├── local_string_utils.c │ │ │ │ │ │ ├── local_string_utils.h │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── vorbiscomment.c │ │ │ │ │ │ └── vorbiscomment.h │ │ │ │ │ ├── libFLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── flac++.pc.in │ │ │ │ │ │ ├── libFLAC++.m4 │ │ │ │ │ │ ├── libFLAC++_dynamic.dsp │ │ │ │ │ │ ├── libFLAC++_dynamic.vcproj │ │ │ │ │ │ ├── libFLAC++_static.dsp │ │ │ │ │ │ ├── libFLAC++_static.vcproj │ │ │ │ │ │ ├── metadata.cpp │ │ │ │ │ │ ├── stream_decoder.cpp │ │ │ │ │ │ └── stream_encoder.cpp │ │ │ │ │ ├── libFLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── bitmath.c │ │ │ │ │ │ ├── bitreader.c │ │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── crc.c │ │ │ │ │ │ ├── fixed.c │ │ │ │ │ │ ├── flac.pc.in │ │ │ │ │ │ ├── float.c │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── bitreader_asm.nasm │ │ │ │ │ │ │ ├── cpu_asm.nasm │ │ │ │ │ │ │ ├── fixed_asm.nasm │ │ │ │ │ │ │ ├── lpc_asm.nasm │ │ │ │ │ │ │ ├── nasm.h │ │ │ │ │ │ │ └── stream_encoder_asm.nasm │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ │ │ │ │ ├── ogg_helper.h │ │ │ │ │ │ │ │ ├── ogg_mapping.h │ │ │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ │ └── protected │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ ├── libFLAC.m4 │ │ │ │ │ │ ├── libFLAC_dynamic.dsp │ │ │ │ │ │ ├── libFLAC_dynamic.vcproj │ │ │ │ │ │ ├── libFLAC_static.dsp │ │ │ │ │ │ ├── libFLAC_static.vcproj │ │ │ │ │ │ ├── lpc.c │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── metadata_iterators.c │ │ │ │ │ │ ├── metadata_object.c │ │ │ │ │ │ ├── ogg_decoder_aspect.c │ │ │ │ │ │ ├── ogg_encoder_aspect.c │ │ │ │ │ │ ├── ogg_helper.c │ │ │ │ │ │ ├── ogg_mapping.c │ │ │ │ │ │ ├── ppc │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── as │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ │ │ │ └── gas │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ │ └── window.c │ │ │ │ │ ├── metaflac │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── metaflac.dsp │ │ │ │ │ │ ├── metaflac.vcproj │ │ │ │ │ │ ├── operations.c │ │ │ │ │ │ ├── operations.h │ │ │ │ │ │ ├── operations_shorthand.h │ │ │ │ │ │ ├── operations_shorthand_cuesheet.c │ │ │ │ │ │ ├── operations_shorthand_picture.c │ │ │ │ │ │ ├── operations_shorthand_seektable.c │ │ │ │ │ │ ├── operations_shorthand_streaminfo.c │ │ │ │ │ │ ├── operations_shorthand_vorbiscomment.c │ │ │ │ │ │ ├── options.c │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── usage.c │ │ │ │ │ │ ├── usage.h │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── monkeys_audio_utilities │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── flac_mac │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── flac_mac.dsp │ │ │ │ │ │ │ ├── flac_mac.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── flac_ren │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── flac_ren.dsp │ │ │ │ │ │ │ ├── flac_ren.vcproj │ │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── plugin_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ ├── defs.h │ │ │ │ │ │ ├── dither.c │ │ │ │ │ │ ├── dither.h │ │ │ │ │ │ ├── plugin_common_static.dsp │ │ │ │ │ │ ├── plugin_common_static.vcproj │ │ │ │ │ │ ├── replaygain.c │ │ │ │ │ │ ├── replaygain.h │ │ │ │ │ │ ├── tags.c │ │ │ │ │ │ └── tags.h │ │ │ │ │ ├── plugin_winamp2 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── configure.c │ │ │ │ │ │ ├── configure.h │ │ │ │ │ │ ├── in_flac.c │ │ │ │ │ │ ├── in_flac.dsp │ │ │ │ │ │ ├── in_flac.vcproj │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── winamp2 │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── in2.h │ │ │ │ │ │ │ │ └── out.h │ │ │ │ │ │ ├── infobox.c │ │ │ │ │ │ ├── infobox.h │ │ │ │ │ │ ├── playback.c │ │ │ │ │ │ ├── playback.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ ├── tagz.cpp │ │ │ │ │ │ └── tagz.h │ │ │ │ │ ├── plugin_xmms │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ ├── configure.c │ │ │ │ │ │ ├── configure.h │ │ │ │ │ │ ├── fileinfo.c │ │ │ │ │ │ ├── http.c │ │ │ │ │ │ ├── http.h │ │ │ │ │ │ ├── locale_hack.h │ │ │ │ │ │ ├── plugin.c │ │ │ │ │ │ ├── plugin.h │ │ │ │ │ │ ├── tag.c │ │ │ │ │ │ └── tag.h │ │ │ │ │ ├── share │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── getopt │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── getopt.c │ │ │ │ │ │ │ ├── getopt1.c │ │ │ │ │ │ │ ├── getopt_static.dsp │ │ │ │ │ │ │ └── getopt_static.vcproj │ │ │ │ │ │ ├── grabbag │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── cuesheet.c │ │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ │ ├── grabbag_static.dsp │ │ │ │ │ │ │ ├── grabbag_static.vcproj │ │ │ │ │ │ │ ├── picture.c │ │ │ │ │ │ │ ├── replaygain.c │ │ │ │ │ │ │ └── seektable.c │ │ │ │ │ │ ├── replaygain_analysis │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── replaygain_analysis.c │ │ │ │ │ │ │ ├── replaygain_analysis_static.dsp │ │ │ │ │ │ │ └── replaygain_analysis_static.vcproj │ │ │ │ │ │ ├── replaygain_synthesis │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── private │ │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ │ └── fast_float_math_hack.h │ │ │ │ │ │ │ ├── replaygain_synthesis.c │ │ │ │ │ │ │ ├── replaygain_synthesis_static.dsp │ │ │ │ │ │ │ └── replaygain_synthesis_static.vcproj │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── charmaps.h │ │ │ │ │ │ │ ├── charset.c │ │ │ │ │ │ │ ├── charset.h │ │ │ │ │ │ │ ├── charset_test.c │ │ │ │ │ │ │ ├── charsetmap.h │ │ │ │ │ │ │ ├── iconvert.c │ │ │ │ │ │ │ ├── iconvert.h │ │ │ │ │ │ │ ├── makemap.c │ │ │ │ │ │ │ ├── utf8.c │ │ │ │ │ │ │ ├── utf8_static.dsp │ │ │ │ │ │ │ └── utf8_static.vcproj │ │ │ │ │ ├── test_grabbag │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── cuesheet │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── test_cuesheet.dsp │ │ │ │ │ │ │ └── test_cuesheet.vcproj │ │ │ │ │ │ └── picture │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── test_picture.dsp │ │ │ │ │ │ │ └── test_picture.vcproj │ │ │ │ │ ├── test_libFLAC++ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── decoders.cpp │ │ │ │ │ │ ├── decoders.h │ │ │ │ │ │ ├── encoders.cpp │ │ │ │ │ │ ├── encoders.h │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── metadata.cpp │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── metadata_manip.cpp │ │ │ │ │ │ ├── metadata_object.cpp │ │ │ │ │ │ ├── test_libFLAC++.dsp │ │ │ │ │ │ └── test_libFLAC++.vcproj │ │ │ │ │ ├── test_libFLAC │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── decoders.c │ │ │ │ │ │ ├── decoders.h │ │ │ │ │ │ ├── encoders.c │ │ │ │ │ │ ├── encoders.h │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── metadata.c │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── metadata_manip.c │ │ │ │ │ │ ├── metadata_object.c │ │ │ │ │ │ ├── test_libFLAC.dsp │ │ │ │ │ │ └── test_libFLAC.vcproj │ │ │ │ │ ├── test_libs_common │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── file_utils_flac.c │ │ │ │ │ │ ├── metadata_utils.c │ │ │ │ │ │ ├── test_libs_common_static.dsp │ │ │ │ │ │ └── test_libs_common_static.vcproj │ │ │ │ │ ├── test_seeking │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── test_seeking.dsp │ │ │ │ │ │ └── test_seeking.vcproj │ │ │ │ │ └── test_streams │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── test_streams.dsp │ │ │ │ │ │ └── test_streams.vcproj │ │ │ │ ├── strip_non_asm_libtool_args.sh │ │ │ │ └── test │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── cuesheet.ok │ │ │ │ │ ├── cuesheets │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bad.000.CATALOG_multiple.cue │ │ │ │ │ ├── bad.001.CATALOG_missing_number.cue │ │ │ │ │ ├── bad.002.CATALOG_number_too_long.cue │ │ │ │ │ ├── bad.003.CATALOG_not_13_digits.cue │ │ │ │ │ ├── bad.030.FLAGS_multiple.cue │ │ │ │ │ ├── bad.031.FLAGS_wrong_place_1.cue │ │ │ │ │ ├── bad.032.FLAGS_wrong_place_2.cue │ │ │ │ │ ├── bad.060.INDEX_wrong_place.cue │ │ │ │ │ ├── bad.061.INDEX_missing_number.cue │ │ │ │ │ ├── bad.062.INDEX_invalid_number_1.cue │ │ │ │ │ ├── bad.063.first_INDEX_not_0_or_1.cue │ │ │ │ │ ├── bad.064.INDEX_num_non_sequential.cue │ │ │ │ │ ├── bad.065.INDEX_num_out_of_range.cue │ │ │ │ │ ├── bad.066.INDEX_missing_offset.cue │ │ │ │ │ ├── bad.067.INDEX_illegal_offset.cue │ │ │ │ │ ├── bad.068.INDEX_cdda_illegal_offset.cue │ │ │ │ │ ├── bad.069.nonzero_first_INDEX.cue │ │ │ │ │ ├── bad.070.INDEX_offset_not_ascending_1.cue │ │ │ │ │ ├── bad.071.INDEX_offset_not_ascending_2.cue │ │ │ │ │ ├── bad.110.ISRC_multiple.cue │ │ │ │ │ ├── bad.111.ISRC_wrong_place_1.cue │ │ │ │ │ ├── bad.112.ISRC_wrong_place_2.cue │ │ │ │ │ ├── bad.113.ISRC_missing_number.cue │ │ │ │ │ ├── bad.114.ISRC_invalid_number.cue │ │ │ │ │ ├── bad.130.TRACK_missing_INDEX_01_1.cue │ │ │ │ │ ├── bad.131.TRACK_missing_INDEX_01_2.cue │ │ │ │ │ ├── bad.132.TRACK_missing_INDEX_01_3.cue │ │ │ │ │ ├── bad.133.TRACK_missing_INDEX_01_4.cue │ │ │ │ │ ├── bad.134.TRACK_missing_number.cue │ │ │ │ │ ├── bad.135.TRACK_invalid_number_1.cue │ │ │ │ │ ├── bad.136.TRACK_invalid_number_2.cue │ │ │ │ │ ├── bad.137.TRACK_cdda_out_of_range.cue │ │ │ │ │ ├── bad.138.TRACK_num_non_sequential.cue │ │ │ │ │ ├── bad.139.TRACK_missing_type.cue │ │ │ │ │ ├── bad.140.no_TRACKs.cue │ │ │ │ │ ├── bad.200.FLAC_leadin_missing_offset.cue │ │ │ │ │ ├── bad.201.FLAC_leadin_illegal_offset.cue │ │ │ │ │ ├── bad.202.FLAC_leadin_cdda_illegal_offset.cue │ │ │ │ │ ├── bad.230.FLAC_leadout_multiple.cue │ │ │ │ │ ├── bad.231.FLAC_leadout_missing_track.cue │ │ │ │ │ ├── bad.232.FLAC_leadout_illegal_track.cue │ │ │ │ │ ├── bad.233.FLAC_leadout_missing_offset.cue │ │ │ │ │ ├── bad.234.FLAC_leadout_illegal_offset.cue │ │ │ │ │ ├── bad.235.FLAC_leadout_offset_not_211680000.cue │ │ │ │ │ ├── good.000.cue │ │ │ │ │ ├── good.001.cue │ │ │ │ │ ├── good.002.dos_format.cue │ │ │ │ │ ├── good.003.missing_final_newline.cue │ │ │ │ │ └── good.004.dos_format.missing_final_newline.cue │ │ │ │ │ ├── flac-to-flac-metadata-test-files │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── case00a-expect.meta │ │ │ │ │ ├── case01a-expect.meta │ │ │ │ │ ├── case01b-expect.meta │ │ │ │ │ ├── case01c-expect.meta │ │ │ │ │ ├── case01d-expect.meta │ │ │ │ │ ├── case01e-expect.meta │ │ │ │ │ ├── case02a-expect.meta │ │ │ │ │ ├── case02b-expect.meta │ │ │ │ │ ├── case02c-expect.meta │ │ │ │ │ ├── case03a-expect.meta │ │ │ │ │ ├── case03b-expect.meta │ │ │ │ │ ├── case03c-expect.meta │ │ │ │ │ ├── case04a-expect.meta │ │ │ │ │ ├── case04b-expect.meta │ │ │ │ │ ├── case04c-expect.meta │ │ │ │ │ ├── case04d-expect.meta │ │ │ │ │ ├── case04e-expect.meta │ │ │ │ │ ├── input-SCPAP.flac │ │ │ │ │ ├── input-SCVA.flac │ │ │ │ │ ├── input-SCVAUP.flac │ │ │ │ │ ├── input-SCVPAP.flac │ │ │ │ │ ├── input-SVAUP.flac │ │ │ │ │ ├── input-VA.flac │ │ │ │ │ └── input0.cue │ │ │ │ │ ├── metaflac-test-files │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── case00-expect.meta │ │ │ │ │ ├── case01-expect.meta │ │ │ │ │ ├── case02-expect.meta │ │ │ │ │ ├── case03-expect.meta │ │ │ │ │ ├── case04-expect.meta │ │ │ │ │ ├── case05-expect.meta │ │ │ │ │ ├── case06-expect.meta │ │ │ │ │ ├── case07-expect.meta │ │ │ │ │ ├── case08-expect.meta │ │ │ │ │ ├── case09-expect.meta │ │ │ │ │ ├── case10-expect.meta │ │ │ │ │ ├── case11-expect.meta │ │ │ │ │ ├── case12-expect.meta │ │ │ │ │ ├── case13-expect.meta │ │ │ │ │ ├── case14-expect.meta │ │ │ │ │ ├── case15-expect.meta │ │ │ │ │ ├── case16-expect.meta │ │ │ │ │ ├── case17-expect.meta │ │ │ │ │ ├── case18-expect.meta │ │ │ │ │ ├── case19-expect.meta │ │ │ │ │ ├── case20-expect.meta │ │ │ │ │ ├── case21-expect.meta │ │ │ │ │ ├── case22-expect.meta │ │ │ │ │ ├── case23-expect.meta │ │ │ │ │ ├── case24-expect.meta │ │ │ │ │ ├── case25-expect.meta │ │ │ │ │ ├── case26-expect.meta │ │ │ │ │ ├── case27-expect.meta │ │ │ │ │ ├── case28-expect.meta │ │ │ │ │ ├── case29-expect.meta │ │ │ │ │ ├── case30-expect.meta │ │ │ │ │ ├── case31-expect.meta │ │ │ │ │ ├── case32-expect.meta │ │ │ │ │ ├── case33-expect.meta │ │ │ │ │ ├── case34-expect.meta │ │ │ │ │ ├── case35-expect.meta │ │ │ │ │ ├── case36-expect.meta │ │ │ │ │ ├── case37-expect.meta │ │ │ │ │ ├── case38-expect.meta │ │ │ │ │ ├── case39-expect.meta │ │ │ │ │ ├── case40-expect.meta │ │ │ │ │ ├── case41-expect.meta │ │ │ │ │ ├── case42-expect.meta │ │ │ │ │ ├── case43-expect.meta │ │ │ │ │ ├── case44-expect.meta │ │ │ │ │ ├── case45-expect.meta │ │ │ │ │ ├── case46-expect.meta │ │ │ │ │ ├── case47-expect.meta │ │ │ │ │ ├── case48-expect.meta │ │ │ │ │ ├── case49-expect.meta │ │ │ │ │ ├── case50-expect.meta │ │ │ │ │ ├── case51-expect.meta │ │ │ │ │ ├── case52-expect.meta │ │ │ │ │ ├── case53-expect.meta │ │ │ │ │ ├── case54-expect.meta │ │ │ │ │ ├── case55-expect.meta │ │ │ │ │ ├── case56-expect.meta │ │ │ │ │ ├── case57-expect.meta │ │ │ │ │ ├── case58-expect.meta │ │ │ │ │ ├── case59-expect.meta │ │ │ │ │ ├── case60-expect.meta │ │ │ │ │ ├── case61-expect.meta │ │ │ │ │ └── case62-expect.meta │ │ │ │ │ ├── metaflac.flac.in │ │ │ │ │ ├── metaflac.flac.ok │ │ │ │ │ ├── picture.ok │ │ │ │ │ ├── pictures │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 0.jpg │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ │ ├── test_bins.sh │ │ │ │ │ ├── test_flac.sh │ │ │ │ │ ├── test_grabbag.sh │ │ │ │ │ ├── test_libFLAC++.sh │ │ │ │ │ ├── test_libFLAC.sh │ │ │ │ │ ├── test_metaflac.sh │ │ │ │ │ ├── test_seeking.sh │ │ │ │ │ └── test_streams.sh │ │ │ ├── libmikmod-3.1.12 │ │ │ │ ├── AUTHORS │ │ │ │ ├── Android.mk │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── acconfig.h │ │ │ │ ├── acinclude │ │ │ │ │ ├── esd.m4 │ │ │ │ │ └── libtool.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── dlapi │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dl_hpux.c │ │ │ │ │ └── dlfcn.h │ │ │ │ ├── docs │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── libmikmod-config.1.in │ │ │ │ │ ├── mikmod.html │ │ │ │ │ ├── mikmod.info │ │ │ │ │ ├── mikmod.texi │ │ │ │ │ └── texinfo.tex │ │ │ │ ├── drivers │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── drv_AF.c │ │ │ │ │ ├── drv_aix.c │ │ │ │ │ ├── drv_alsa.c │ │ │ │ │ ├── drv_dart.c │ │ │ │ │ ├── drv_ds.c │ │ │ │ │ ├── drv_esd.c │ │ │ │ │ ├── drv_hp.c │ │ │ │ │ ├── drv_mac.c │ │ │ │ │ ├── drv_nos.c │ │ │ │ │ ├── drv_os2.c │ │ │ │ │ ├── drv_oss.c │ │ │ │ │ ├── drv_pipe.c │ │ │ │ │ ├── drv_raw.c │ │ │ │ │ ├── drv_sam9407.c │ │ │ │ │ ├── drv_sgi.c │ │ │ │ │ ├── drv_stdout.c │ │ │ │ │ ├── drv_sun.c │ │ │ │ │ ├── drv_ultra.c │ │ │ │ │ ├── drv_wav.c │ │ │ │ │ └── drv_win.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mikmod.h │ │ │ │ │ ├── mikmod.h.in │ │ │ │ │ ├── mikmod_build.h │ │ │ │ │ ├── mikmod_build.h.in │ │ │ │ │ └── mikmod_internals.h │ │ │ │ ├── install-sh │ │ │ │ ├── libmikmod-config.in │ │ │ │ ├── libmikmod.m4 │ │ │ │ ├── libmikmod │ │ │ │ │ └── Makefile.in │ │ │ │ ├── loaders │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── load_669.c │ │ │ │ │ ├── load_amf.c │ │ │ │ │ ├── load_dsm.c │ │ │ │ │ ├── load_far.c │ │ │ │ │ ├── load_gdm.c │ │ │ │ │ ├── load_imf.c │ │ │ │ │ ├── load_it.c │ │ │ │ │ ├── load_m15.c │ │ │ │ │ ├── load_med.c │ │ │ │ │ ├── load_mod.c │ │ │ │ │ ├── load_mtm.c │ │ │ │ │ ├── load_okt.c │ │ │ │ │ ├── load_s3m.c │ │ │ │ │ ├── load_stm.c │ │ │ │ │ ├── load_stx.c │ │ │ │ │ ├── load_ult.c │ │ │ │ │ ├── load_uni.c │ │ │ │ │ └── load_xm.c │ │ │ │ ├── ltmain.sh │ │ │ │ ├── macintosh │ │ │ │ │ ├── BuildLibmikmod │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cwmikmodheaders.h │ │ │ │ │ ├── libmikmod.exp │ │ │ │ │ ├── libmikmod.make │ │ │ │ │ ├── libmikmod.mcp │ │ │ │ │ ├── libmikmodversion.r │ │ │ │ │ ├── mikmod.h │ │ │ │ │ ├── mikmod_build.h │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ └── strdup.c │ │ │ │ ├── macosx │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── Cocoa Framework-Info.plist │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── config.h │ │ │ │ │ ├── libmikmod.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── mikmod.h │ │ │ │ │ └── mikmod_build.h │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── mmio │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mmalloc.c │ │ │ │ │ ├── mmerror.c │ │ │ │ │ └── mmio.c │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ ├── Makefile.tmpl │ │ │ │ │ ├── README │ │ │ │ │ ├── configure.cmd │ │ │ │ │ └── mikmod2.def.in │ │ │ │ ├── playercode │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── mdreg.c │ │ │ │ │ ├── mdriver.c │ │ │ │ │ ├── mdulaw.c │ │ │ │ │ ├── mloader.c │ │ │ │ │ ├── mlreg.c │ │ │ │ │ ├── mlutil.c │ │ │ │ │ ├── mplayer.c │ │ │ │ │ ├── munitrk.c │ │ │ │ │ ├── mwav.c │ │ │ │ │ ├── npertab.c │ │ │ │ │ ├── sloader.c │ │ │ │ │ ├── virtch.c │ │ │ │ │ ├── virtch2.c │ │ │ │ │ └── virtch_common.c │ │ │ │ ├── posix │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── memcmp.c │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strdup.c │ │ │ │ │ └── strstr.c │ │ │ │ ├── stamp-h.in │ │ │ │ └── win32 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.dynamic │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.lcc │ │ │ │ │ ├── Makefile.static │ │ │ │ │ ├── README │ │ │ │ │ ├── mikmod.def │ │ │ │ │ └── mikmod_build.h │ │ │ ├── libmikmod-patches │ │ │ │ ├── libmikmod-3.1.12-64bit-fix.diff │ │ │ │ ├── libmikmod-3.1.12-android.diff │ │ │ │ ├── libmikmod-3.1.12-exitcrash-fix.diff │ │ │ │ ├── libmikmod-3.1.12-loopingvolume-fix.diff │ │ │ │ ├── libmikmod-3.1.12-md_sngchn-fix.diff │ │ │ │ ├── libmikmod-3.1.12-mingw64.diff │ │ │ │ └── libmikmod-CVE-2009-0179.patch │ │ │ ├── libmodplug-0.8.8.4 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── libmodplug.pc.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ └── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── fastmix.cpp │ │ │ │ │ ├── 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 │ │ │ │ │ └── tables.h │ │ │ ├── libogg-1.3.1.patch │ │ │ ├── libogg-1.3.1 │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── fish_xiph_org.png │ │ │ │ │ ├── framing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── libogg │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bitpacking.html │ │ │ │ │ │ ├── datastructures.html │ │ │ │ │ │ ├── decoding.html │ │ │ │ │ │ ├── encoding.html │ │ │ │ │ │ ├── general.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ogg_iovec_t.html │ │ │ │ │ │ ├── ogg_packet.html │ │ │ │ │ │ ├── ogg_packet_clear.html │ │ │ │ │ │ ├── ogg_page.html │ │ │ │ │ │ ├── ogg_page_bos.html │ │ │ │ │ │ ├── ogg_page_checksum_set.html │ │ │ │ │ │ ├── ogg_page_continued.html │ │ │ │ │ │ ├── ogg_page_eos.html │ │ │ │ │ │ ├── ogg_page_granulepos.html │ │ │ │ │ │ ├── ogg_page_packets.html │ │ │ │ │ │ ├── ogg_page_pageno.html │ │ │ │ │ │ ├── ogg_page_serialno.html │ │ │ │ │ │ ├── ogg_page_version.html │ │ │ │ │ │ ├── ogg_stream_check.html │ │ │ │ │ │ ├── ogg_stream_clear.html │ │ │ │ │ │ ├── ogg_stream_destroy.html │ │ │ │ │ │ ├── ogg_stream_eos.html │ │ │ │ │ │ ├── ogg_stream_flush.html │ │ │ │ │ │ ├── ogg_stream_flush_fill.html │ │ │ │ │ │ ├── ogg_stream_init.html │ │ │ │ │ │ ├── ogg_stream_iovecin.html │ │ │ │ │ │ ├── ogg_stream_packetin.html │ │ │ │ │ │ ├── ogg_stream_packetout.html │ │ │ │ │ │ ├── ogg_stream_packetpeek.html │ │ │ │ │ │ ├── ogg_stream_pagein.html │ │ │ │ │ │ ├── ogg_stream_pageout.html │ │ │ │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ │ │ │ ├── ogg_stream_reset.html │ │ │ │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ │ │ │ ├── ogg_stream_state.html │ │ │ │ │ │ ├── ogg_sync_buffer.html │ │ │ │ │ │ ├── ogg_sync_check.html │ │ │ │ │ │ ├── ogg_sync_clear.html │ │ │ │ │ │ ├── ogg_sync_destroy.html │ │ │ │ │ │ ├── ogg_sync_init.html │ │ │ │ │ │ ├── ogg_sync_pageout.html │ │ │ │ │ │ ├── ogg_sync_pageseek.html │ │ │ │ │ │ ├── ogg_sync_reset.html │ │ │ │ │ │ ├── ogg_sync_state.html │ │ │ │ │ │ ├── ogg_sync_wrote.html │ │ │ │ │ │ ├── oggpack_adv.html │ │ │ │ │ │ ├── oggpack_adv1.html │ │ │ │ │ │ ├── oggpack_bits.html │ │ │ │ │ │ ├── oggpack_buffer.html │ │ │ │ │ │ ├── oggpack_bytes.html │ │ │ │ │ │ ├── oggpack_get_buffer.html │ │ │ │ │ │ ├── oggpack_look.html │ │ │ │ │ │ ├── oggpack_look1.html │ │ │ │ │ │ ├── oggpack_read.html │ │ │ │ │ │ ├── oggpack_read1.html │ │ │ │ │ │ ├── oggpack_readinit.html │ │ │ │ │ │ ├── oggpack_reset.html │ │ │ │ │ │ ├── oggpack_write.html │ │ │ │ │ │ ├── oggpack_writealign.html │ │ │ │ │ │ ├── oggpack_writecheck.html │ │ │ │ │ │ ├── oggpack_writeclear.html │ │ │ │ │ │ ├── oggpack_writecopy.html │ │ │ │ │ │ ├── oggpack_writeinit.html │ │ │ │ │ │ ├── oggpack_writetrunc.html │ │ │ │ │ │ ├── overview.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── multiplex1.png │ │ │ │ │ ├── ogg-multiplex.html │ │ │ │ │ ├── oggstream.html │ │ │ │ │ ├── packets.png │ │ │ │ │ ├── pages.png │ │ │ │ │ ├── rfc3533.txt │ │ │ │ │ ├── rfc5334.txt │ │ │ │ │ ├── skeleton.html │ │ │ │ │ ├── stream.png │ │ │ │ │ ├── vorbisword2.png │ │ │ │ │ ├── white-ogg.png │ │ │ │ │ └── white-xifish.png │ │ │ │ ├── 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 │ │ │ │ ├── libogg.spec.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── 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 │ │ │ │ └── win32 │ │ │ │ │ ├── VS2003 │ │ │ │ │ ├── libogg │ │ │ │ │ │ └── libogg.vcproj │ │ │ │ │ └── ogg.sln │ │ │ │ │ ├── VS2005 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcproj │ │ │ │ │ ├── VS2008 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcproj │ │ │ │ │ ├── VS2010 │ │ │ │ │ ├── libogg_dynamic.sln │ │ │ │ │ ├── libogg_dynamic.vcxproj │ │ │ │ │ ├── libogg_static.sln │ │ │ │ │ └── libogg_static.vcxproj │ │ │ │ │ ├── VS6 │ │ │ │ │ ├── build_ogg_dynamic.bat │ │ │ │ │ ├── build_ogg_dynamic_debug.bat │ │ │ │ │ ├── build_ogg_static.bat │ │ │ │ │ ├── build_ogg_static_debug.bat │ │ │ │ │ ├── ogg.dsw │ │ │ │ │ ├── ogg_dynamic.dsp │ │ │ │ │ └── ogg_static.dsp │ │ │ │ │ └── ogg.def │ │ │ ├── libvorbis-1.3.3.patch │ │ │ ├── libvorbis-1.3.3 │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── 01-introduction.tex │ │ │ │ │ ├── 02-bitpacking.tex │ │ │ │ │ ├── 03-codebook.tex │ │ │ │ │ ├── 04-codec.tex │ │ │ │ │ ├── 05-comment.tex │ │ │ │ │ ├── 06-floor0.tex │ │ │ │ │ ├── 07-floor1.tex │ │ │ │ │ ├── 08-residue.tex │ │ │ │ │ ├── 09-helper.tex │ │ │ │ │ ├── 10-tables.tex │ │ │ │ │ ├── Doxyfile.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Vorbis_I_spec.cfg │ │ │ │ │ ├── Vorbis_I_spec.css │ │ │ │ │ ├── Vorbis_I_spec.html │ │ │ │ │ ├── Vorbis_I_spec.pdf │ │ │ │ │ ├── Vorbis_I_spec.tex │ │ │ │ │ ├── a1-encapsulation-ogg.tex │ │ │ │ │ ├── a2-encapsulation-rtp.tex │ │ │ │ │ ├── components.png │ │ │ │ │ ├── eightphase.png │ │ │ │ │ ├── evenlsp.png │ │ │ │ │ ├── fish_xiph_org.png │ │ │ │ │ ├── floor1-1.png │ │ │ │ │ ├── floor1-2.png │ │ │ │ │ ├── floor1-3.png │ │ │ │ │ ├── floor1-4.png │ │ │ │ │ ├── floor1_inverse_dB_table.html │ │ │ │ │ ├── floorval.png │ │ │ │ │ ├── footer.tex │ │ │ │ │ ├── fourphase.png │ │ │ │ │ ├── framing.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── hufftree-under.png │ │ │ │ │ ├── hufftree.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── libvorbis │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── overview.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ ├── return.html │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── vorbis_analysis.html │ │ │ │ │ │ ├── vorbis_analysis_blockout.html │ │ │ │ │ │ ├── vorbis_analysis_buffer.html │ │ │ │ │ │ ├── vorbis_analysis_headerout.html │ │ │ │ │ │ ├── vorbis_analysis_init.html │ │ │ │ │ │ ├── vorbis_analysis_wrote.html │ │ │ │ │ │ ├── vorbis_bitrate_addblock.html │ │ │ │ │ │ ├── vorbis_bitrate_flushpacket.html │ │ │ │ │ │ ├── vorbis_block.html │ │ │ │ │ │ ├── vorbis_block_clear.html │ │ │ │ │ │ ├── vorbis_block_init.html │ │ │ │ │ │ ├── vorbis_comment.html │ │ │ │ │ │ ├── vorbis_comment_add.html │ │ │ │ │ │ ├── vorbis_comment_add_tag.html │ │ │ │ │ │ ├── vorbis_comment_clear.html │ │ │ │ │ │ ├── vorbis_comment_init.html │ │ │ │ │ │ ├── vorbis_comment_query.html │ │ │ │ │ │ ├── vorbis_comment_query_count.html │ │ │ │ │ │ ├── vorbis_commentheader_out.html │ │ │ │ │ │ ├── vorbis_dsp_clear.html │ │ │ │ │ │ ├── vorbis_dsp_state.html │ │ │ │ │ │ ├── vorbis_granule_time.html │ │ │ │ │ │ ├── vorbis_info.html │ │ │ │ │ │ ├── vorbis_info_blocksize.html │ │ │ │ │ │ ├── vorbis_info_clear.html │ │ │ │ │ │ ├── vorbis_info_init.html │ │ │ │ │ │ ├── vorbis_packet_blocksize.html │ │ │ │ │ │ ├── vorbis_synthesis.html │ │ │ │ │ │ ├── vorbis_synthesis_blockin.html │ │ │ │ │ │ ├── vorbis_synthesis_halfrate.html │ │ │ │ │ │ ├── vorbis_synthesis_halfrate_p.html │ │ │ │ │ │ ├── vorbis_synthesis_headerin.html │ │ │ │ │ │ ├── vorbis_synthesis_idheader.html │ │ │ │ │ │ ├── vorbis_synthesis_init.html │ │ │ │ │ │ ├── vorbis_synthesis_lapout.html │ │ │ │ │ │ ├── vorbis_synthesis_pcmout.html │ │ │ │ │ │ ├── vorbis_synthesis_read.html │ │ │ │ │ │ ├── vorbis_synthesis_restart.html │ │ │ │ │ │ ├── vorbis_synthesis_trackonly.html │ │ │ │ │ │ └── vorbis_version_string.html │ │ │ │ │ ├── lspmap.png │ │ │ │ │ ├── oddlsp.png │ │ │ │ │ ├── oggstream.html │ │ │ │ │ ├── programming.html │ │ │ │ │ ├── residue-pack.png │ │ │ │ │ ├── residue2.png │ │ │ │ │ ├── rfc5215.txt │ │ │ │ │ ├── rfc5215.xml │ │ │ │ │ ├── squarepolar.png │ │ │ │ │ ├── stereo.html │ │ │ │ │ ├── stream.png │ │ │ │ │ ├── v-comment.html │ │ │ │ │ ├── vorbis-clip.txt │ │ │ │ │ ├── vorbis-errors.txt │ │ │ │ │ ├── vorbis-fidelity.html │ │ │ │ │ ├── vorbis.html │ │ │ │ │ ├── vorbisenc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── changes.html │ │ │ │ │ │ ├── examples.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ovectl_ratemanage2_arg.html │ │ │ │ │ │ ├── ovectl_ratemanage_arg.html │ │ │ │ │ │ ├── overview.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── vorbis_encode_ctl.html │ │ │ │ │ │ ├── vorbis_encode_init.html │ │ │ │ │ │ ├── vorbis_encode_init_vbr.html │ │ │ │ │ │ ├── vorbis_encode_setup_init.html │ │ │ │ │ │ ├── vorbis_encode_setup_managed.html │ │ │ │ │ │ └── vorbis_encode_setup_vbr.html │ │ │ │ │ ├── vorbisfile │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── OggVorbis_File.html │ │ │ │ │ │ ├── callbacks.html │ │ │ │ │ │ ├── chaining_example_c.html │ │ │ │ │ │ ├── chainingexample.html │ │ │ │ │ │ ├── crosslap.html │ │ │ │ │ │ ├── datastructures.html │ │ │ │ │ │ ├── decoding.html │ │ │ │ │ │ ├── example.html │ │ │ │ │ │ ├── exampleindex.html │ │ │ │ │ │ ├── fileinfo.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── initialization.html │ │ │ │ │ │ ├── ov_bitrate.html │ │ │ │ │ │ ├── ov_bitrate_instant.html │ │ │ │ │ │ ├── ov_callbacks.html │ │ │ │ │ │ ├── ov_clear.html │ │ │ │ │ │ ├── ov_comment.html │ │ │ │ │ │ ├── ov_crosslap.html │ │ │ │ │ │ ├── ov_fopen.html │ │ │ │ │ │ ├── ov_info.html │ │ │ │ │ │ ├── ov_open.html │ │ │ │ │ │ ├── ov_open_callbacks.html │ │ │ │ │ │ ├── ov_pcm_seek.html │ │ │ │ │ │ ├── ov_pcm_seek_lap.html │ │ │ │ │ │ ├── ov_pcm_seek_page.html │ │ │ │ │ │ ├── ov_pcm_seek_page_lap.html │ │ │ │ │ │ ├── ov_pcm_tell.html │ │ │ │ │ │ ├── ov_pcm_total.html │ │ │ │ │ │ ├── ov_raw_seek.html │ │ │ │ │ │ ├── ov_raw_seek_lap.html │ │ │ │ │ │ ├── ov_raw_tell.html │ │ │ │ │ │ ├── ov_raw_total.html │ │ │ │ │ │ ├── ov_read.html │ │ │ │ │ │ ├── ov_read_filter.html │ │ │ │ │ │ ├── ov_read_float.html │ │ │ │ │ │ ├── ov_seekable.html │ │ │ │ │ │ ├── ov_serialnumber.html │ │ │ │ │ │ ├── ov_streams.html │ │ │ │ │ │ ├── ov_test.html │ │ │ │ │ │ ├── ov_test_callbacks.html │ │ │ │ │ │ ├── ov_test_open.html │ │ │ │ │ │ ├── ov_time_seek.html │ │ │ │ │ │ ├── ov_time_seek_lap.html │ │ │ │ │ │ ├── ov_time_seek_page.html │ │ │ │ │ │ ├── ov_time_seek_page_lap.html │ │ │ │ │ │ ├── ov_time_tell.html │ │ │ │ │ │ ├── ov_time_total.html │ │ │ │ │ │ ├── overview.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ ├── seekexample.html │ │ │ │ │ │ ├── seeking.html │ │ │ │ │ │ ├── seeking_example_c.html │ │ │ │ │ │ ├── seeking_test_c.html │ │ │ │ │ │ ├── seekingexample.html │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── threads.html │ │ │ │ │ │ └── vorbisfile_example_c.html │ │ │ │ │ ├── vorbisword2.png │ │ │ │ │ ├── wait.png │ │ │ │ │ ├── white-xifish.png │ │ │ │ │ ├── window1.png │ │ │ │ │ ├── window2.png │ │ │ │ │ └── xifish.pdf │ │ │ │ ├── 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 │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── analysis.c │ │ │ │ │ ├── backends.h │ │ │ │ │ ├── barkmel.c │ │ │ │ │ ├── bitrate.c │ │ │ │ │ ├── bitrate.h │ │ │ │ │ ├── block.c │ │ │ │ │ ├── books │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── coupled │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ │ └── uncoupled │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ │ ├── codebook.c │ │ │ │ │ ├── codebook.h │ │ │ │ │ ├── codec_internal.h │ │ │ │ │ ├── envelope.c │ │ │ │ │ ├── envelope.h │ │ │ │ │ ├── floor0.c │ │ │ │ │ ├── floor1.c │ │ │ │ │ ├── highlevel.h │ │ │ │ │ ├── info.c │ │ │ │ │ ├── lookup.c │ │ │ │ │ ├── lookup.h │ │ │ │ │ ├── lookup_data.h │ │ │ │ │ ├── lookups.pl │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── lsp.c │ │ │ │ │ ├── lsp.h │ │ │ │ │ ├── mapping0.c │ │ │ │ │ ├── masking.h │ │ │ │ │ ├── mdct.c │ │ │ │ │ ├── mdct.h │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── modes │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── floor_all.h │ │ │ │ │ │ ├── psych_11.h │ │ │ │ │ │ ├── psych_16.h │ │ │ │ │ │ ├── psych_44.h │ │ │ │ │ │ ├── psych_8.h │ │ │ │ │ │ ├── residue_16.h │ │ │ │ │ │ ├── residue_44.h │ │ │ │ │ │ ├── residue_44p51.h │ │ │ │ │ │ ├── residue_44u.h │ │ │ │ │ │ ├── residue_8.h │ │ │ │ │ │ ├── setup_11.h │ │ │ │ │ │ ├── setup_16.h │ │ │ │ │ │ ├── setup_22.h │ │ │ │ │ │ ├── setup_32.h │ │ │ │ │ │ ├── setup_44.h │ │ │ │ │ │ ├── setup_44p51.h │ │ │ │ │ │ ├── setup_44u.h │ │ │ │ │ │ ├── setup_8.h │ │ │ │ │ │ └── setup_X.h │ │ │ │ │ ├── os.h │ │ │ │ │ ├── psy.c │ │ │ │ │ ├── psy.h │ │ │ │ │ ├── psytune.c │ │ │ │ │ ├── registry.c │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── res0.c │ │ │ │ │ ├── scales.h │ │ │ │ │ ├── sharedbook.c │ │ │ │ │ ├── smallft.c │ │ │ │ │ ├── smallft.h │ │ │ │ │ ├── synthesis.c │ │ │ │ │ ├── tone.c │ │ │ │ │ ├── vorbisenc.c │ │ │ │ │ ├── vorbisfile.c │ │ │ │ │ ├── window.c │ │ │ │ │ └── window.h │ │ │ │ ├── libvorbis.spec │ │ │ │ ├── libvorbis.spec.in │ │ │ │ ├── ltmain.sh │ │ │ │ ├── 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 │ │ │ │ └── win32 │ │ │ │ │ ├── VS2005 │ │ │ │ │ ├── README │ │ │ │ │ ├── libogg.vsprops │ │ │ │ │ ├── libvorbis │ │ │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ │ │ └── libvorbis_static.vcproj │ │ │ │ │ ├── libvorbisfile │ │ │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ │ │ ├── vorbis_dynamic.sln │ │ │ │ │ ├── vorbis_static.sln │ │ │ │ │ ├── vorbisdec │ │ │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ │ │ └── vorbisdec_static.vcproj │ │ │ │ │ └── vorbisenc │ │ │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ │ │ └── vorbisenc_static.vcproj │ │ │ │ │ ├── VS2008 │ │ │ │ │ ├── README │ │ │ │ │ ├── libogg.vsprops │ │ │ │ │ ├── libvorbis │ │ │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ │ │ └── libvorbis_static.vcproj │ │ │ │ │ ├── libvorbisfile │ │ │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ │ │ ├── vorbis_dynamic.sln │ │ │ │ │ ├── vorbis_static.sln │ │ │ │ │ ├── vorbisdec │ │ │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ │ │ └── vorbisdec_static.vcproj │ │ │ │ │ └── vorbisenc │ │ │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ │ │ └── vorbisenc_static.vcproj │ │ │ │ │ ├── VS2010 │ │ │ │ │ ├── README │ │ │ │ │ ├── libogg.props │ │ │ │ │ ├── libvorbis │ │ │ │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ │ │ │ └── libvorbis_static.vcxproj │ │ │ │ │ ├── libvorbisfile │ │ │ │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ │ │ │ └── libvorbisfile_static.vcxproj │ │ │ │ │ ├── vorbis_dynamic.sln │ │ │ │ │ ├── vorbis_static.sln │ │ │ │ │ ├── vorbisdec │ │ │ │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ │ │ │ └── vorbisdec_static.vcxproj │ │ │ │ │ └── vorbisenc │ │ │ │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ │ │ │ └── vorbisenc_static.vcxproj │ │ │ │ │ ├── vorbis.def │ │ │ │ │ ├── vorbisenc.def │ │ │ │ │ └── vorbisfile.def │ │ │ ├── libvorbisidec-1.2.1.patch │ │ │ ├── libvorbisidec-1.2.1 │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── Version_script.in │ │ │ │ ├── acinclude │ │ │ │ │ ├── ogg.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── asm_arm.h │ │ │ │ ├── backends.h │ │ │ │ ├── block.c │ │ │ │ ├── block.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── config_types.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── doc │ │ │ │ │ ├── OggVorbis_File.html │ │ │ │ │ ├── build.html │ │ │ │ │ ├── callbacks.html │ │ │ │ │ ├── datastructures.html │ │ │ │ │ ├── decoding.html │ │ │ │ │ ├── diff.html │ │ │ │ │ ├── example.html │ │ │ │ │ ├── fileinfo.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── initialization.html │ │ │ │ │ ├── ov_bitrate.html │ │ │ │ │ ├── ov_bitrate_instant.html │ │ │ │ │ ├── ov_callbacks.html │ │ │ │ │ ├── ov_clear.html │ │ │ │ │ ├── ov_comment.html │ │ │ │ │ ├── ov_info.html │ │ │ │ │ ├── ov_open.html │ │ │ │ │ ├── ov_open_callbacks.html │ │ │ │ │ ├── ov_pcm_seek.html │ │ │ │ │ ├── ov_pcm_seek_page.html │ │ │ │ │ ├── ov_pcm_tell.html │ │ │ │ │ ├── ov_pcm_total.html │ │ │ │ │ ├── ov_raw_seek.html │ │ │ │ │ ├── ov_raw_tell.html │ │ │ │ │ ├── ov_raw_total.html │ │ │ │ │ ├── ov_read.html │ │ │ │ │ ├── ov_seekable.html │ │ │ │ │ ├── ov_serialnumber.html │ │ │ │ │ ├── ov_streams.html │ │ │ │ │ ├── ov_test.html │ │ │ │ │ ├── ov_test_callbacks.html │ │ │ │ │ ├── ov_test_open.html │ │ │ │ │ ├── ov_time_seek.html │ │ │ │ │ ├── ov_time_seek_page.html │ │ │ │ │ ├── ov_time_tell.html │ │ │ │ │ ├── ov_time_total.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── return.html │ │ │ │ │ ├── seeking.html │ │ │ │ │ ├── threads.html │ │ │ │ │ ├── vorbis_comment.html │ │ │ │ │ └── vorbis_info.html │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── info.c │ │ │ │ ├── install-sh │ │ │ │ ├── iseeking_example.c │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── ivorbisfile_example.c │ │ │ │ ├── lsp_lookup.h │ │ │ │ ├── ltmain.sh │ │ │ │ ├── mapping0.c │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mdct_lookup.h │ │ │ │ ├── misc.h │ │ │ │ ├── missing │ │ │ │ ├── os.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res012.c │ │ │ │ ├── sharedbook.c │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── vorbisidec.pc.in │ │ │ │ ├── win32 │ │ │ │ │ ├── VS2005 │ │ │ │ │ │ └── libtremor │ │ │ │ │ │ │ └── libtremor.vcproj │ │ │ │ │ └── VS2008 │ │ │ │ │ │ └── libtremor │ │ │ │ │ │ └── libtremor.vcproj │ │ │ │ ├── window.c │ │ │ │ ├── window.h │ │ │ │ └── window_lookup.h │ │ │ └── smpeg2-2.0.0 │ │ │ │ ├── Android.mk │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── MPEG.cpp │ │ │ │ ├── MPEG.h │ │ │ │ ├── MPEGaction.h │ │ │ │ ├── MPEGaudio.h │ │ │ │ ├── MPEGerror.h │ │ │ │ ├── MPEGframe.h │ │ │ │ ├── MPEGlist.cpp │ │ │ │ ├── MPEGlist.h │ │ │ │ ├── MPEGring.cpp │ │ │ │ ├── MPEGring.h │ │ │ │ ├── MPEGstream.cpp │ │ │ │ ├── MPEGstream.h │ │ │ │ ├── MPEGsystem.cpp │ │ │ │ ├── MPEGsystem.h │ │ │ │ ├── MPEGvideo.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── README.SDL_mixer │ │ │ │ ├── TODO │ │ │ │ ├── VisualC.zip │ │ │ │ ├── acinclude │ │ │ │ ├── gtk-2.0.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltdl.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── pkg.m4 │ │ │ │ ├── sdl2.m4 │ │ │ │ └── socklen_t.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── audio │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── MPEGaudio.cpp │ │ │ │ ├── README │ │ │ │ ├── README.LIB │ │ │ │ ├── bitwindow.cpp │ │ │ │ ├── filter.cpp │ │ │ │ ├── filter_2.cpp │ │ │ │ ├── hufftable.cpp │ │ │ │ ├── mpeglayer1.cpp │ │ │ │ ├── mpeglayer2.cpp │ │ │ │ ├── mpeglayer3.cpp │ │ │ │ ├── mpegtable.cpp │ │ │ │ └── mpegtoraw.cpp │ │ │ │ ├── autogen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── g++-fat.sh │ │ │ │ ├── gcc-fat.sh │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── plaympeg.1 │ │ │ │ ├── plaympeg.c │ │ │ │ ├── smpeg.cpp │ │ │ │ ├── smpeg.h │ │ │ │ ├── smpeg2-config.in │ │ │ │ ├── smpeg2.m4 │ │ │ │ ├── smpeg2.spec │ │ │ │ ├── smpeg2.spec.in │ │ │ │ └── video │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── MPEGvideo.cpp │ │ │ │ ├── README │ │ │ │ ├── decoders.cpp │ │ │ │ ├── decoders.h │ │ │ │ ├── dither.h │ │ │ │ ├── floatdct.cpp │ │ │ │ ├── gdith.cpp │ │ │ │ ├── jrevdct.cpp │ │ │ │ ├── mmxflags_asm.S │ │ │ │ ├── mmxidct_asm.S │ │ │ │ ├── motionvec.cpp │ │ │ │ ├── parseblock.cpp │ │ │ │ ├── proto.h │ │ │ │ ├── readfile.cpp │ │ │ │ ├── util.cpp │ │ │ │ ├── util.h │ │ │ │ ├── video.cpp │ │ │ │ └── video.h │ │ ├── fluidsynth.c │ │ ├── fluidsynth.h │ │ ├── gcc-fat.sh │ │ ├── load_aiff.c │ │ ├── load_aiff.h │ │ ├── load_flac.c │ │ ├── load_flac.h │ │ ├── load_mp3.c │ │ ├── load_mp3.h │ │ ├── load_ogg.c │ │ ├── load_ogg.h │ │ ├── load_voc.c │ │ ├── load_voc.h │ │ ├── mixer.c │ │ ├── music.c │ │ ├── music_cmd.c │ │ ├── music_cmd.h │ │ ├── music_flac.c │ │ ├── music_flac.h │ │ ├── music_mad.c │ │ ├── music_mad.h │ │ ├── music_mod.c │ │ ├── music_mod.h │ │ ├── music_modplug.c │ │ ├── music_modplug.h │ │ ├── music_ogg.c │ │ ├── music_ogg.h │ │ ├── native_midi │ │ │ ├── native_midi.h │ │ │ ├── native_midi_common.c │ │ │ ├── native_midi_common.h │ │ │ ├── native_midi_haiku.cpp │ │ │ ├── native_midi_mac.c │ │ │ ├── native_midi_macosx.c │ │ │ └── native_midi_win32.c │ │ ├── playmus.c │ │ ├── playwave.c │ │ ├── timidity │ │ │ ├── COPYING │ │ │ ├── FAQ │ │ │ ├── README │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── ctrlmode.c │ │ │ ├── ctrlmode.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── instrum.c │ │ │ ├── instrum.h │ │ │ ├── mix.c │ │ │ ├── mix.h │ │ │ ├── output.c │ │ │ ├── output.h │ │ │ ├── playmidi.c │ │ │ ├── playmidi.h │ │ │ ├── readmidi.c │ │ │ ├── readmidi.h │ │ │ ├── resample.c │ │ │ ├── resample.h │ │ │ ├── sdl_a.c │ │ │ ├── sdl_c.c │ │ │ ├── tables.c │ │ │ ├── tables.h │ │ │ ├── timidity.c │ │ │ └── timidity.h │ │ ├── version.rc │ │ ├── wavestream.c │ │ └── wavestream.h │ └── SDL2_ttf │ │ ├── Android.mk │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── SDL2_ttf.pc.in │ │ ├── SDL2_ttf.spec │ │ ├── SDL2_ttf.spec.in │ │ ├── SDL_ttf.c │ │ ├── SDL_ttf.h │ │ ├── VisualC │ │ ├── SDL_ttf_VS2008.sln │ │ ├── SDL_ttf_VS2008.vcproj │ │ ├── SDL_ttf_VS2010.sln │ │ ├── SDL_ttf_VS2010.vcxproj │ │ ├── SDL_ttf_VS2012.sln │ │ ├── SDL_ttf_VS2012.vcxproj │ │ ├── Version.rc │ │ ├── clean.sh │ │ ├── external │ │ │ ├── include │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ └── lib │ │ │ │ ├── x64 │ │ │ │ ├── LICENSE.freetype.txt │ │ │ │ ├── LICENSE.zlib.txt │ │ │ │ ├── libfreetype-6.dll │ │ │ │ ├── libfreetype-6.lib │ │ │ │ └── zlib1.dll │ │ │ │ └── x86 │ │ │ │ ├── LICENSE.freetype.txt │ │ │ │ ├── LICENSE.zlib.txt │ │ │ │ ├── libfreetype-6.dll │ │ │ │ ├── libfreetype-6.lib │ │ │ │ └── zlib1.dll │ │ ├── glfont │ │ │ ├── glfont_VS2008.vcproj │ │ │ ├── glfont_VS2010.vcxproj │ │ │ └── glfont_VS2012.vcxproj │ │ ├── resource.h │ │ └── showfont │ │ │ ├── showfont_VS2008.vcproj │ │ │ ├── showfont_VS2010.vcxproj │ │ │ └── showfont_VS2012.vcxproj │ │ ├── Xcode-iOS │ │ └── SDL_ttf.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ ├── Frameworks │ │ │ └── FreeType.framework │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ ├── LICENSE.freetype.txt │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ ├── Info-Framework.plist │ │ ├── SDL_ttf.xcodeproj │ │ │ └── project.pbxproj │ │ ├── glfont │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info-glfont__Upgraded_.plist │ │ │ ├── SDLMain.h │ │ │ ├── SDLMain.m │ │ │ └── glfont.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── package │ │ ├── pkg-support │ │ │ ├── SDL_ttf.info │ │ │ ├── codesign-frameworks.sh │ │ │ ├── mkpackage.sh │ │ │ └── resources │ │ │ │ ├── ReadMe.txt │ │ │ │ └── Welcome.txt │ │ └── showfont │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── Info-showfont__Upgraded_.plist │ │ │ ├── SDLMain.h │ │ │ ├── SDLMain.m │ │ │ └── showfont.xcodeproj │ │ │ └── project.pbxproj │ │ ├── acinclude │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── pkg.m4 │ │ └── sdl2.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── examples │ │ │ └── Makefile │ │ ├── libsdl2-ttf-dev.examples │ │ ├── libsdl2-ttf-dev.install │ │ ├── libsdl2-ttf.install │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ │ ├── depcomp │ │ ├── external │ │ └── freetype-2.4.12 │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.20 │ │ │ ├── ChangeLog.21 │ │ │ ├── ChangeLog.22 │ │ │ ├── ChangeLog.23 │ │ │ ├── Jamfile │ │ │ ├── Jamrules │ │ │ ├── README │ │ │ ├── README.git │ │ │ ├── autogen.sh │ │ │ ├── builds │ │ │ ├── amiga │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── freetype │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ └── ftmodule.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.os4 │ │ │ │ ├── smakefile │ │ │ │ └── src │ │ │ │ │ └── base │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ └── ftsystem.c │ │ │ ├── ansi │ │ │ │ ├── ansi-def.mk │ │ │ │ └── ansi.mk │ │ │ ├── atari │ │ │ │ ├── ATARI.H │ │ │ │ ├── FNames.SIC │ │ │ │ ├── FREETYPE.PRJ │ │ │ │ ├── README.TXT │ │ │ │ ├── deflinejoiner.awk │ │ │ │ └── gen-purec-patch.sh │ │ │ ├── beos │ │ │ │ ├── beos-def.mk │ │ │ │ ├── beos.mk │ │ │ │ └── detect.mk │ │ │ ├── compiler │ │ │ │ ├── ansi-cc.mk │ │ │ │ ├── bcc-dev.mk │ │ │ │ ├── bcc.mk │ │ │ │ ├── emx.mk │ │ │ │ ├── gcc-dev.mk │ │ │ │ ├── gcc.mk │ │ │ │ ├── intelc.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── visualage.mk │ │ │ │ ├── visualc.mk │ │ │ │ ├── watcom.mk │ │ │ │ └── win-lcc.mk │ │ │ ├── detect.mk │ │ │ ├── dos │ │ │ │ ├── detect.mk │ │ │ │ ├── dos-def.mk │ │ │ │ ├── dos-emx.mk │ │ │ │ ├── dos-gcc.mk │ │ │ │ └── dos-wat.mk │ │ │ ├── exports.mk │ │ │ ├── freetype.mk │ │ │ ├── link_dos.mk │ │ │ ├── link_std.mk │ │ │ ├── mac │ │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ │ ├── README │ │ │ │ ├── ascii2mpw.py │ │ │ │ ├── ftlib.prj.xml │ │ │ │ └── ftmac.c │ │ │ ├── modules.mk │ │ │ ├── newline │ │ │ ├── os2 │ │ │ │ ├── detect.mk │ │ │ │ ├── os2-def.mk │ │ │ │ ├── os2-dev.mk │ │ │ │ └── os2-gcc.mk │ │ │ ├── symbian │ │ │ │ ├── bld.inf │ │ │ │ └── freetype.mmp │ │ │ ├── toplevel.mk │ │ │ ├── unix │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── configure.raw │ │ │ │ ├── detect.mk │ │ │ │ ├── freetype-config.in │ │ │ │ ├── freetype2.in │ │ │ │ ├── freetype2.m4 │ │ │ │ ├── ft-munmap.m4 │ │ │ │ ├── ft2unix.h │ │ │ │ ├── ftconfig.in │ │ │ │ ├── ftsystem.c │ │ │ │ ├── install-sh │ │ │ │ ├── install.mk │ │ │ │ ├── ltmain.sh │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── unix-cc.in │ │ │ │ ├── unix-def.in │ │ │ │ ├── unix-dev.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── unix.mk │ │ │ │ └── unixddef.mk │ │ │ ├── vms │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftsystem.c │ │ │ ├── win32 │ │ │ │ ├── detect.mk │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2005 │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ ├── vc2008 │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ ├── vc2010 │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcxproj │ │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ │ └── index.html │ │ │ │ ├── visualc │ │ │ │ │ ├── freetype.dsp │ │ │ │ │ ├── freetype.dsw │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ ├── visualce │ │ │ │ │ ├── freetype.dsp │ │ │ │ │ ├── freetype.dsw │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ ├── w32-bcc.mk │ │ │ │ ├── w32-bccd.mk │ │ │ │ ├── w32-dev.mk │ │ │ │ ├── w32-gcc.mk │ │ │ │ ├── w32-icc.mk │ │ │ │ ├── w32-intl.mk │ │ │ │ ├── w32-lcc.mk │ │ │ │ ├── w32-mingw32.mk │ │ │ │ ├── w32-vcc.mk │ │ │ │ ├── w32-wat.mk │ │ │ │ └── win32-def.mk │ │ │ └── wince │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2005-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ └── vc2008-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── configure │ │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ │ ├── docs │ │ │ ├── CHANGES │ │ │ ├── CUSTOMIZE │ │ │ ├── DEBUG │ │ │ ├── FTL.TXT │ │ │ ├── GPLv2.TXT │ │ │ ├── INSTALL │ │ │ ├── INSTALL.ANY │ │ │ ├── INSTALL.CROSS │ │ │ ├── INSTALL.GNU │ │ │ ├── INSTALL.MAC │ │ │ ├── INSTALL.UNIX │ │ │ ├── INSTALL.VMS │ │ │ ├── LICENSE.TXT │ │ │ ├── MAKEPP │ │ │ ├── PROBLEMS │ │ │ ├── TODO │ │ │ ├── VERSION.DLL │ │ │ ├── formats.txt │ │ │ ├── raster.txt │ │ │ ├── reference │ │ │ │ └── README │ │ │ └── release │ │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.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 │ │ │ │ ├── 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 │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.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 │ │ │ ├── modules.cfg │ │ │ ├── objs │ │ │ └── README │ │ │ ├── src │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ │ ├── Jamfile │ │ │ │ ├── basepic.c │ │ │ │ ├── basepic.h │ │ │ │ ├── ftadvanc.c │ │ │ │ ├── ftapi.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbase.h │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftcid.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── ftfstype.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftpic.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftsnames.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── ftxf86.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ │ ├── Jamfile │ │ │ │ ├── ftbzip2.c │ │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ │ ├── Jamfile │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ │ ├── Jamfile │ │ │ │ ├── cf2arrst.c │ │ │ │ ├── cf2arrst.h │ │ │ │ ├── cf2blues.c │ │ │ │ ├── cf2blues.h │ │ │ │ ├── cf2error.c │ │ │ │ ├── cf2error.h │ │ │ │ ├── cf2fixed.h │ │ │ │ ├── cf2font.c │ │ │ │ ├── cf2font.h │ │ │ │ ├── cf2ft.c │ │ │ │ ├── cf2ft.h │ │ │ │ ├── cf2glue.h │ │ │ │ ├── cf2hints.c │ │ │ │ ├── cf2hints.h │ │ │ │ ├── cf2intrp.c │ │ │ │ ├── cf2intrp.h │ │ │ │ ├── cf2read.c │ │ │ │ ├── cf2read.h │ │ │ │ ├── cf2stack.c │ │ │ │ ├── cf2stack.h │ │ │ │ ├── cf2types.h │ │ │ │ ├── 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 │ │ │ ├── cid │ │ │ │ ├── Jamfile │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ ├── gxvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ │ ├── Jamfile │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ │ ├── Jamfile │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmath.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ │ ├── Jamfile │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── module.mk │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ ├── 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 │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── docmaker │ │ │ │ │ ├── content.py │ │ │ │ │ ├── docbeauty.py │ │ │ │ │ ├── docmaker.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── sources.py │ │ │ │ │ ├── tohtml.py │ │ │ │ │ └── utils.py │ │ │ │ ├── ftrandom │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ └── test_trig.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 │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ │ ├── Jamfile │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ │ ├── version.sed │ │ │ └── vms_make.com │ │ ├── gcc-fat.sh │ │ ├── glfont.c │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── showfont.c │ │ └── version.rc └── glew-1.11.0 │ ├── include │ └── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ └── src │ ├── glew.c │ ├── glewinfo.c │ └── visualinfo.c ├── README ├── README.html ├── android ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── 1_buid.bat ├── android.iml ├── ant.properties ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── .gitignore │ │ ├── AndroidManifest.xml │ │ ├── Assets │ │ ├── config.cfg │ │ ├── data │ │ │ ├── background.png │ │ │ ├── background_decal.png │ │ │ ├── background_detail.png │ │ │ ├── blendbrush.cfg │ │ │ ├── crosshair.png │ │ │ ├── cube.png │ │ │ ├── cube2badge.png │ │ │ ├── default_map_models.cfg │ │ │ ├── default_map_settings.cfg │ │ │ ├── defaults.cfg │ │ │ ├── defaults_rpg.cfg │ │ │ ├── font.cfg │ │ │ ├── game_fps.cfg │ │ │ ├── game_rpg.cfg │ │ │ ├── glsl.cfg │ │ │ ├── guicursor.png │ │ │ ├── guioverlay.png │ │ │ ├── guiskin.png │ │ │ ├── guislider.png │ │ │ ├── heightmap.cfg │ │ │ ├── hit.png │ │ │ ├── init.cfg │ │ │ ├── keymap.cfg │ │ │ ├── license.txt │ │ │ ├── loading_bar.png │ │ │ ├── loading_frame.png │ │ │ ├── logo.png │ │ │ ├── logo_1024.png │ │ │ ├── mapshot_frame.png │ │ │ ├── menus.cfg │ │ │ ├── restore.cfg │ │ │ ├── sounds.cfg │ │ │ ├── stdedit.cfg │ │ │ ├── stdlib.cfg │ │ │ └── teammate.png │ │ └── packages │ │ │ ├── aard │ │ │ ├── aardograss_1.jpg │ │ │ └── readme.txt │ │ │ ├── aftas │ │ │ ├── aftasardem licence.txt │ │ │ └── package.cfg │ │ │ ├── base │ │ │ ├── DM_BS1_Read_Me.txt │ │ │ ├── Frostbyte_Read_Me.txt │ │ │ ├── akaritori.txt │ │ │ ├── alithia.jpg │ │ │ ├── alloy.jpg │ │ │ ├── antel.jpg │ │ │ ├── aqueducts.jpg │ │ │ ├── arbana.jpg │ │ │ ├── asteroids.txt │ │ │ ├── bvdm_01.jpg │ │ │ ├── castle_trap.jpg │ │ │ ├── castle_trap.txt │ │ │ ├── collusion.jpg │ │ │ ├── core_transfer.txt │ │ │ ├── damnation_README.txt │ │ │ ├── depot.txt │ │ │ ├── dock.txt │ │ │ ├── douze_readme.txt │ │ │ ├── duel8.jpg │ │ │ ├── dune.cfg │ │ │ ├── dune.jpg │ │ │ ├── dune.ogz │ │ │ ├── elegy.jpg │ │ │ ├── eternal_valley.txt │ │ │ ├── evilness.txt │ │ │ ├── fanatic_quake.jpg │ │ │ ├── fanatic_quake.txt │ │ │ ├── fc3.cfg │ │ │ ├── fc3.jpg │ │ │ ├── fc3.ogz │ │ │ ├── fc3.txt │ │ │ ├── fc4.jpg │ │ │ ├── fc5.jpg │ │ │ ├── fc5.txt │ │ │ ├── force.jpg │ │ │ ├── forge.jpg │ │ │ ├── forge.txt │ │ │ ├── forgotten.jpg │ │ │ ├── fragplaza.jpg │ │ │ ├── frostbyte.jpg │ │ │ ├── frozen.cfg │ │ │ ├── frozen.jpg │ │ │ ├── frozen.ogz │ │ │ ├── frozen.txt │ │ │ ├── fury.jpg │ │ │ ├── garden.cfg │ │ │ ├── garden.jpg │ │ │ ├── garden.ogz │ │ │ ├── guacamole.jpg │ │ │ ├── gubo.jpg │ │ │ ├── hallo.jpg │ │ │ ├── hidden.txt │ │ │ ├── kalking1_readme.txt │ │ │ ├── katrez_d.txt │ │ │ ├── killcore3.txt │ │ │ ├── konkuri-to.txt │ │ │ ├── kurt_license.txt │ │ │ ├── masdm.txt │ │ │ ├── memento.txt │ │ │ ├── mpsp10_readme.txt │ │ │ ├── mpsp6.txt │ │ │ ├── mpsp9_readme.txt │ │ │ ├── ogrosupply.txt │ │ │ ├── outpost.txt │ │ │ ├── powerplant.txt │ │ │ ├── readme_fc4.txt │ │ │ ├── reissen_readme.txt │ │ │ ├── rm1.txt │ │ │ ├── rm5.txt │ │ │ ├── sacrifice.txt │ │ │ ├── shindou.txt │ │ │ ├── skrdm1_readme.txt │ │ │ ├── stemple.txt │ │ │ ├── turbulence.txt │ │ │ └── wake5.txt │ │ │ ├── blendbrush │ │ │ ├── circle_128_hard.png │ │ │ ├── circle_128_soft.png │ │ │ ├── circle_128_solid.png │ │ │ ├── circle_16_hard.png │ │ │ ├── circle_16_soft.png │ │ │ ├── circle_16_solid.png │ │ │ ├── circle_32_hard.png │ │ │ ├── circle_32_soft.png │ │ │ ├── circle_32_solid.png │ │ │ ├── circle_64_hard.png │ │ │ ├── circle_64_soft.png │ │ │ ├── circle_64_solid.png │ │ │ ├── circle_8_hard.png │ │ │ ├── circle_8_soft.png │ │ │ ├── circle_8_solid.png │ │ │ ├── gradient_128.png │ │ │ ├── gradient_16.png │ │ │ ├── gradient_32.png │ │ │ ├── gradient_64.png │ │ │ ├── noise_128.png │ │ │ ├── noise_64.png │ │ │ ├── square_16_hard.png │ │ │ ├── square_16_solid.png │ │ │ ├── square_32_hard.png │ │ │ ├── square_32_solid.png │ │ │ ├── square_64_hard.png │ │ │ └── square_64_solid.png │ │ │ ├── blikjebier │ │ │ ├── akaritori │ │ │ │ └── package2.cfg │ │ │ ├── concrete │ │ │ │ └── package.cfg │ │ │ ├── metal │ │ │ │ └── package.cfg │ │ │ └── snow │ │ │ │ └── dirty_snow.jpg │ │ │ ├── caustics │ │ │ ├── caust00.png │ │ │ ├── caust01.png │ │ │ ├── caust02.png │ │ │ ├── caust03.png │ │ │ ├── caust04.png │ │ │ ├── caust05.png │ │ │ ├── caust06.png │ │ │ ├── caust07.png │ │ │ ├── caust08.png │ │ │ ├── caust09.png │ │ │ ├── caust10.png │ │ │ ├── caust11.png │ │ │ ├── caust12.png │ │ │ ├── caust13.png │ │ │ ├── caust14.png │ │ │ ├── caust15.png │ │ │ ├── caust16.png │ │ │ ├── caust17.png │ │ │ ├── caust18.png │ │ │ ├── caust19.png │ │ │ ├── caust20.png │ │ │ ├── caust21.png │ │ │ ├── caust22.png │ │ │ ├── caust23.png │ │ │ ├── caust24.png │ │ │ ├── caust25.png │ │ │ ├── caust26.png │ │ │ ├── caust27.png │ │ │ ├── caust28.png │ │ │ ├── caust29.png │ │ │ ├── caust30.png │ │ │ └── caust31.png │ │ │ ├── dg │ │ │ ├── floor_grass1.jpg │ │ │ ├── floor_grass3&soil.jpg │ │ │ ├── floor_paving_littleStones3.jpg │ │ │ ├── mad051.jpg │ │ │ ├── mad064.jpg │ │ │ ├── mad065.jpg │ │ │ ├── mad067.jpg │ │ │ ├── mur000.jpg │ │ │ ├── mur043.jpg │ │ │ ├── mur088.jpg │ │ │ ├── mur109.jpg │ │ │ ├── mur139.jpg │ │ │ ├── muv025.jpg │ │ │ ├── muv030.jpg │ │ │ ├── muv032.jpg │ │ │ ├── muv158.jpg │ │ │ ├── package.cfg │ │ │ ├── sue011.jpg │ │ │ └── trail.jpg │ │ │ ├── egyptsoc │ │ │ ├── package.cfg │ │ │ └── s064-01b.jpg │ │ │ ├── fonts │ │ │ ├── default.cfg │ │ │ ├── default.txt │ │ │ ├── default0.png │ │ │ ├── default1.png │ │ │ └── default2.png │ │ │ ├── g_pack │ │ │ ├── g-pack_tex_sources_readme.txt │ │ │ ├── package.cfg │ │ │ └── package2.cfg │ │ │ ├── gibbie │ │ │ ├── base02_d.jpg │ │ │ ├── base02_h.jpg │ │ │ ├── base02_local.jpg │ │ │ ├── base02_s.jpg │ │ │ ├── base03_d.jpg │ │ │ ├── base03_h.jpg │ │ │ ├── base03_local.jpg │ │ │ ├── base03_s.jpg │ │ │ ├── base04_d.jpg │ │ │ ├── base04_h.jpg │ │ │ ├── base04_local.jpg │ │ │ ├── base04_s.jpg │ │ │ ├── base05_d.jpg │ │ │ ├── base05_h.jpg │ │ │ ├── base05_local.jpg │ │ │ ├── base05_s.jpg │ │ │ ├── base07_d.jpg │ │ │ ├── base07_h.jpg │ │ │ ├── base07_local.jpg │ │ │ ├── base07_s.jpg │ │ │ ├── base08_d.jpg │ │ │ ├── base08_h.jpg │ │ │ ├── base08_local.jpg │ │ │ ├── base08_s.jpg │ │ │ ├── base09_d.jpg │ │ │ ├── base09_h.jpg │ │ │ ├── base09_local.jpg │ │ │ ├── base09_s.jpg │ │ │ ├── base10_d.jpg │ │ │ ├── base10_h.jpg │ │ │ ├── base10_local.jpg │ │ │ ├── base10_s.jpg │ │ │ ├── base11_d.jpg │ │ │ ├── base11_h.jpg │ │ │ ├── base11_local.jpg │ │ │ ├── base11_s.jpg │ │ │ ├── base13_d.jpg │ │ │ ├── base13_h.jpg │ │ │ ├── base13_local.jpg │ │ │ ├── base13_s.jpg │ │ │ ├── base15_brown_d.jpg │ │ │ ├── base15_h.jpg │ │ │ ├── base15_local.jpg │ │ │ ├── base15_s.jpg │ │ │ ├── base23_d.jpg │ │ │ ├── base23_h.jpg │ │ │ ├── base23_local.jpg │ │ │ ├── base23_s.jpg │ │ │ ├── base25_d.jpg │ │ │ ├── base25_h.jpg │ │ │ ├── base25_local.jpg │ │ │ ├── base25_s.jpg │ │ │ ├── base26_d.jpg │ │ │ ├── base26_h.jpg │ │ │ ├── base26_local.jpg │ │ │ ├── base26_s.jpg │ │ │ ├── base27_d.jpg │ │ │ ├── base27_h.jpg │ │ │ ├── base27_local.jpg │ │ │ ├── base27_s.jpg │ │ │ ├── base29_d.jpg │ │ │ ├── base29_h.jpg │ │ │ ├── base29_local.jpg │ │ │ ├── base29_s.jpg │ │ │ ├── base30_d.jpg │ │ │ ├── base30_h.jpg │ │ │ ├── base30_local.jpg │ │ │ ├── base30_s.jpg │ │ │ ├── base34_d.jpg │ │ │ ├── base34_h.jpg │ │ │ ├── base34_local.jpg │ │ │ ├── base34_s.jpg │ │ │ ├── base35_d.jpg │ │ │ ├── base35_h.jpg │ │ │ ├── base35_local.jpg │ │ │ ├── base35_s.jpg │ │ │ ├── base37_d.jpg │ │ │ ├── base37_h.jpg │ │ │ ├── base37_local.jpg │ │ │ ├── base37_s.jpg │ │ │ ├── base46_d.jpg │ │ │ ├── base46_h.jpg │ │ │ ├── base46_local.jpg │ │ │ ├── base46_s.jpg │ │ │ ├── base47_brown_d.jpg │ │ │ ├── base47_h.jpg │ │ │ ├── base47_local.jpg │ │ │ ├── base47_s.jpg │ │ │ ├── baselight01_add.jpg │ │ │ ├── baselight01_d.jpg │ │ │ ├── baselight01_h.jpg │ │ │ ├── baselight01_local.jpg │ │ │ ├── baselight01_s.jpg │ │ │ ├── baselight03_add.jpg │ │ │ ├── baselight03_d.jpg │ │ │ ├── baselight03_h.jpg │ │ │ ├── baselight03_local.jpg │ │ │ ├── baselight03_s.jpg │ │ │ ├── baselight06_add.jpg │ │ │ ├── baselight06_d.jpg │ │ │ ├── baselight06_h.jpg │ │ │ ├── baselight06_local.jpg │ │ │ ├── baselight06_s.jpg │ │ │ ├── baselight07_add.jpg │ │ │ ├── baselight07_d.jpg │ │ │ ├── baselight07_h.jpg │ │ │ ├── baselight07_local.jpg │ │ │ ├── baselight07_s.jpg │ │ │ ├── baselight08_add.jpg │ │ │ ├── baselight08_d.jpg │ │ │ ├── baselight08_h.jpg │ │ │ ├── baselight08_local.jpg │ │ │ ├── baselight08_s.jpg │ │ │ ├── baselight09_add.jpg │ │ │ ├── baselight09_d.jpg │ │ │ ├── baselight09_h.jpg │ │ │ ├── baselight09_local.jpg │ │ │ ├── baselight09_s.jpg │ │ │ ├── flr1_h.jpg │ │ │ ├── flr1_local.jpg │ │ │ ├── flr1_s.jpg │ │ │ ├── flr3_d.jpg │ │ │ ├── flrtile1_d.jpg │ │ │ ├── flrtile1_h.jpg │ │ │ ├── flrtile1_local.jpg │ │ │ ├── flrtile1_s.jpg │ │ │ ├── flrtile2_d.jpg │ │ │ ├── flrtile3_d.jpg │ │ │ ├── grate_large_d.jpg │ │ │ ├── grate_large_h.jpg │ │ │ ├── grate_large_local.jpg │ │ │ ├── grate_large_s.jpg │ │ │ ├── lite2_add.jpg │ │ │ ├── lite2_d.jpg │ │ │ ├── lite2_h.jpg │ │ │ ├── lite2_local.jpg │ │ │ ├── lite2_s.jpg │ │ │ ├── package.cfg │ │ │ ├── readme.txt │ │ │ ├── teletop_add.jpg │ │ │ ├── teletop_d.jpg │ │ │ ├── teletop_h.jpg │ │ │ ├── teletop_local.jpg │ │ │ └── teletop_s.jpg │ │ │ ├── golgotha │ │ │ ├── golgotha readme.txt │ │ │ └── water2.jpg │ │ │ ├── gor │ │ │ ├── license.txt │ │ │ └── package.cfg │ │ │ ├── hud │ │ │ ├── blip_blue.png │ │ │ ├── blip_blue_flag.png │ │ │ ├── blip_neutral.png │ │ │ ├── blip_neutral_flag.png │ │ │ ├── blip_red.png │ │ │ ├── blip_red_flag.png │ │ │ ├── digit_blue.png │ │ │ ├── digit_font.cfg │ │ │ ├── digit_grey.png │ │ │ ├── digit_red.png │ │ │ ├── items.png │ │ │ ├── license.txt │ │ │ └── radar.png │ │ │ ├── icons │ │ │ ├── action.jpg │ │ │ ├── cube.jpg │ │ │ ├── exit.jpg │ │ │ ├── info.jpg │ │ │ ├── menu.jpg │ │ │ ├── mrfixit.jpg │ │ │ ├── readme.txt │ │ │ └── spectator.jpg │ │ │ ├── ik2k │ │ │ ├── ik2k_22feb01.txt │ │ │ ├── ik_brick_3216d.jpg │ │ │ ├── ik_brick_6464c.jpg │ │ │ ├── ik_brickwall_gry.jpg │ │ │ ├── ik_floor_wood128b.jpg │ │ │ ├── ik_wpaperplain128b.jpg │ │ │ ├── ik_wpaperplain128c.jpg │ │ │ ├── ik_wpaperplain128e.jpg │ │ │ └── package.cfg │ │ │ ├── ikbase │ │ │ ├── ikbase070900.txt │ │ │ └── package.cfg │ │ │ ├── jf1 │ │ │ ├── jf1wad.txt │ │ │ └── package.cfg │ │ │ ├── loopix │ │ │ └── package.cfg │ │ │ ├── lunaran │ │ │ ├── bigmet1_d.jpg │ │ │ ├── bigmet1_h.jpg │ │ │ ├── bigmet1_local.jpg │ │ │ ├── bigmet1_s.jpg │ │ │ ├── bigmet2_d.jpg │ │ │ ├── bigmet2_h.jpg │ │ │ ├── bigmet2_local.jpg │ │ │ ├── bigmet2_s.jpg │ │ │ ├── cord1_d.jpg │ │ │ ├── cord1_h.jpg │ │ │ ├── cord1_local.jpg │ │ │ ├── cord1_s.jpg │ │ │ ├── glue1_d.jpg │ │ │ ├── glue1_h.jpg │ │ │ ├── glue1_local.jpg │ │ │ ├── glue1_s.jpg │ │ │ ├── glue2_d.jpg │ │ │ ├── glue2_h.jpg │ │ │ ├── glue2_local.jpg │ │ │ ├── glue2_s.jpg │ │ │ ├── light_ceil1_d.jpg │ │ │ ├── light_ceil1_g.jpg │ │ │ ├── light_ceil1_h.jpg │ │ │ ├── light_ceil1_local.jpg │ │ │ ├── light_fifty_d.jpg │ │ │ ├── light_fifty_g.jpg │ │ │ ├── light_fifty_h.jpg │ │ │ ├── light_fifty_local.jpg │ │ │ ├── light_fifty_s.jpg │ │ │ ├── mech1_d.jpg │ │ │ ├── mech1_glow.jpg │ │ │ ├── mech1_h.jpg │ │ │ ├── mech1_local.jpg │ │ │ ├── mech1_s.jpg │ │ │ ├── package.cfg │ │ │ ├── panel128_1_d.jpg │ │ │ ├── panel128_1_h.jpg │ │ │ ├── panel128_1_local.jpg │ │ │ ├── panel128_1_s.jpg │ │ │ ├── panel128_2_d.jpg │ │ │ ├── panel128_2_h.jpg │ │ │ ├── panel128_2_local.jpg │ │ │ ├── panel128_2_s.jpg │ │ │ ├── panel128_3_d.jpg │ │ │ ├── panel128_3_h.jpg │ │ │ ├── panel128_3_local.jpg │ │ │ ├── panel128_3_s.jpg │ │ │ ├── panel64_0_d.jpg │ │ │ ├── panel64_0_h.jpg │ │ │ ├── panel64_0_local.jpg │ │ │ ├── panel64_0_s.jpg │ │ │ ├── panel64_1_d.jpg │ │ │ ├── panel64_1_h.jpg │ │ │ ├── panel64_1_local.jpg │ │ │ ├── panel64_1_s.jpg │ │ │ ├── panel64_2a_d.jpg │ │ │ ├── panel64_2a_h.jpg │ │ │ ├── panel64_2a_local.jpg │ │ │ ├── panel64_2a_s.jpg │ │ │ ├── panel64_2b_d.jpg │ │ │ ├── panel64_2b_h.jpg │ │ │ ├── panel64_2b_local.jpg │ │ │ ├── panel64_2b_s.jpg │ │ │ ├── panel64_5b_d.jpg │ │ │ ├── panel64_5b_h.jpg │ │ │ ├── panel64_5b_local.jpg │ │ │ ├── panel64_5b_s.jpg │ │ │ ├── panel64_6_d.jpg │ │ │ ├── panel64_6_h.jpg │ │ │ ├── panel64_6_local.jpg │ │ │ ├── panel64_6_s.jpg │ │ │ ├── panel64_7_d.jpg │ │ │ ├── panel64_7_h.jpg │ │ │ ├── panel64_7_local.jpg │ │ │ ├── panel64_7_s.jpg │ │ │ ├── panel64_7b_d.jpg │ │ │ ├── panel64_7b_h.jpg │ │ │ ├── panel64_7b_local.jpg │ │ │ ├── panel64_7b_s.jpg │ │ │ ├── panel64_7c_d.jpg │ │ │ ├── panel64_7c_h.jpg │ │ │ ├── panel64_7c_local.jpg │ │ │ ├── panel64_7c_s.jpg │ │ │ ├── panel64_7d_d.jpg │ │ │ ├── panel64_7d_h.jpg │ │ │ ├── panel64_7d_local.jpg │ │ │ ├── panel64_7d_s.jpg │ │ │ ├── panel64tri_1_d.jpg │ │ │ ├── panel64tri_1_h.jpg │ │ │ ├── panel64tri_1_local.jpg │ │ │ ├── panel64tri_1_s.jpg │ │ │ ├── q4power.txt │ │ │ ├── support1_d.jpg │ │ │ ├── support1_h.jpg │ │ │ ├── support1_local.jpg │ │ │ └── support1_s.jpg │ │ │ ├── misanthropx │ │ │ └── white.jpg │ │ │ ├── mitaman │ │ │ └── package.cfg │ │ │ ├── models │ │ │ ├── ammo │ │ │ │ ├── bullets │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ ├── cartridges │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ ├── grenades │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ ├── rockets │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ ├── rrounds │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ ├── shells │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ └── tris.md3 │ │ │ ├── armor │ │ │ │ ├── green │ │ │ │ │ └── skin.jpg │ │ │ │ ├── masks.jpg │ │ │ │ ├── tris.md3 │ │ │ │ └── yellow │ │ │ │ │ └── skin.jpg │ │ │ ├── barreldebris │ │ │ │ ├── debris01 │ │ │ │ │ ├── debris1.md3 │ │ │ │ │ └── md3.cfg │ │ │ │ ├── debris02 │ │ │ │ │ ├── debris2.md3 │ │ │ │ │ └── md3.cfg │ │ │ │ ├── debris03 │ │ │ │ │ ├── debris3.md3 │ │ │ │ │ └── md3.cfg │ │ │ │ ├── debris04 │ │ │ │ │ ├── debris4.md3 │ │ │ │ │ └── md3.cfg │ │ │ │ └── skin.jpg │ │ │ ├── boost │ │ │ │ ├── masks.jpg │ │ │ │ ├── md3.cfg │ │ │ │ ├── skin.jpg │ │ │ │ └── tris.md3 │ │ │ ├── crow │ │ │ │ ├── crow.md3 │ │ │ │ ├── crow.png │ │ │ │ └── md3.cfg │ │ │ ├── dcp │ │ │ │ ├── blade_x │ │ │ │ │ ├── model.obj │ │ │ │ │ └── obj.cfg │ │ │ │ ├── candle │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── cart │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── cask │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── chandelier │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── firebowl │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── ivy │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── leafs │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── mushroom │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── sack │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ └── vent │ │ │ │ │ ├── masks.jpg │ │ │ │ │ └── skin.jpg │ │ │ ├── debris │ │ │ │ ├── debris01 │ │ │ │ │ └── tris.md2 │ │ │ │ ├── debris02 │ │ │ │ │ └── tris.md2 │ │ │ │ ├── debris03 │ │ │ │ │ └── tris.md2 │ │ │ │ ├── debris04 │ │ │ │ │ └── tris.md2 │ │ │ │ ├── masks.jpg │ │ │ │ ├── md2.cfg │ │ │ │ └── skin.jpg │ │ │ ├── flags │ │ │ │ ├── blue │ │ │ │ │ └── skin.jpg │ │ │ │ ├── masks.jpg │ │ │ │ ├── md2.cfg │ │ │ │ ├── neutral │ │ │ │ │ └── skin.jpg │ │ │ │ ├── red │ │ │ │ │ └── skin.jpg │ │ │ │ └── tris.md2 │ │ │ ├── gibs │ │ │ │ ├── gib01 │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── gib02 │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── gib03 │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ └── md2.cfg │ │ │ ├── health │ │ │ │ ├── masks.jpg │ │ │ │ ├── md3.cfg │ │ │ │ ├── skin.jpg │ │ │ │ └── tris.md3 │ │ │ ├── hudguns │ │ │ │ ├── chaing │ │ │ │ │ ├── chaing.md5mesh │ │ │ │ │ ├── chaing_idle.md5anim │ │ │ │ │ ├── chaing_shoot.md5anim │ │ │ │ │ ├── hands_mg_idle.md5anim │ │ │ │ │ ├── hands_mg_shoot.md5anim │ │ │ │ │ ├── m134_normals.png │ │ │ │ │ └── md5.cfg │ │ │ │ ├── fist │ │ │ │ │ ├── chainsaw.md5mesh │ │ │ │ │ ├── chainsaw_attack.md5anim │ │ │ │ │ ├── chainsaw_idle.md5anim │ │ │ │ │ ├── chainsaw_normals.png │ │ │ │ │ ├── hands_saw_attack.md5anim │ │ │ │ │ ├── hands_saw_idle.md5anim │ │ │ │ │ └── md5.cfg │ │ │ │ ├── gl │ │ │ │ │ ├── gl.md5mesh │ │ │ │ │ ├── gl_idle.md5anim │ │ │ │ │ ├── gl_normals.png │ │ │ │ │ ├── gl_shoot.md5anim │ │ │ │ │ ├── hands_gl_idle.md5anim │ │ │ │ │ ├── hands_gl_shoot.md5anim │ │ │ │ │ └── md5.cfg │ │ │ │ ├── pistol │ │ │ │ │ ├── colt_normals.png │ │ │ │ │ ├── hands_revolver_idle.md5anim │ │ │ │ │ ├── hands_revolver_shoot.md5anim │ │ │ │ │ ├── md5.cfg │ │ │ │ │ ├── revolver.md5mesh │ │ │ │ │ ├── revolver_idle.md5anim │ │ │ │ │ └── revolver_shoot.md5anim │ │ │ │ ├── rifle │ │ │ │ │ ├── hands_rifle_idle.md5anim │ │ │ │ │ ├── hands_rifle_shoot.md5anim │ │ │ │ │ ├── md5.cfg │ │ │ │ │ ├── rifle.md5mesh │ │ │ │ │ ├── rifle_idle.md5anim │ │ │ │ │ ├── rifle_shoot.md5anim │ │ │ │ │ └── sniper_normals.png │ │ │ │ ├── rocket │ │ │ │ │ ├── hands_rl_idle.md5anim │ │ │ │ │ ├── hands_rl_shoot.md5anim │ │ │ │ │ ├── md5.cfg │ │ │ │ │ ├── rl.md5mesh │ │ │ │ │ ├── rl_idle.md5anim │ │ │ │ │ ├── rl_normals.png │ │ │ │ │ └── rl_shoot.md5anim │ │ │ │ └── shotg │ │ │ │ │ ├── hands_shotgun_idle.md5anim │ │ │ │ │ ├── hands_shotgun_shoot.md5anim │ │ │ │ │ ├── md5.cfg │ │ │ │ │ ├── shotgun.md5mesh │ │ │ │ │ ├── shotgun_attack.md5anim │ │ │ │ │ ├── shotgun_idle.md5anim │ │ │ │ │ ├── shotgun_normals.png │ │ │ │ │ └── shotgun_shell_normals.png │ │ │ ├── mapmodels │ │ │ │ ├── nieb │ │ │ │ │ ├── sandcastle │ │ │ │ │ │ ├── model.obj │ │ │ │ │ │ └── obj.cfg │ │ │ │ │ ├── sign_no-exit │ │ │ │ │ │ ├── masks.png │ │ │ │ │ │ ├── model.obj │ │ │ │ │ │ ├── obj.cfg │ │ │ │ │ │ └── skin.png │ │ │ │ │ └── torso │ │ │ │ │ │ ├── base.jpg │ │ │ │ │ │ ├── model.obj │ │ │ │ │ │ ├── obj.cfg │ │ │ │ │ │ └── torso.jpg │ │ │ │ └── sitters │ │ │ │ │ └── gothic │ │ │ │ │ ├── skelet1 │ │ │ │ │ ├── bump.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ ├── skin.png │ │ │ │ │ └── tris.md3 │ │ │ │ │ ├── skelet2 │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── tris.md3 │ │ │ │ │ └── skelet3 │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── tris.md3 │ │ │ ├── mrfixit │ │ │ │ ├── anims.cfg │ │ │ │ ├── armor │ │ │ │ │ ├── blue │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── green │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── sabergold_NRM.jpg │ │ │ │ │ ├── sabreskull.md5mesh │ │ │ │ │ └── yellow │ │ │ │ │ │ └── md5.cfg │ │ │ │ ├── backward.md5anim │ │ │ │ ├── blue │ │ │ │ │ └── md5.cfg │ │ │ │ ├── bodynorm.png │ │ │ │ ├── chainsaw_attack.md5anim │ │ │ │ ├── chainsaw_idle.md5anim │ │ │ │ ├── dead.md5anim │ │ │ │ ├── dead2.md5anim │ │ │ │ ├── dying.md5anim │ │ │ │ ├── dying2.md5anim │ │ │ │ ├── edit.md5anim │ │ │ │ ├── forward.md5anim │ │ │ │ ├── gl_idle.md5anim │ │ │ │ ├── gl_shoot.md5anim │ │ │ │ ├── headnorm.png │ │ │ │ ├── horns │ │ │ │ │ ├── horns_norms.jpg │ │ │ │ │ ├── md5.cfg │ │ │ │ │ └── quadhorns.md5mesh │ │ │ │ ├── hudguns │ │ │ │ │ ├── chaing │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── fist │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── fixit_hands.md5mesh │ │ │ │ │ ├── fixit_hands_normals.png │ │ │ │ │ ├── gl │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── md5.cfg │ │ │ │ │ ├── pistol │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── rifle │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ ├── rocket │ │ │ │ │ │ ├── blue │ │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ └── shotg │ │ │ │ │ │ ├── blue │ │ │ │ │ │ └── md5.cfg │ │ │ │ │ │ └── md5.cfg │ │ │ │ ├── idle.md5anim │ │ │ │ ├── jump.md5anim │ │ │ │ ├── lag.md5anim │ │ │ │ ├── left.md5anim │ │ │ │ ├── lose.md5anim │ │ │ │ ├── md5.cfg │ │ │ │ ├── minigun_idle.md5anim │ │ │ │ ├── minigun_shoot.md5anim │ │ │ │ ├── mrfixit.md5mesh │ │ │ │ ├── pain.md5anim │ │ │ │ ├── pain2.md5anim │ │ │ │ ├── ragdoll.cfg │ │ │ │ ├── red │ │ │ │ │ └── md5.cfg │ │ │ │ ├── right.md5anim │ │ │ │ ├── rl_idle.md5anim │ │ │ │ ├── rl_shoot.md5anim │ │ │ │ ├── shoot.md5anim │ │ │ │ ├── shotgun_idle.md5anim │ │ │ │ ├── shotgun_shoot.md5anim │ │ │ │ ├── sink.md5anim │ │ │ │ ├── sniper_idle.md5anim │ │ │ │ ├── sniper_shoot.md5anim │ │ │ │ ├── swim.md5anim │ │ │ │ ├── taunt.md5anim │ │ │ │ └── win.md5anim │ │ │ ├── objects │ │ │ │ ├── bench01 │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── fire │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.png │ │ │ │ │ └── tris.md2 │ │ │ │ ├── lamp01 │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── med_chand │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── torch_cold │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md3 │ │ │ │ ├── well_base │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── well_roof │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── window01 │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ └── woodchop │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ ├── projectiles │ │ │ │ ├── grenade │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md3 │ │ │ │ └── rocket │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md3.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md3 │ │ │ ├── quad │ │ │ │ ├── masks.jpg │ │ │ │ ├── md3.cfg │ │ │ │ ├── skin.jpg │ │ │ │ └── tris.md3 │ │ │ ├── teleporter │ │ │ │ ├── masks.jpg │ │ │ │ ├── md3.cfg │ │ │ │ ├── skin.jpg │ │ │ │ └── tris.md3 │ │ │ ├── tentus │ │ │ │ ├── barrel │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ ├── chains │ │ │ │ │ ├── chain │ │ │ │ │ │ └── tris.md2 │ │ │ │ │ ├── curvechain │ │ │ │ │ │ └── tris.md2 │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ └── skin.jpg │ │ │ │ └── food-drink │ │ │ │ │ ├── meat │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ │ ├── pie │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ │ ├── pieslice │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ │ │ └── winebottle │ │ │ │ │ ├── masks.jpg │ │ │ │ │ ├── md2.cfg │ │ │ │ │ ├── skin.jpg │ │ │ │ │ └── tris.md2 │ │ │ ├── vegetation │ │ │ │ ├── bush01 │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── tris.md3 │ │ │ │ ├── skin_bush1.png │ │ │ │ ├── skin_dead.jpg │ │ │ │ ├── skin_green3.png │ │ │ │ ├── tree01 │ │ │ │ │ └── md3.cfg │ │ │ │ ├── tree02 │ │ │ │ │ ├── md3.cfg │ │ │ │ │ └── tris.md3 │ │ │ │ └── tree09 │ │ │ │ │ └── tris.md3 │ │ │ └── vwep │ │ │ │ ├── chaing │ │ │ │ ├── md5.cfg │ │ │ │ └── minigun_vwep.md5mesh │ │ │ │ ├── fist │ │ │ │ ├── chainsaw_vwep.md5mesh │ │ │ │ └── md5.cfg │ │ │ │ ├── gl │ │ │ │ ├── gl_vwep.md5mesh │ │ │ │ └── md5.cfg │ │ │ │ ├── pistol │ │ │ │ ├── md5.cfg │ │ │ │ └── revolver_vwep.md5mesh │ │ │ │ ├── rifle │ │ │ │ ├── md5.cfg │ │ │ │ └── sniper_vwep.md5mesh │ │ │ │ ├── rocket │ │ │ │ ├── md5.cfg │ │ │ │ └── rl_vwep.md5mesh │ │ │ │ └── shotg │ │ │ │ ├── md5.cfg │ │ │ │ └── shotgun_vwep.md5mesh │ │ │ ├── noctua │ │ │ └── package.cfg │ │ │ ├── painkillah │ │ │ └── package.cfg │ │ │ ├── particles │ │ │ ├── blood.png │ │ │ ├── bullet.png │ │ │ ├── flames.png │ │ │ ├── flare.jpg │ │ │ ├── license.txt │ │ │ ├── scorch.png │ │ │ ├── smoke.png │ │ │ ├── snow.png │ │ │ └── steam.png │ │ │ ├── payne │ │ │ ├── Box12b.jpg │ │ │ ├── package.cfg │ │ │ └── readme.txt │ │ │ ├── philipk │ │ │ └── package.cfg │ │ │ ├── readme.txt │ │ │ ├── rorschach │ │ │ ├── 256_gate_water02.jpg │ │ │ ├── 5_blood01.jpg │ │ │ ├── package2.cfg │ │ │ └── rorschach_readme.txt │ │ │ ├── skyboxes │ │ │ ├── morning_bk.jpg │ │ │ ├── morning_dn.jpg │ │ │ ├── morning_ft.jpg │ │ │ ├── morning_lf.jpg │ │ │ ├── morning_rt.jpg │ │ │ ├── morning_up.jpg │ │ │ └── remus │ │ │ │ ├── readme.txt │ │ │ │ ├── sky01_bk.jpg │ │ │ │ ├── sky01_dn.jpg │ │ │ │ ├── sky01_ft.jpg │ │ │ │ ├── sky01_lf.jpg │ │ │ │ ├── sky01_rt.jpg │ │ │ │ └── sky01_up.jpg │ │ │ ├── sounds │ │ │ ├── aard │ │ │ │ ├── die1.wav │ │ │ │ ├── die2.wav │ │ │ │ ├── itempick.wav │ │ │ │ ├── jump.wav │ │ │ │ ├── land.wav │ │ │ │ ├── outofammo.wav │ │ │ │ ├── pain1.wav │ │ │ │ ├── pain2.wav │ │ │ │ ├── pain3.wav │ │ │ │ ├── pain4.wav │ │ │ │ ├── pain5.wav │ │ │ │ ├── pain6.wav │ │ │ │ └── weapload.wav │ │ │ ├── ambience │ │ │ │ └── wind.ogg │ │ │ ├── blindabuser │ │ │ │ ├── health_boost.ogg │ │ │ │ ├── health_boost_in_10_seconds.ogg │ │ │ │ ├── quad_damage.ogg │ │ │ │ └── quad_damage_in_10_seconds.ogg │ │ │ ├── ctf │ │ │ │ ├── flagdrop.wav │ │ │ │ ├── flagfail.wav │ │ │ │ ├── flagpickup.wav │ │ │ │ ├── flagreturn.wav │ │ │ │ └── flagscore.wav │ │ │ ├── free │ │ │ │ ├── acid5.wav │ │ │ │ ├── acid6.wav │ │ │ │ ├── hit.ogg │ │ │ │ ├── itemback.wav │ │ │ │ ├── itempick.wav │ │ │ │ ├── punch1.wav │ │ │ │ ├── splash1.wav │ │ │ │ ├── splash2.wav │ │ │ │ └── tick.wav │ │ │ ├── kaiser │ │ │ │ └── fx │ │ │ │ │ ├── hum5.wav │ │ │ │ │ └── hum7.wav │ │ │ ├── q009 │ │ │ │ ├── glauncher.ogg │ │ │ │ ├── grenade.ogg │ │ │ │ ├── grenade2.ogg │ │ │ │ ├── grenade3.ogg │ │ │ │ ├── jumppad.ogg │ │ │ │ ├── jumppad2.wav │ │ │ │ ├── minigun.ogg │ │ │ │ ├── minigun2.ogg │ │ │ │ ├── minigun3.ogg │ │ │ │ ├── pistol.ogg │ │ │ │ ├── pistol2.ogg │ │ │ │ ├── pistol3.ogg │ │ │ │ ├── ren.ogg │ │ │ │ ├── ren2.ogg │ │ │ │ ├── ren3.ogg │ │ │ │ ├── rifle.ogg │ │ │ │ ├── rifle2.ogg │ │ │ │ ├── rifle3.ogg │ │ │ │ ├── rlauncher.ogg │ │ │ │ ├── rlauncher2.ogg │ │ │ │ ├── rlauncher3.ogg │ │ │ │ ├── shotgun.ogg │ │ │ │ ├── shotgun2.ogg │ │ │ │ ├── shotgun3.ogg │ │ │ │ └── teleport.ogg │ │ │ ├── readme.txt │ │ │ └── soundsnap │ │ │ │ ├── burn.ogg │ │ │ │ ├── chainsaw_attack.ogg │ │ │ │ ├── chainsaw_idle.ogg │ │ │ │ └── fan.ogg │ │ │ ├── subverse │ │ │ └── package.cfg │ │ │ ├── tech1soc │ │ │ ├── 032-01c.jpg │ │ │ ├── 032-02b.jpg │ │ │ ├── 032-03d.jpg │ │ │ ├── 032-10a.jpg │ │ │ ├── 032-10b.jpg │ │ │ ├── 032-12d.jpg │ │ │ ├── 032-14b.jpg │ │ │ ├── 032-15a.jpg │ │ │ ├── 032-15b.jpg │ │ │ ├── 032lig10bb.jpg │ │ │ ├── 032lig11bb.jpg │ │ │ ├── 032lig11rb.jpg │ │ │ ├── 032lig12bb.jpg │ │ │ ├── 032lig12ya.jpg │ │ │ ├── 032lig20yb.jpg │ │ │ ├── 064-11b.jpg │ │ │ ├── 064-12a.jpg │ │ │ ├── 064-13b.jpg │ │ │ ├── 064-15b.jpg │ │ │ ├── 064-20a.jpg │ │ │ ├── 064-20b.jpg │ │ │ ├── 064-22b.jpg │ │ │ ├── 064lig20bb.jpg │ │ │ ├── 064lig22bb.jpg │ │ │ ├── 128-05b.jpg │ │ │ ├── 128-05c.jpg │ │ │ ├── blank01a.jpg │ │ │ ├── blank01c.jpg │ │ │ ├── blank02a.jpg │ │ │ ├── blank02b.jpg │ │ │ ├── blank03a.jpg │ │ │ ├── blank03d.jpg │ │ │ ├── block01b.jpg │ │ │ ├── block01c.jpg │ │ │ ├── grate1b.jpg │ │ │ ├── grate_brown1.jpg │ │ │ ├── grate_brown3.jpg │ │ │ ├── half_grill_wall01b.jpg │ │ │ ├── half_grill_wall03b.jpg │ │ │ ├── mat4b.jpg │ │ │ ├── met_wall01a.jpg │ │ │ ├── met_wall01c.jpg │ │ │ ├── mix_wall03a.jpg │ │ │ ├── mix_wall03ab.jpg │ │ │ ├── o128-02a.jpg │ │ │ ├── package.cfg │ │ │ ├── panel20c.jpg │ │ │ ├── panel40c.jpg │ │ │ ├── s064-02a.jpg │ │ │ ├── s064-02b.jpg │ │ │ ├── s064-02c.jpg │ │ │ ├── s064-03b.jpg │ │ │ ├── s064-03c.jpg │ │ │ ├── s128-01c.jpg │ │ │ ├── s128-02a.jpg │ │ │ ├── s128-02b.jpg │ │ │ ├── s128-03b.jpg │ │ │ ├── s128-06b.jpg │ │ │ ├── s256-01c.jpg │ │ │ ├── s256-01d.jpg │ │ │ ├── s256-02a.jpg │ │ │ ├── s256-02b.jpg │ │ │ ├── sqrlig02wb.jpg │ │ │ ├── sqrlig03bc.jpg │ │ │ └── tech1soc_readme.txt │ │ │ ├── textures │ │ │ ├── default.png │ │ │ ├── medieval_soc │ │ │ │ └── package.cfg │ │ │ ├── nieb │ │ │ │ ├── autumn │ │ │ │ │ └── package.cfg │ │ │ │ ├── clone │ │ │ │ │ └── package.cfg │ │ │ │ ├── garden │ │ │ │ │ ├── bark1.jpg │ │ │ │ │ ├── base.png │ │ │ │ │ ├── bush1.jpg │ │ │ │ │ ├── fabric.jpg │ │ │ │ │ ├── garden │ │ │ │ │ │ ├── bark1.jpg │ │ │ │ │ │ ├── base.png │ │ │ │ │ │ ├── bush1.jpg │ │ │ │ │ │ ├── fabric.jpg │ │ │ │ │ │ ├── grass1a.jpg │ │ │ │ │ │ ├── grass1b.jpg │ │ │ │ │ │ ├── grass2a.jpg │ │ │ │ │ │ ├── grass2b.jpg │ │ │ │ │ │ ├── metal1.jpg │ │ │ │ │ │ ├── package.cfg │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── sand1.jpg │ │ │ │ │ │ ├── stone10.jpg │ │ │ │ │ │ ├── stone11.jpg │ │ │ │ │ │ ├── stone12.jpg │ │ │ │ │ │ ├── stone13.jpg │ │ │ │ │ │ ├── stone1a.jpg │ │ │ │ │ │ ├── stone1b.jpg │ │ │ │ │ │ ├── stone1c.jpg │ │ │ │ │ │ ├── stone1d.jpg │ │ │ │ │ │ ├── stone2.jpg │ │ │ │ │ │ ├── stone3.jpg │ │ │ │ │ │ ├── stone4.jpg │ │ │ │ │ │ ├── stone5.jpg │ │ │ │ │ │ ├── stone6.jpg │ │ │ │ │ │ ├── stone7.jpg │ │ │ │ │ │ ├── stone8.jpg │ │ │ │ │ │ └── stone9.jpg │ │ │ │ │ ├── grass1a.jpg │ │ │ │ │ ├── grass1b.jpg │ │ │ │ │ ├── grass2a.jpg │ │ │ │ │ ├── grass2b.jpg │ │ │ │ │ ├── metal1.jpg │ │ │ │ │ ├── package.cfg │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── sand1.jpg │ │ │ │ │ ├── stone10.jpg │ │ │ │ │ ├── stone11.jpg │ │ │ │ │ ├── stone12.jpg │ │ │ │ │ ├── stone13.jpg │ │ │ │ │ ├── stone1a.jpg │ │ │ │ │ ├── stone1b.jpg │ │ │ │ │ ├── stone1c.jpg │ │ │ │ │ ├── stone1d.jpg │ │ │ │ │ ├── stone2.jpg │ │ │ │ │ ├── stone3.jpg │ │ │ │ │ ├── stone4.jpg │ │ │ │ │ ├── stone5.jpg │ │ │ │ │ ├── stone6.jpg │ │ │ │ │ ├── stone7.jpg │ │ │ │ │ ├── stone8.jpg │ │ │ │ │ └── stone9.jpg │ │ │ │ ├── package.cfg │ │ │ │ └── suite │ │ │ │ │ └── package.cfg │ │ │ ├── notexture.png │ │ │ ├── sky.png │ │ │ ├── terrain_soc │ │ │ │ ├── package.cfg │ │ │ │ ├── rock_grey2.jpg │ │ │ │ ├── rock_grey3.jpg │ │ │ │ └── terrain_soc_readme.txt │ │ │ ├── waterdudv.jpg │ │ │ ├── waterfall.jpg │ │ │ ├── waterfalldudv.jpg │ │ │ ├── waterfalln.jpg │ │ │ └── watern.jpg │ │ │ ├── than_ind │ │ │ └── package.cfg │ │ │ ├── tomek │ │ │ ├── license.txt │ │ │ ├── package.cfg │ │ │ ├── snow7_d.jpg │ │ │ ├── snow7_h.jpg │ │ │ └── snow7_local.jpg │ │ │ └── trak5 │ │ │ └── package.cfg │ │ ├── java │ │ └── org │ │ │ ├── common │ │ │ └── SDLActivity.java │ │ │ └── cube2 │ │ │ └── app │ │ │ └── Cube2Activity.java │ │ └── res │ │ ├── layout │ │ └── activity_sdl.xml │ │ ├── menu │ │ └── menu_sdl.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── build.properties ├── build.xml____ ├── clean.bat ├── copy_assets.bat ├── default.properties ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jni │ ├── Android.mk │ ├── Application.mk │ └── src │ │ └── Android.mk ├── key │ └── key.jks ├── proguard-project.txt ├── project.properties └── settings.gradle ├── assets.cfg ├── bin ├── LICENSE.FLAC.txt ├── LICENSE.jpeg.txt ├── LICENSE.mikmod.txt ├── LICENSE.ogg-vorbis.txt ├── LICENSE.png.txt ├── LICENSE.smpeg.txt ├── LICENSE.tiff.txt ├── LICENSE.webp.txt ├── LICENSE.zlib.txt ├── README-SDL.txt ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── libFLAC-8.dll ├── libjpeg-9.dll ├── libmikmod-2.dll ├── libmodplug-1.dll ├── libogg-0.dll ├── libpng16-16.dll ├── libtiff-5.dll ├── libvorbis-0.dll ├── libvorbisfile-3.dll ├── libwebp-4.dll ├── libwinpthread-1.dll ├── smpeg2.dll └── zlib1.dll ├── bin64 ├── LICENSE.FLAC.txt ├── LICENSE.jpeg.txt ├── LICENSE.mikmod.txt ├── LICENSE.ogg-vorbis.txt ├── LICENSE.png.txt ├── LICENSE.smpeg.txt ├── LICENSE.tiff.txt ├── LICENSE.webp.txt ├── LICENSE.zlib.txt ├── README-SDL.txt ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── libFLAC-8.dll ├── libjpeg-9.dll ├── libmikmod-2.dll ├── libmodplug-1.dll ├── libogg-0.dll ├── libpng16-16.dll ├── libtiff-5.dll ├── libvorbis-0.dll ├── libvorbisfile-3.dll ├── libwebp-4.dll ├── libwinpthread-1.dll ├── smpeg2.dll └── zlib1.dll ├── docs ├── config.html ├── cube2logo.png ├── dev │ ├── edgespans.gif │ ├── editing1.jpg │ ├── editing2.jpg │ ├── editing3.jpg │ ├── editing4.jpg │ ├── lightmap.png │ ├── readme_developer.txt │ ├── sauerchild.png │ ├── saueredge.png │ ├── saueredge2.png │ ├── sauerlink1b.png │ └── wikistuff.html ├── editing.html ├── editref.html ├── favicon.ico ├── game.html ├── history.html ├── models.html ├── rpg.html └── style.css ├── media_copy.sh ├── rpg.bat ├── sauerbraten.bat ├── sauerbraten_unix ├── screenshot ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── server-init.cfg ├── server.bat └── src ├── Makefile ├── enet ├── ChangeLog ├── LICENSE ├── Makefile ├── README ├── callbacks.c ├── check_cflags.sh ├── 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 ├── engine ├── 3dgui.cpp ├── FileIO.cpp ├── FileIO.h ├── animmodel.h ├── bih.cpp ├── bih.h ├── blend.cpp ├── blob.cpp ├── client.cpp ├── command.cpp ├── console.cpp ├── cubeloader.cpp ├── decal.cpp ├── depthfx.h ├── dynlight.cpp ├── engine.h ├── explosion.h ├── glare.cpp ├── grass.cpp ├── iqm.h ├── lensflare.h ├── lightmap.cpp ├── lightmap.h ├── lightning.h ├── main.cpp ├── master.cpp ├── material.cpp ├── md2.h ├── md3.h ├── md5.h ├── menus.cpp ├── model.h ├── movie.cpp ├── mpr.h ├── normal.cpp ├── obj.h ├── octa.cpp ├── octa.h ├── octaedit.cpp ├── octarender.cpp ├── pch.cpp ├── physics.cpp ├── pvs.cpp ├── ragdoll.h ├── rendergl.cpp ├── rendermodel.cpp ├── renderparticles.cpp ├── rendersky.cpp ├── rendertarget.h ├── rendertext.cpp ├── renderva.cpp ├── scale.h ├── server.cpp ├── serverbrowser.cpp ├── shader.cpp ├── shadowmap.cpp ├── skelmodel.h ├── smd.h ├── sound.cpp ├── textedit.h ├── texture.cpp ├── texture.h ├── vertmodel.h ├── water.cpp ├── world.cpp ├── world.h └── worldio.cpp ├── fpsgame ├── ai.cpp ├── ai.h ├── aiman.h ├── capture.h ├── client.cpp ├── collect.h ├── ctf.h ├── entities.cpp ├── extinfo.h ├── fps.cpp ├── game.h ├── monster.cpp ├── movable.cpp ├── pch.cpp ├── render.cpp ├── scoreboard.cpp ├── server.cpp ├── waypoint.cpp └── weapon.cpp ├── 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_macosx.h ├── SDL_config_win32.h ├── SDL_config_windows.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_image.h ├── SDL_joystick.h ├── SDL_keyboard.h ├── SDL_keycode.h ├── SDL_loadso.h ├── SDL_log.h ├── SDL_main.h ├── SDL_messagebox.h ├── SDL_mixer.h ├── SDL_mouse.h ├── SDL_mutex.h ├── SDL_name.h ├── SDL_opengl.h ├── SDL_opengl_glext.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 ├── zconf.h └── zlib.h ├── lib ├── SDL2.lib ├── SDL2_image.lib ├── SDL2_mixer.lib ├── enet.lib └── zdll.lib ├── lib64 ├── SDL2.lib ├── SDL2_image.lib ├── SDL2_mixer.lib ├── enet.lib └── zdll.lib ├── readme_source.txt ├── rpggame ├── Makefile ├── ent.cpp ├── entities.cpp ├── objset.cpp ├── pch.cpp ├── rpg.cbp ├── rpg.cpp ├── rpg.h ├── rpg.sln ├── rpg.vcxproj ├── rpg.vcxproj.filters ├── rpgent.h ├── rpgobj.h └── stats.h ├── shared ├── command.h ├── crypto.cpp ├── cube.h ├── cube2font.c ├── ents.h ├── geom.cpp ├── geom.h ├── glemu.cpp ├── glemu.h ├── glexts.h ├── iengine.h ├── igame.h ├── pch.cpp ├── stream.cpp ├── tools.cpp ├── tools.h └── zip.cpp ├── vcpp ├── cube2.ico ├── dpiaware.manifest ├── mingw.rc ├── sauerbraten.cbp ├── sauerbraten.depend ├── sauerbraten.layout ├── sauerbraten.nsi ├── sauerbraten.rc ├── sauerbraten.sln ├── sauerbraten.vcxproj └── sauerbraten.vcxproj.filters └── xcode ├── English.lproj ├── InfoPlist.strings └── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── Frameworks ├── SDL.framework │ ├── Headers │ ├── Resources │ ├── SDL │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_dreamcast.h │ │ │ ├── SDL_config_macos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_win32.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── SDLMain.nib │ │ │ │ └── objects.nib │ │ └── SDL │ │ └── Current ├── SDL_image.framework │ ├── Frameworks │ ├── Headers │ ├── Resources │ ├── SDL_image │ └── Versions │ │ ├── A │ │ ├── Frameworks │ │ │ └── webp.framework │ │ │ │ ├── Headers │ │ │ │ ├── LICENSE.webp.txt │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── decode_vp8.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── webp │ │ │ │ └── Current │ │ │ │ └── webp │ │ ├── Headers │ │ │ └── SDL_image.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── SDL_image │ │ └── Current └── SDL_mixer.framework │ ├── Frameworks │ ├── Headers │ ├── Resources │ ├── SDL_mixer │ └── Versions │ ├── A │ ├── Frameworks │ │ ├── FLAC.framework │ │ │ ├── FLAC │ │ │ ├── Headers │ │ │ ├── LICENSE.FLAC.txt │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FLAC │ │ │ │ ├── Headers │ │ │ │ │ └── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Ogg.framework │ │ │ ├── Headers │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── Ogg │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Vorbis.framework │ │ │ ├── Headers │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Vorbis │ │ │ │ └── Current │ │ │ └── Vorbis │ │ ├── mikmod.framework │ │ │ ├── Headers │ │ │ ├── LICENSE.mikmod.txt │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── mikmod.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── mikmod │ │ │ │ └── Current │ │ │ └── mikmod │ │ └── smpeg.framework │ │ │ ├── Headers │ │ │ ├── LICENSE.smpeg.txt │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── MPEG.h │ │ │ │ │ ├── MPEGaction.h │ │ │ │ │ ├── MPEGaudio.h │ │ │ │ │ ├── MPEGerror.h │ │ │ │ │ ├── MPEGfilter.h │ │ │ │ │ ├── MPEGlist.h │ │ │ │ │ ├── MPEGring.h │ │ │ │ │ ├── MPEGstream.h │ │ │ │ │ ├── MPEGsystem.h │ │ │ │ │ ├── MPEGvideo.h │ │ │ │ │ └── smpeg.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── smpeg │ │ │ └── Current │ │ │ └── smpeg │ ├── Headers │ │ └── SDL_mixer.h │ ├── Resources │ │ └── Info.plist │ └── SDL_mixer │ └── Current ├── Launcher.h ├── Launcher.m ├── Maps.icns ├── buildnotes.txt ├── help ├── help idx ├── help.helpindex ├── index.html ├── sauer16.png └── sauer32.png ├── main.m ├── runscript ├── sauerbraten.icns ├── sauerbraten.plist └── sauerbraten.xcodeproj └── project.pbxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/.hgignore -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/.hgtags -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Android.mk -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/BUGS.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/COPYING.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/CREDITS.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/INSTALL.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Makefile.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Makefile.minimal -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Makefile.pandora -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Makefile.psp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Makefile.wiz -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-SDL.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-android.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-cmake.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-directfb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-directfb.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-dynapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-dynapi.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-gesture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-gesture.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-hg.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-ios.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-linux.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-macosx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-macosx.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-pandora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-pandora.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-platforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-platforms.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-porting.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-psp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-psp.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-raspberrypi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-raspberrypi.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-touch.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-wince.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-wince.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README-windows.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/README.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/SDL2.spec -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/SDL2.spec.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/TODO.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC.html -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2010.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2010EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2010EE.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2012.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2012EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2012EE.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/SDL_VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/SDL_VS2013.sln -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/VisualC/clean.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/WhatsNew.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/alsa.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/esd.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/libtool.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/autogen.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/config.sub -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/install-sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/build-scripts/showrev.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/cmake/macros.cmake -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/configure -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/configure.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/changelog -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/control -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/copyright -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/docs -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/libsdl2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/libsdl2.install -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/rules -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/debian/sdl2-config.1 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-android.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-cmake.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-directfb.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-dynapi.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-gesture.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-hg.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-ios.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-linux.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-macosx.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-nacl.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-pandora.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-platforms.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-porting.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-psp.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-touch.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-wince.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-windows.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README-winrt.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/README.md -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/docs/doxyfile -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_bits.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_blendmode.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_clipboard.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_config.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_config.h.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_config_psp.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_egl.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_filesystem.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_gesture.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_hints.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_keycode.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_log.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_messagebox.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_opengles2.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_render.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_revision.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_shape.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_system.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_test.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_test_font.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_test_log.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_test_md5.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_touch.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/begin_code.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/close_code.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/include/doxyfile -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/sdl2-config.cmake.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/sdl2-config.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/sdl2.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/sdl2.pc.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_assert.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_assert_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_hints.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_internal.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/SDL_log.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_events.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_quit.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_touch.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/e_atan2.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/k_tan.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/math_libm.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/math_private.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_atan.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_copysign.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/libm/s_tan.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/power/SDL_power.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/render/SDL_d3dmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/render/SDL_d3dmath.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/render/SDL_d3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/render/SDL_d3dmath.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/render/SDL_render.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/render/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/render/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/render/mmx.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_egl.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_shape.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/SDL_video.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/src/video/x11/edid.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/visualtest/README.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/visualtest/autogen.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/compile -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/visualtest/config.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL/visualtest/configure -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/depcomp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/install-sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/missing -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/Android.mk -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/CHANGES.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/COPYING.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_ImageIO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_ImageIO.m -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_UIImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_UIImage.m -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_bmp.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_gif.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_jpg.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_lbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_lbm.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_pcx.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_png.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_pnm.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_tga.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_tif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_tif.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_webp.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_xcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_xcf.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_xpm.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_xv.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/IMG_xxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/IMG_xxx.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/Makefile.am -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/Makefile.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/README.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/SDL_image.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/Xcode/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- 1 | Versions/Current/webp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/Xcode/package -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/autogen.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/config.guess -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/config.sub -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/configure -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/configure.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/debian/control -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/libsdl2-image-dev.examples: -------------------------------------------------------------------------------- 1 | debian/examples/Makefile 2 | showimage.c 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/debian/rules -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/debian/watch -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/depcomp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/jpeg-9/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-sbit 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-threshold 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libpng-1.6.2/tests/pngvalid-progressive-interlace-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --transform 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/libwebp-0.3.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/tiff-4.0.3/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20120922 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/tiff-4.0.3/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.3 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/tiff-4.0.3/libtiff/libtiff.map: -------------------------------------------------------------------------------- 1 | LIBTIFF_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/external/tiff-4.0.3/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/gcc-fat.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/install-sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/miniz.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/missing -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/showimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/showimage.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_image/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_image/version.rc -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/Android.mk -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/CHANGES.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/COPYING.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/Makefile.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/README.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/SDL_mixer.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/VisualC/external/lib/x64/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/VisualC/external/lib/x86/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/FLAC.framework/FLAC: -------------------------------------------------------------------------------- 1 | Versions/Current/FLAC -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/Ogg -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/Vorbis.framework/Vorbis: -------------------------------------------------------------------------------- 1 | Versions/Current/Vorbis -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/modplug.framework/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/modplug.framework/modplug: -------------------------------------------------------------------------------- 1 | Versions/Current/modplug -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/Frameworks/smpeg2.framework/smpeg2: -------------------------------------------------------------------------------- 1 | Versions/Current/smpeg2 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/Xcode/package -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/autogen.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/configure -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/configure.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/debian/control -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/debian/rules -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/debian/watch -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_flac.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_flac.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_mod.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_mod.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_mp3.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_mp3.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_ogg.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/dynamic_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/dynamic_ogg.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.130.TRACK_missing_INDEX_01_1.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 AUDIO 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.134.TRACK_missing_number.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.135.TRACK_invalid_number_1.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK thhpt! AUDIO 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.136.TRACK_invalid_number_2.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 0 AUDIO 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.137.TRACK_cdda_out_of_range.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 100 AUDIO 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.139.TRACK_missing_type.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 3 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.140.no_TRACKs.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.200.FLAC_leadin_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.201.FLAC_leadin_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in thhpt! 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.202.FLAC_leadin_cdda_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 123 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.231.FLAC_leadout_missing_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.232.FLAC_leadout_illegal_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out thhpt! 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.233.FLAC_leadout_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.234.FLAC_leadout_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 thhpt! 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/flac-1.2.1/test/cuesheets/bad.235.FLAC_leadout_offset_not_211680000.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 211680588 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/libmikmod-3.1.12/dlapi/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = dl_hpux.c dlfcn.h 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/libmikmod-3.1.12/include/mikmod_build.h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/libmikmod-3.1.12/macintosh/mikmod_build.h: -------------------------------------------------------------------------------- 1 | #include "mikmod.h" -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/libmikmod-3.1.12/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/external/libmodplug-0.8.8.4/COPYING: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/fluidsynth.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/fluidsynth.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/gcc-fat.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_aiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_aiff.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_aiff.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_flac.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_flac.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_mp3.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_mp3.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_ogg.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_ogg.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_voc.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/load_voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/load_voc.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/mixer.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_cmd.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_cmd.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_flac.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_flac.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_mad.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_mad.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_mod.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_mod.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_ogg.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/music_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/music_ogg.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/playmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/playmus.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/playwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/playwave.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/timidity/FAQ -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/timidity/mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/timidity/mix.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/timidity/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/timidity/mix.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/version.rc -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/wavestream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/wavestream.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_mixer/wavestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_mixer/wavestream.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/Android.mk -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/CHANGES.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/COPYING.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/Makefile.am -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/Makefile.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/README.txt -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/SDL2_ttf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/SDL2_ttf.pc.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/SDL2_ttf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/SDL2_ttf.spec -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/SDL2_ttf.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/SDL2_ttf.spec.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/SDL_ttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/SDL_ttf.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/SDL_ttf.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/VisualC/clean.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/Xcode/package -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/acinclude/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/acinclude/pkg.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/autogen.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/config.guess -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/config.sub -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/configure -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/configure.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/debian/changelog -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/debian/control -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/debian/copyright -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/debian/rules -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/debian/watch -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/depcomp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/external/freetype-2.4.12/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/gcc-fat.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/glfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/glfont.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/install-sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/missing -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/showfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/showfont.c -------------------------------------------------------------------------------- /3rdparty/SDL/SDL2_ttf/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/SDL/SDL2_ttf/version.rc -------------------------------------------------------------------------------- /3rdparty/glew-1.11.0/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/glew-1.11.0/include/GL/glew.h -------------------------------------------------------------------------------- /3rdparty/glew-1.11.0/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/glew-1.11.0/src/glew.c -------------------------------------------------------------------------------- /3rdparty/glew-1.11.0/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/glew-1.11.0/src/glewinfo.c -------------------------------------------------------------------------------- /3rdparty/glew-1.11.0/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/3rdparty/glew-1.11.0/src/visualinfo.c -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/README -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/README.html -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | android -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/encodings.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/modules.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/1_buid.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/1_buid.bat -------------------------------------------------------------------------------- /android/android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/android.iml -------------------------------------------------------------------------------- /android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/ant.properties -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/app/app.iml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/.gitignore: -------------------------------------------------------------------------------- 1 | jniLibs -------------------------------------------------------------------------------- /android/app/src/main/Assets/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/app/src/main/Assets/config.cfg -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/base/dune.cfg: -------------------------------------------------------------------------------- 1 | causticscale 25 2 | 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/base/forge.txt: -------------------------------------------------------------------------------- 1 | Creative Commons BY-NC 2 | mIscreant 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/base/hidden.txt: -------------------------------------------------------------------------------- 1 | CC-BY-NC flubz0r 2 | http://www.quadropolis.us/node/3279 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/candle/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/cart/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 2 | mdlbb 8 8 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/cask/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 2 | mdlellipsecollide 1 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/chandelier/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/firebowl/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlcollide 0 2 | mdlspec 100 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/ivy/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 80 2 | mdlcollide 0 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/leafs/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 80 2 | mdlcollide 0 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/mushroom/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 55 2 | mdlcollide 0 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/dcp/sack/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 30 2 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/debris/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlalphadepth 0 2 | 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/objects/bench01/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 50 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/objects/well_base/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlcollide 0 2 | mdlspec 100 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/objects/well_roof/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlcollide 0 2 | mdlspec 100 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/objects/window01/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/barrel/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 2 | mdlellipsecollide 1 3 | -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/chains/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 2 | mdlcollide 0 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/food-drink/meat/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/food-drink/pie/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 125 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/food-drink/pieslice/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 125 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/models/tentus/food-drink/winebottle/md2.cfg: -------------------------------------------------------------------------------- 1 | mdlspec 100 -------------------------------------------------------------------------------- /android/app/src/main/Assets/packages/tomek/license.txt: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution 2 | 3 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/build.properties -------------------------------------------------------------------------------- /android/build.xml____: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/build.xml____ -------------------------------------------------------------------------------- /android/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/clean.bat -------------------------------------------------------------------------------- /android/copy_assets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/copy_assets.bat -------------------------------------------------------------------------------- /android/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/default.properties -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /android/jni/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/jni/src/Android.mk -------------------------------------------------------------------------------- /android/key/key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/key/key.jks -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/assets.cfg -------------------------------------------------------------------------------- /bin/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /bin/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /bin/LICENSE.mikmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.mikmod.txt -------------------------------------------------------------------------------- /bin/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /bin/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.png.txt -------------------------------------------------------------------------------- /bin/LICENSE.smpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.smpeg.txt -------------------------------------------------------------------------------- /bin/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.tiff.txt -------------------------------------------------------------------------------- /bin/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.webp.txt -------------------------------------------------------------------------------- /bin/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/LICENSE.zlib.txt -------------------------------------------------------------------------------- /bin/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/README-SDL.txt -------------------------------------------------------------------------------- /bin/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/SDL2.dll -------------------------------------------------------------------------------- /bin/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/SDL2_image.dll -------------------------------------------------------------------------------- /bin/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/SDL2_mixer.dll -------------------------------------------------------------------------------- /bin/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libFLAC-8.dll -------------------------------------------------------------------------------- /bin/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libjpeg-9.dll -------------------------------------------------------------------------------- /bin/libmikmod-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libmikmod-2.dll -------------------------------------------------------------------------------- /bin/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libmodplug-1.dll -------------------------------------------------------------------------------- /bin/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libogg-0.dll -------------------------------------------------------------------------------- /bin/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libpng16-16.dll -------------------------------------------------------------------------------- /bin/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libtiff-5.dll -------------------------------------------------------------------------------- /bin/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libvorbis-0.dll -------------------------------------------------------------------------------- /bin/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libvorbisfile-3.dll -------------------------------------------------------------------------------- /bin/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libwebp-4.dll -------------------------------------------------------------------------------- /bin/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/libwinpthread-1.dll -------------------------------------------------------------------------------- /bin/smpeg2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/smpeg2.dll -------------------------------------------------------------------------------- /bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin/zlib1.dll -------------------------------------------------------------------------------- /bin64/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /bin64/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /bin64/LICENSE.mikmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.mikmod.txt -------------------------------------------------------------------------------- /bin64/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /bin64/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.png.txt -------------------------------------------------------------------------------- /bin64/LICENSE.smpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.smpeg.txt -------------------------------------------------------------------------------- /bin64/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.tiff.txt -------------------------------------------------------------------------------- /bin64/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.webp.txt -------------------------------------------------------------------------------- /bin64/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/LICENSE.zlib.txt -------------------------------------------------------------------------------- /bin64/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/README-SDL.txt -------------------------------------------------------------------------------- /bin64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/SDL2.dll -------------------------------------------------------------------------------- /bin64/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/SDL2_image.dll -------------------------------------------------------------------------------- /bin64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/SDL2_mixer.dll -------------------------------------------------------------------------------- /bin64/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libFLAC-8.dll -------------------------------------------------------------------------------- /bin64/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libjpeg-9.dll -------------------------------------------------------------------------------- /bin64/libmikmod-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libmikmod-2.dll -------------------------------------------------------------------------------- /bin64/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libmodplug-1.dll -------------------------------------------------------------------------------- /bin64/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libogg-0.dll -------------------------------------------------------------------------------- /bin64/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libpng16-16.dll -------------------------------------------------------------------------------- /bin64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libtiff-5.dll -------------------------------------------------------------------------------- /bin64/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libvorbis-0.dll -------------------------------------------------------------------------------- /bin64/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libvorbisfile-3.dll -------------------------------------------------------------------------------- /bin64/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libwebp-4.dll -------------------------------------------------------------------------------- /bin64/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/libwinpthread-1.dll -------------------------------------------------------------------------------- /bin64/smpeg2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/smpeg2.dll -------------------------------------------------------------------------------- /bin64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/bin64/zlib1.dll -------------------------------------------------------------------------------- /docs/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/config.html -------------------------------------------------------------------------------- /docs/cube2logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/cube2logo.png -------------------------------------------------------------------------------- /docs/dev/edgespans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/edgespans.gif -------------------------------------------------------------------------------- /docs/dev/editing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/editing1.jpg -------------------------------------------------------------------------------- /docs/dev/editing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/editing2.jpg -------------------------------------------------------------------------------- /docs/dev/editing3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/editing3.jpg -------------------------------------------------------------------------------- /docs/dev/editing4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/editing4.jpg -------------------------------------------------------------------------------- /docs/dev/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/lightmap.png -------------------------------------------------------------------------------- /docs/dev/readme_developer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/readme_developer.txt -------------------------------------------------------------------------------- /docs/dev/sauerchild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/sauerchild.png -------------------------------------------------------------------------------- /docs/dev/saueredge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/saueredge.png -------------------------------------------------------------------------------- /docs/dev/saueredge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/saueredge2.png -------------------------------------------------------------------------------- /docs/dev/sauerlink1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/sauerlink1b.png -------------------------------------------------------------------------------- /docs/dev/wikistuff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/dev/wikistuff.html -------------------------------------------------------------------------------- /docs/editing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/editing.html -------------------------------------------------------------------------------- /docs/editref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/editref.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/game.html -------------------------------------------------------------------------------- /docs/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/history.html -------------------------------------------------------------------------------- /docs/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/models.html -------------------------------------------------------------------------------- /docs/rpg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/rpg.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/docs/style.css -------------------------------------------------------------------------------- /media_copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/media_copy.sh -------------------------------------------------------------------------------- /rpg.bat: -------------------------------------------------------------------------------- 1 | bin\rpg.exe -q"$HOME\My Games\Sauerbraten" -grpg-log.txt -r %* 2 | 3 | -------------------------------------------------------------------------------- /sauerbraten.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/sauerbraten.bat -------------------------------------------------------------------------------- /sauerbraten_unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/sauerbraten_unix -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/10.png -------------------------------------------------------------------------------- /screenshot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/11.png -------------------------------------------------------------------------------- /screenshot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/12.png -------------------------------------------------------------------------------- /screenshot/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/13.png -------------------------------------------------------------------------------- /screenshot/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/14.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/screenshot/9.png -------------------------------------------------------------------------------- /server-init.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/server-init.cfg -------------------------------------------------------------------------------- /server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/server.bat -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/enet/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/ChangeLog -------------------------------------------------------------------------------- /src/enet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/LICENSE -------------------------------------------------------------------------------- /src/enet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/Makefile -------------------------------------------------------------------------------- /src/enet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/README -------------------------------------------------------------------------------- /src/enet/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/callbacks.c -------------------------------------------------------------------------------- /src/enet/check_cflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/check_cflags.sh -------------------------------------------------------------------------------- /src/enet/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/compress.c -------------------------------------------------------------------------------- /src/enet/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/host.c -------------------------------------------------------------------------------- /src/enet/include/enet/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/callbacks.h -------------------------------------------------------------------------------- /src/enet/include/enet/enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/enet.h -------------------------------------------------------------------------------- /src/enet/include/enet/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/list.h -------------------------------------------------------------------------------- /src/enet/include/enet/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/protocol.h -------------------------------------------------------------------------------- /src/enet/include/enet/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/time.h -------------------------------------------------------------------------------- /src/enet/include/enet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/types.h -------------------------------------------------------------------------------- /src/enet/include/enet/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/unix.h -------------------------------------------------------------------------------- /src/enet/include/enet/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/utility.h -------------------------------------------------------------------------------- /src/enet/include/enet/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/include/enet/win32.h -------------------------------------------------------------------------------- /src/enet/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/list.c -------------------------------------------------------------------------------- /src/enet/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/packet.c -------------------------------------------------------------------------------- /src/enet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/peer.c -------------------------------------------------------------------------------- /src/enet/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/protocol.c -------------------------------------------------------------------------------- /src/enet/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/unix.c -------------------------------------------------------------------------------- /src/enet/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/enet/win32.c -------------------------------------------------------------------------------- /src/engine/3dgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/3dgui.cpp -------------------------------------------------------------------------------- /src/engine/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/FileIO.cpp -------------------------------------------------------------------------------- /src/engine/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/FileIO.h -------------------------------------------------------------------------------- /src/engine/animmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/animmodel.h -------------------------------------------------------------------------------- /src/engine/bih.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/bih.cpp -------------------------------------------------------------------------------- /src/engine/bih.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/bih.h -------------------------------------------------------------------------------- /src/engine/blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/blend.cpp -------------------------------------------------------------------------------- /src/engine/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/blob.cpp -------------------------------------------------------------------------------- /src/engine/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/client.cpp -------------------------------------------------------------------------------- /src/engine/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/command.cpp -------------------------------------------------------------------------------- /src/engine/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/console.cpp -------------------------------------------------------------------------------- /src/engine/cubeloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/cubeloader.cpp -------------------------------------------------------------------------------- /src/engine/decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/decal.cpp -------------------------------------------------------------------------------- /src/engine/depthfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/depthfx.h -------------------------------------------------------------------------------- /src/engine/dynlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/dynlight.cpp -------------------------------------------------------------------------------- /src/engine/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/engine.h -------------------------------------------------------------------------------- /src/engine/explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/explosion.h -------------------------------------------------------------------------------- /src/engine/glare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/glare.cpp -------------------------------------------------------------------------------- /src/engine/grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/grass.cpp -------------------------------------------------------------------------------- /src/engine/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/iqm.h -------------------------------------------------------------------------------- /src/engine/lensflare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/lensflare.h -------------------------------------------------------------------------------- /src/engine/lightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/lightmap.cpp -------------------------------------------------------------------------------- /src/engine/lightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/lightmap.h -------------------------------------------------------------------------------- /src/engine/lightning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/lightning.h -------------------------------------------------------------------------------- /src/engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/main.cpp -------------------------------------------------------------------------------- /src/engine/master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/master.cpp -------------------------------------------------------------------------------- /src/engine/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/material.cpp -------------------------------------------------------------------------------- /src/engine/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/md2.h -------------------------------------------------------------------------------- /src/engine/md3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/md3.h -------------------------------------------------------------------------------- /src/engine/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/md5.h -------------------------------------------------------------------------------- /src/engine/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/menus.cpp -------------------------------------------------------------------------------- /src/engine/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/model.h -------------------------------------------------------------------------------- /src/engine/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/movie.cpp -------------------------------------------------------------------------------- /src/engine/mpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/mpr.h -------------------------------------------------------------------------------- /src/engine/normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/normal.cpp -------------------------------------------------------------------------------- /src/engine/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/obj.h -------------------------------------------------------------------------------- /src/engine/octa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/octa.cpp -------------------------------------------------------------------------------- /src/engine/octa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/octa.h -------------------------------------------------------------------------------- /src/engine/octaedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/octaedit.cpp -------------------------------------------------------------------------------- /src/engine/octarender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/octarender.cpp -------------------------------------------------------------------------------- /src/engine/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "engine.h" 2 | 3 | -------------------------------------------------------------------------------- /src/engine/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/physics.cpp -------------------------------------------------------------------------------- /src/engine/pvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/pvs.cpp -------------------------------------------------------------------------------- /src/engine/ragdoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/ragdoll.h -------------------------------------------------------------------------------- /src/engine/rendergl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/rendergl.cpp -------------------------------------------------------------------------------- /src/engine/rendermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/rendermodel.cpp -------------------------------------------------------------------------------- /src/engine/renderparticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/renderparticles.cpp -------------------------------------------------------------------------------- /src/engine/rendersky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/rendersky.cpp -------------------------------------------------------------------------------- /src/engine/rendertarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/rendertarget.h -------------------------------------------------------------------------------- /src/engine/rendertext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/rendertext.cpp -------------------------------------------------------------------------------- /src/engine/renderva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/renderva.cpp -------------------------------------------------------------------------------- /src/engine/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/scale.h -------------------------------------------------------------------------------- /src/engine/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/server.cpp -------------------------------------------------------------------------------- /src/engine/serverbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/serverbrowser.cpp -------------------------------------------------------------------------------- /src/engine/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/shader.cpp -------------------------------------------------------------------------------- /src/engine/shadowmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/shadowmap.cpp -------------------------------------------------------------------------------- /src/engine/skelmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/skelmodel.h -------------------------------------------------------------------------------- /src/engine/smd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/smd.h -------------------------------------------------------------------------------- /src/engine/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/sound.cpp -------------------------------------------------------------------------------- /src/engine/textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/textedit.h -------------------------------------------------------------------------------- /src/engine/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/texture.cpp -------------------------------------------------------------------------------- /src/engine/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/texture.h -------------------------------------------------------------------------------- /src/engine/vertmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/vertmodel.h -------------------------------------------------------------------------------- /src/engine/water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/water.cpp -------------------------------------------------------------------------------- /src/engine/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/world.cpp -------------------------------------------------------------------------------- /src/engine/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/world.h -------------------------------------------------------------------------------- /src/engine/worldio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/engine/worldio.cpp -------------------------------------------------------------------------------- /src/fpsgame/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/ai.cpp -------------------------------------------------------------------------------- /src/fpsgame/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/ai.h -------------------------------------------------------------------------------- /src/fpsgame/aiman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/aiman.h -------------------------------------------------------------------------------- /src/fpsgame/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/capture.h -------------------------------------------------------------------------------- /src/fpsgame/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/client.cpp -------------------------------------------------------------------------------- /src/fpsgame/collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/collect.h -------------------------------------------------------------------------------- /src/fpsgame/ctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/ctf.h -------------------------------------------------------------------------------- /src/fpsgame/entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/entities.cpp -------------------------------------------------------------------------------- /src/fpsgame/extinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/extinfo.h -------------------------------------------------------------------------------- /src/fpsgame/fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/fps.cpp -------------------------------------------------------------------------------- /src/fpsgame/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/game.h -------------------------------------------------------------------------------- /src/fpsgame/monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/monster.cpp -------------------------------------------------------------------------------- /src/fpsgame/movable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/movable.cpp -------------------------------------------------------------------------------- /src/fpsgame/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | 3 | -------------------------------------------------------------------------------- /src/fpsgame/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/render.cpp -------------------------------------------------------------------------------- /src/fpsgame/scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/scoreboard.cpp -------------------------------------------------------------------------------- /src/fpsgame/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/server.cpp -------------------------------------------------------------------------------- /src/fpsgame/waypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/waypoint.cpp -------------------------------------------------------------------------------- /src/fpsgame/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/fpsgame/weapon.cpp -------------------------------------------------------------------------------- /src/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL.h -------------------------------------------------------------------------------- /src/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_assert.h -------------------------------------------------------------------------------- /src/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_atomic.h -------------------------------------------------------------------------------- /src/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_audio.h -------------------------------------------------------------------------------- /src/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_bits.h -------------------------------------------------------------------------------- /src/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_blendmode.h -------------------------------------------------------------------------------- /src/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_clipboard.h -------------------------------------------------------------------------------- /src/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_config.h -------------------------------------------------------------------------------- /src/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /src/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_config_win32.h -------------------------------------------------------------------------------- /src/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_config_windows.h -------------------------------------------------------------------------------- /src/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_copying.h -------------------------------------------------------------------------------- /src/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /src/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_endian.h -------------------------------------------------------------------------------- /src/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_error.h -------------------------------------------------------------------------------- /src/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_events.h -------------------------------------------------------------------------------- /src/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_filesystem.h -------------------------------------------------------------------------------- /src/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /src/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_gesture.h -------------------------------------------------------------------------------- /src/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_haptic.h -------------------------------------------------------------------------------- /src/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_hints.h -------------------------------------------------------------------------------- /src/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_image.h -------------------------------------------------------------------------------- /src/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_joystick.h -------------------------------------------------------------------------------- /src/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_keyboard.h -------------------------------------------------------------------------------- /src/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_keycode.h -------------------------------------------------------------------------------- /src/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_loadso.h -------------------------------------------------------------------------------- /src/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_log.h -------------------------------------------------------------------------------- /src/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_main.h -------------------------------------------------------------------------------- /src/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_messagebox.h -------------------------------------------------------------------------------- /src/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_mixer.h -------------------------------------------------------------------------------- /src/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_mouse.h -------------------------------------------------------------------------------- /src/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_mutex.h -------------------------------------------------------------------------------- /src/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_name.h -------------------------------------------------------------------------------- /src/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_opengl.h -------------------------------------------------------------------------------- /src/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /src/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_pixels.h -------------------------------------------------------------------------------- /src/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_platform.h -------------------------------------------------------------------------------- /src/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_power.h -------------------------------------------------------------------------------- /src/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_quit.h -------------------------------------------------------------------------------- /src/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_rect.h -------------------------------------------------------------------------------- /src/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_render.h -------------------------------------------------------------------------------- /src/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_revision.h -------------------------------------------------------------------------------- /src/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_rwops.h -------------------------------------------------------------------------------- /src/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_scancode.h -------------------------------------------------------------------------------- /src/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_shape.h -------------------------------------------------------------------------------- /src/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_stdinc.h -------------------------------------------------------------------------------- /src/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_surface.h -------------------------------------------------------------------------------- /src/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_system.h -------------------------------------------------------------------------------- /src/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_syswm.h -------------------------------------------------------------------------------- /src/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_thread.h -------------------------------------------------------------------------------- /src/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_timer.h -------------------------------------------------------------------------------- /src/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_touch.h -------------------------------------------------------------------------------- /src/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_types.h -------------------------------------------------------------------------------- /src/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_version.h -------------------------------------------------------------------------------- /src/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/SDL_video.h -------------------------------------------------------------------------------- /src/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/begin_code.h -------------------------------------------------------------------------------- /src/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/close_code.h -------------------------------------------------------------------------------- /src/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/zconf.h -------------------------------------------------------------------------------- /src/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/include/zlib.h -------------------------------------------------------------------------------- /src/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib/SDL2.lib -------------------------------------------------------------------------------- /src/lib/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib/SDL2_image.lib -------------------------------------------------------------------------------- /src/lib/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib/SDL2_mixer.lib -------------------------------------------------------------------------------- /src/lib/enet.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib/enet.lib -------------------------------------------------------------------------------- /src/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib/zdll.lib -------------------------------------------------------------------------------- /src/lib64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib64/SDL2.lib -------------------------------------------------------------------------------- /src/lib64/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib64/SDL2_image.lib -------------------------------------------------------------------------------- /src/lib64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib64/SDL2_mixer.lib -------------------------------------------------------------------------------- /src/lib64/enet.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib64/enet.lib -------------------------------------------------------------------------------- /src/lib64/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/lib64/zdll.lib -------------------------------------------------------------------------------- /src/readme_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/readme_source.txt -------------------------------------------------------------------------------- /src/rpggame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/Makefile -------------------------------------------------------------------------------- /src/rpggame/ent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/ent.cpp -------------------------------------------------------------------------------- /src/rpggame/entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/entities.cpp -------------------------------------------------------------------------------- /src/rpggame/objset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/objset.cpp -------------------------------------------------------------------------------- /src/rpggame/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "rpg.h" 2 | 3 | -------------------------------------------------------------------------------- /src/rpggame/rpg.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.cbp -------------------------------------------------------------------------------- /src/rpggame/rpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.cpp -------------------------------------------------------------------------------- /src/rpggame/rpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.h -------------------------------------------------------------------------------- /src/rpggame/rpg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.sln -------------------------------------------------------------------------------- /src/rpggame/rpg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.vcxproj -------------------------------------------------------------------------------- /src/rpggame/rpg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpg.vcxproj.filters -------------------------------------------------------------------------------- /src/rpggame/rpgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpgent.h -------------------------------------------------------------------------------- /src/rpggame/rpgobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/rpgobj.h -------------------------------------------------------------------------------- /src/rpggame/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/rpggame/stats.h -------------------------------------------------------------------------------- /src/shared/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/command.h -------------------------------------------------------------------------------- /src/shared/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/crypto.cpp -------------------------------------------------------------------------------- /src/shared/cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/cube.h -------------------------------------------------------------------------------- /src/shared/cube2font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/cube2font.c -------------------------------------------------------------------------------- /src/shared/ents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/ents.h -------------------------------------------------------------------------------- /src/shared/geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/geom.cpp -------------------------------------------------------------------------------- /src/shared/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/geom.h -------------------------------------------------------------------------------- /src/shared/glemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/glemu.cpp -------------------------------------------------------------------------------- /src/shared/glemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/glemu.h -------------------------------------------------------------------------------- /src/shared/glexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/glexts.h -------------------------------------------------------------------------------- /src/shared/iengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/iengine.h -------------------------------------------------------------------------------- /src/shared/igame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/igame.h -------------------------------------------------------------------------------- /src/shared/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "cube.h" 2 | -------------------------------------------------------------------------------- /src/shared/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/stream.cpp -------------------------------------------------------------------------------- /src/shared/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/tools.cpp -------------------------------------------------------------------------------- /src/shared/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/tools.h -------------------------------------------------------------------------------- /src/shared/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/shared/zip.cpp -------------------------------------------------------------------------------- /src/vcpp/cube2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/cube2.ico -------------------------------------------------------------------------------- /src/vcpp/dpiaware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/dpiaware.manifest -------------------------------------------------------------------------------- /src/vcpp/mingw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/mingw.rc -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.cbp -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.depend -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.layout -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.nsi -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.rc -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.sln -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.vcxproj -------------------------------------------------------------------------------- /src/vcpp/sauerbraten.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/vcpp/sauerbraten.vcxproj.filters -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL.framework/SDL: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/SDL_image: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL_image -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Versions/A/Frameworks/webp.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Versions/A/Frameworks/webp.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Versions/A/Frameworks/webp.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Versions/A/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- 1 | Versions/Current/webp -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_image.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/SDL_mixer: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL_mixer -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/FLAC: -------------------------------------------------------------------------------- 1 | Versions/Current/FLAC -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/Ogg -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Vorbis: -------------------------------------------------------------------------------- 1 | Versions/Current/Vorbis -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/mikmod.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/mikmod.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/mikmod.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/mikmod.framework/mikmod: -------------------------------------------------------------------------------- 1 | Versions/Current/mikmod -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/smpeg: -------------------------------------------------------------------------------- 1 | Versions/Current/smpeg -------------------------------------------------------------------------------- /src/xcode/Frameworks/SDL_mixer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/xcode/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/Launcher.h -------------------------------------------------------------------------------- /src/xcode/Launcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/Launcher.m -------------------------------------------------------------------------------- /src/xcode/Maps.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/Maps.icns -------------------------------------------------------------------------------- /src/xcode/buildnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/buildnotes.txt -------------------------------------------------------------------------------- /src/xcode/help/help idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/help/help idx -------------------------------------------------------------------------------- /src/xcode/help/help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/help/help.helpindex -------------------------------------------------------------------------------- /src/xcode/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/help/index.html -------------------------------------------------------------------------------- /src/xcode/help/sauer16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/help/sauer16.png -------------------------------------------------------------------------------- /src/xcode/help/sauer32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/help/sauer32.png -------------------------------------------------------------------------------- /src/xcode/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/main.m -------------------------------------------------------------------------------- /src/xcode/runscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/runscript -------------------------------------------------------------------------------- /src/xcode/sauerbraten.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/sauerbraten.icns -------------------------------------------------------------------------------- /src/xcode/sauerbraten.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realuptime/sauerbraten_android/HEAD/src/xcode/sauerbraten.plist --------------------------------------------------------------------------------