├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android_gzdoom ├── new │ ├── Android.mk │ ├── Android_bzip2.mk │ ├── Android_dumb.mk │ ├── Android_gdtoa.mk │ ├── Android_gme.mk │ ├── Android_lzma.mk │ ├── Android_output_sdl.mk │ ├── Android_src.mk │ └── src │ │ ├── android │ │ ├── android-jni.cpp │ │ ├── extrafiles │ │ │ ├── arith.h │ │ │ ├── gd_qnan.h │ │ │ ├── gitinfo.h │ │ │ ├── sc_man_scanner.h │ │ │ ├── xlat_parser.c │ │ │ └── xlat_parser.h │ │ ├── in_android.cpp │ │ └── in_android.h │ │ ├── gl │ │ └── api │ │ │ ├── gl_api.cpp │ │ │ ├── gl_api.h │ │ │ ├── glext.h │ │ │ └── wglext.h │ │ └── sound │ │ ├── fmodsound_studio.cpp │ │ └── fmodsound_studio.h └── patches │ └── src │ ├── am_map.cpp │ ├── c_console.cpp │ ├── d_iwad.cpp │ ├── d_main.cpp │ ├── g_game.cpp │ ├── gl │ ├── data │ │ ├── gl_vertexbuffer.cpp │ │ └── gl_vertexbuffer.h │ ├── dynlights │ │ ├── a_dynlight.cpp │ │ ├── gl_dynlight.h │ │ ├── gl_dynlight1.cpp │ │ ├── gl_lightbuffer.cpp │ │ └── gl_lightbuffer.h │ ├── models │ │ ├── gl_models.cpp │ │ ├── gl_models.h │ │ ├── gl_models_md2.cpp │ │ ├── gl_models_md3.cpp │ │ └── gl_voxels.cpp │ ├── renderer │ │ ├── gl_colormap.h │ │ ├── gl_lightdata.cpp │ │ ├── gl_lightdata.h │ │ ├── gl_renderer.cpp │ │ ├── gl_renderer.h │ │ ├── gl_renderstate.cpp │ │ └── gl_renderstate.h │ ├── scene │ │ ├── gl_decal.cpp │ │ ├── gl_drawinfo.cpp │ │ ├── gl_drawinfo.h │ │ ├── gl_fakeflat.cpp │ │ ├── gl_flats.cpp │ │ ├── gl_portal.cpp │ │ ├── gl_portal.h │ │ ├── gl_renderhacks.cpp │ │ ├── gl_scene.cpp │ │ ├── gl_sky.cpp │ │ ├── gl_skydome.cpp │ │ ├── gl_sprite.cpp │ │ ├── gl_spritelight.cpp │ │ ├── gl_vertex.cpp │ │ ├── gl_wall.h │ │ ├── gl_walls.cpp │ │ ├── gl_walls_draw.cpp │ │ └── gl_weapon.cpp │ ├── shaders │ │ ├── gl_shader.cpp │ │ └── gl_shader.h │ ├── system │ │ ├── gl_cvars.h │ │ ├── gl_framebuffer.cpp │ │ ├── gl_interface.cpp │ │ ├── gl_interface.h │ │ ├── gl_system.h │ │ └── gl_wipe.cpp │ └── textures │ │ ├── gl_bitmap.cpp │ │ ├── gl_bitmap.h │ │ ├── gl_hwtexture.cpp │ │ ├── gl_hwtexture.h │ │ ├── gl_material.cpp │ │ ├── gl_material.h │ │ ├── gl_texture.cpp │ │ └── gl_texture.h │ ├── m_alloc.cpp │ ├── m_specialpaths.cpp │ ├── menu │ ├── loadsavemenu.cpp │ ├── menuinput.cpp │ └── optionmenuitems.h │ ├── nodebuild_utility.cpp │ ├── p_acs.cpp │ ├── p_enemy.cpp │ ├── p_udmf.cpp │ ├── r_defs.h │ ├── r_things.cpp │ ├── sdl │ ├── i_input.cpp │ ├── i_main.cpp │ ├── i_system.cpp │ └── i_system.h │ ├── sound │ ├── i_music.cpp │ ├── i_sound.cpp │ ├── music_fluidsynth_mididevice.cpp │ └── music_midi_timidity.cpp │ ├── tables.h │ ├── tempfiles.cpp │ ├── textures │ └── textures.h │ ├── thingdef │ ├── thingdef.h │ ├── thingdef_codeptr.cpp │ └── thingdef_function.cpp │ ├── v_text.cpp │ └── zstrformat.cpp ├── diff.sh ├── doom ├── build.gradle ├── libs │ └── fmod.jar └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── Custom_1.png │ ├── Custom_2.png │ ├── Custom_3.png │ ├── Custom_4.png │ ├── Custom_5.png │ ├── Custom_6.png │ ├── Custom_Show.png │ ├── arrow_down.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── arrow_up.png │ ├── crouch.png │ ├── enter.png │ ├── f1.png │ ├── f10.png │ ├── gamma.png │ ├── gzdoom.pk3 │ ├── gzdoom.sf2 │ ├── inv.png │ ├── jump.png │ ├── key_+.png │ ├── key_-.png │ ├── key_0.png │ ├── key_1.png │ ├── key_2.png │ ├── key_3.png │ ├── key_4.png │ ├── key_5.png │ ├── key_6.png │ ├── key_7.png │ ├── key_8.png │ ├── key_9.png │ ├── key_a.png │ ├── key_f1.png │ ├── key_f10.png │ ├── keyboard.png │ ├── load.png │ ├── look_arrow.png │ ├── map.png │ ├── next_weap.png │ ├── prev_weap.png │ ├── red_cross.png │ ├── save.png │ ├── settings.png │ ├── settings_bars.png │ ├── shoot.png │ ├── shoot_alt.png │ ├── show_weapons.png │ ├── strafe_arrow.png │ ├── use.png │ └── weapon_wheel.png │ ├── java │ ├── com │ │ └── beloko │ │ │ └── libsdl │ │ │ └── SDLLib.java │ ├── net │ │ └── nullsum │ │ │ └── doom │ │ │ ├── AppSettings.java │ │ │ ├── BestEglChooser.java │ │ │ ├── DirectoryChooserDialog.java │ │ │ ├── EntryActivity.java │ │ │ ├── Game.java │ │ │ ├── LaunchFragmentGZdoom.java │ │ │ ├── ModSelectDialog.java │ │ │ ├── MyGLSurfaceView.java │ │ │ ├── NativeLib.java │ │ │ ├── OptionsFragment.java │ │ │ ├── SingleMediaScanner.java │ │ │ └── Utils.java │ └── org │ │ └── libsdl │ │ └── app │ │ ├── SDLActivity.java │ │ └── SDLActivity.java_2.0.3 │ ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── FMOD_studio │ │ ├── Android.mk │ │ └── api │ │ │ ├── fsbank │ │ │ ├── inc │ │ │ │ ├── fsbank.h │ │ │ │ └── fsbank_errors.h │ │ │ └── lib │ │ │ │ ├── celt_encoder.dll │ │ │ │ ├── celt_encoder64.dll │ │ │ │ ├── fsbank.dll │ │ │ │ ├── fsbank64.dll │ │ │ │ ├── fsbank64_vc.lib │ │ │ │ ├── fsbank_vc.lib │ │ │ │ ├── libmp3lame.dll │ │ │ │ ├── libmp3lame64.dll │ │ │ │ ├── libogg.dll │ │ │ │ ├── libogg64.dll │ │ │ │ ├── libvorbis.dll │ │ │ │ ├── libvorbis64.dll │ │ │ │ ├── libvorbisfile.dll │ │ │ │ ├── libvorbisfile64.dll │ │ │ │ ├── twolame.dll │ │ │ │ └── twolame64.dll │ │ │ ├── lowlevel │ │ │ ├── examples │ │ │ │ ├── 3d.cpp │ │ │ │ ├── channel_groups.cpp │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── common_platform.cpp │ │ │ │ ├── common_platform.h │ │ │ │ ├── convolution_reverb.cpp │ │ │ │ ├── dsp_custom.cpp │ │ │ │ ├── dsp_effect_per_speaker.cpp │ │ │ │ ├── dsp_inspector.cpp │ │ │ │ ├── eclipse │ │ │ │ │ ├── 3d │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── channel_groups │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── convolution_reverb │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── dsp_custom │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── dsp_effect_per_speaker │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── dsp_inspector │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── gapless_playback │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── generate_tone │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── granular_synth │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── load_from_memory │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── multiple_speaker │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── multiple_system │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── net_stream │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── play_sound │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── play_stream │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ ├── record │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ │ └── user_created_sound │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ │ └── project.properties │ │ │ │ ├── effects.cpp │ │ │ │ ├── gapless_playback.cpp │ │ │ │ ├── generate_tone.cpp │ │ │ │ ├── granular_synth.cpp │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── fmod │ │ │ │ │ │ └── example │ │ │ │ │ │ └── MainActivity.java │ │ │ │ ├── load_from_memory.cpp │ │ │ │ ├── media │ │ │ │ │ ├── c.ogg │ │ │ │ │ ├── d.ogg │ │ │ │ │ ├── drumloop.wav │ │ │ │ │ ├── e.ogg │ │ │ │ │ ├── granular │ │ │ │ │ │ ├── truck_idle_off_01.wav │ │ │ │ │ │ ├── truck_idle_off_02.wav │ │ │ │ │ │ ├── truck_idle_off_03.wav │ │ │ │ │ │ ├── truck_idle_off_04.wav │ │ │ │ │ │ ├── truck_idle_off_05.wav │ │ │ │ │ │ └── truck_idle_off_06.wav │ │ │ │ │ ├── jaguar.wav │ │ │ │ │ ├── singing.wav │ │ │ │ │ ├── standrews.wav │ │ │ │ │ ├── stereo.ogg │ │ │ │ │ ├── swish.wav │ │ │ │ │ ├── wave.mp3 │ │ │ │ │ └── wave_vorbis.fsb │ │ │ │ ├── multiple_speaker.cpp │ │ │ │ ├── multiple_system.cpp │ │ │ │ ├── ndk │ │ │ │ │ ├── fmod_codec_raw │ │ │ │ │ │ └── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ ├── fmod_distance_filter │ │ │ │ │ │ └── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ ├── fmod_gain │ │ │ │ │ │ └── jni │ │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── fmod_noise │ │ │ │ │ │ └── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ ├── net_stream.cpp │ │ │ │ ├── play_sound.cpp │ │ │ │ ├── play_stream.cpp │ │ │ │ ├── plugins │ │ │ │ │ ├── fmod_codec_raw.cpp │ │ │ │ │ ├── fmod_distance_filter.cpp │ │ │ │ │ ├── fmod_gain.cpp │ │ │ │ │ └── fmod_noise.cpp │ │ │ │ ├── record.cpp │ │ │ │ └── user_created_sound.cpp │ │ │ ├── inc │ │ │ │ ├── fmod.h │ │ │ │ ├── fmod.hpp │ │ │ │ ├── fmod_codec.h │ │ │ │ ├── fmod_common.h │ │ │ │ ├── fmod_dsp.h │ │ │ │ ├── fmod_dsp_effects.h │ │ │ │ ├── fmod_errors.h │ │ │ │ └── fmod_output.h │ │ │ └── lib │ │ │ │ ├── arm64-v8a │ │ │ │ ├── libfmod.so │ │ │ │ └── libfmodL.so │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libfmod.so │ │ │ │ └── libfmodL.so │ │ │ │ ├── armeabi │ │ │ │ ├── libfmod.so │ │ │ │ └── libfmodL.so │ │ │ │ ├── fmod.jar │ │ │ │ └── x86 │ │ │ │ ├── libfmod.so │ │ │ │ └── libfmodL.so │ │ │ └── studio │ │ │ ├── examples │ │ │ ├── 3d.cpp │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── common_platform.cpp │ │ │ ├── common_platform.h │ │ │ ├── eclipse │ │ │ │ ├── 3d │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── event_parameter │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── load_banks │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── programmer_sound │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── recording_playback │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ └── simple_event │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ ├── event_parameter.cpp │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── fmod │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.java │ │ │ ├── load_banks.cpp │ │ │ ├── media │ │ │ │ ├── 640148main_APU Shutdown.ogg │ │ │ │ ├── 640165main_Lookin At It.ogg │ │ │ │ ├── 640166main_MECO.ogg │ │ │ │ ├── 640169main_Press to ATO.ogg │ │ │ │ ├── Character.bank │ │ │ │ ├── Master Bank.bank │ │ │ │ ├── Master Bank.strings.bank │ │ │ │ ├── Surround_Ambience.bank │ │ │ │ ├── UI_Menu.bank │ │ │ │ ├── Vehicles.bank │ │ │ │ └── Weapons.bank │ │ │ ├── programmer_sound.cpp │ │ │ ├── recording_playback.cpp │ │ │ └── simple_event.cpp │ │ │ ├── inc │ │ │ ├── fmod_studio.h │ │ │ ├── fmod_studio.hpp │ │ │ └── fmod_studio_common.h │ │ │ └── lib │ │ │ ├── arm64-v8a │ │ │ ├── libfmodstudio.so │ │ │ └── libfmodstudioL.so │ │ │ ├── armeabi-v7a │ │ │ ├── libfmodstudio.so │ │ │ └── libfmodstudioL.so │ │ │ ├── armeabi │ │ │ ├── libfmodstudio.so │ │ │ └── libfmodstudioL.so │ │ │ └── x86 │ │ │ ├── libfmodstudio.so │ │ │ └── libfmodstudioL.so │ ├── GL │ │ ├── Android.mk │ │ ├── etc1encode.c │ │ ├── gl.h │ │ ├── gl_extra.c │ │ ├── glext.h │ │ ├── glu.h │ │ ├── nano_gl.cpp │ │ ├── nano_gl.h │ │ ├── qgl.h │ │ ├── qgl_linked.h │ │ └── qgl_nano.c │ ├── SDL │ │ ├── Android.mk │ │ ├── README │ │ ├── README-SDL.txt │ │ ├── README.BeOS │ │ ├── README.DirectFB │ │ ├── README.HG │ │ ├── README.MacOSX │ │ ├── README.Platforms │ │ ├── README.Porting │ │ ├── README.Watcom │ │ ├── README.WinCE │ │ ├── README.android │ │ ├── README.ds │ │ ├── README.gesture │ │ ├── README.iOS │ │ ├── README.pandora │ │ ├── README.touch │ │ ├── android-project │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── default.properties │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── src │ │ │ │ │ └── Android.mk │ │ │ ├── local.properties │ │ │ ├── res │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── SDLActivity.java │ │ │ │ └── SDLActivity.java_ │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_android_extra.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_compat.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_generated.h.in │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_nintendods.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_input.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_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 │ │ │ └── doxyfile │ │ └── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_cdrom.c │ │ │ ├── SDL_compat.c │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_fatal.c │ │ │ ├── SDL_fatal.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_hints_c.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 │ │ │ ├── baudio │ │ │ │ ├── SDL_beaudio.cc │ │ │ │ └── SDL_beaudio.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ └── SDL_bsdaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ └── SDL_coreaudio.h │ │ │ ├── directsound │ │ │ │ ├── SDL_directsound.c │ │ │ │ ├── SDL_directsound.h │ │ │ │ └── directx.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── nds │ │ │ │ ├── SDL_ndsaudio.c │ │ │ │ └── SDL_ndsaudio.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sdlgenaudiocvt.pl │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ │ └── xaudio2 │ │ │ │ └── SDL_xaudio2.c │ │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.cpp │ │ │ │ └── SDL_android.h │ │ │ └── windows │ │ │ │ ├── SDL_windows.c │ │ │ │ └── SDL_windows.h │ │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ │ ├── 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 │ │ │ ├── nds │ │ │ │ └── SDL_ndsgesture.c │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── darwin │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── nds │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── joystick │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── beos │ │ │ │ └── SDL_bejoystick.cc │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── iphoneos │ │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ │ └── SDL_sysjoystick.m │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── nds │ │ │ │ └── SDL_sysjoystick.c │ │ │ └── windows │ │ │ │ ├── SDL_dxjoystick.c │ │ │ │ ├── SDL_dxjoystick_c.h │ │ │ │ └── SDL_mmjoystick.c │ │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_log.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ └── s_sin.c │ │ │ ├── loadso │ │ │ ├── beos │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.cpp │ │ │ ├── beos │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ └── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── beos │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── nds │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ └── windows │ │ │ │ └── SDL_syspower.c │ │ │ ├── render │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_mmx.c │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ └── SDL_render_d3d.c │ │ │ ├── mmx.h │ │ │ ├── nds │ │ │ │ └── SDL_ndsrender.c │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ └── SDL_string.c │ │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── beos │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── nds │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_syssem_c.h │ │ │ │ ├── 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 │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ ├── win_ce_semaphore.c │ │ │ │ └── win_ce_semaphore.h │ │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── beos │ │ │ │ └── SDL_systimer.c │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── nds │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ ├── wince │ │ │ │ └── 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_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_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── bwindow │ │ │ ├── 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 │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.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 │ │ │ ├── nds │ │ │ ├── SDL_ndsevents.c │ │ │ ├── SDL_ndsevents_c.h │ │ │ ├── SDL_ndsvideo.c │ │ │ ├── SDL_ndsvideo.h │ │ │ ├── SDL_ndswindow.c │ │ │ └── SDL_ndswindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── sdlgenblit.pl │ │ │ ├── uikit │ │ │ ├── SDL_uikitappdelegate.h │ │ │ ├── SDL_uikitappdelegate.m │ │ │ ├── SDL_uikitevents.h │ │ │ ├── SDL_uikitevents.m │ │ │ ├── SDL_uikitkeyboard.h │ │ │ ├── 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 │ │ │ ├── jumphack.c │ │ │ ├── jumphack.h │ │ │ └── keyinfotable.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_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.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_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 │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ ├── beloko_common │ │ ├── .gitignore │ │ └── port_act_defs.h │ └── fluidsynth │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── COPYING │ │ ├── config_macos.h │ │ ├── config_macosx.h │ │ ├── config_macosx_pb.h │ │ ├── config_win32.h │ │ ├── config_win32.h.in │ │ ├── fluid_adriver.c │ │ ├── fluid_adriver.h │ │ ├── fluid_alsa.c │ │ ├── fluid_aufile.c │ │ ├── fluid_chan.c │ │ ├── fluid_chan.h │ │ ├── fluid_chorus.c │ │ ├── fluid_chorus.h │ │ ├── fluid_cmd.c │ │ ├── fluid_cmd.h │ │ ├── fluid_conv.c │ │ ├── fluid_conv.h │ │ ├── fluid_coreaudio.c │ │ ├── fluid_coremidi.c │ │ ├── fluid_dart.c │ │ ├── fluid_defsfont.c │ │ ├── fluid_defsfont.h │ │ ├── fluid_dll.c │ │ ├── fluid_dsound.c │ │ ├── fluid_dsp_float.c │ │ ├── fluid_dsp_simple.c │ │ ├── fluid_event.c │ │ ├── fluid_event_priv.h │ │ ├── fluid_gen.c │ │ ├── fluid_gen.h │ │ ├── fluid_hash.c │ │ ├── fluid_hash.h │ │ ├── fluid_io.c │ │ ├── fluid_io.h │ │ ├── fluid_jack.c │ │ ├── fluid_ladspa.c │ │ ├── fluid_ladspa.h │ │ ├── fluid_lash.c │ │ ├── fluid_lash.h │ │ ├── fluid_list.c │ │ ├── fluid_list.h │ │ ├── fluid_mdriver.c │ │ ├── fluid_mdriver.h │ │ ├── fluid_midi.c │ │ ├── fluid_midi.h │ │ ├── fluid_midi_router.c │ │ ├── fluid_midi_router.h │ │ ├── fluid_midishare.c │ │ ├── fluid_mod.c │ │ ├── fluid_mod.h │ │ ├── fluid_oss.c │ │ ├── fluid_phase.h │ │ ├── fluid_portaudio.c │ │ ├── fluid_pulse.c │ │ ├── fluid_ramsfont.c │ │ ├── fluid_ramsfont.h │ │ ├── fluid_rev.c │ │ ├── fluid_rev.h │ │ ├── fluid_seq.c │ │ ├── fluid_seqbind.c │ │ ├── fluid_settings.c │ │ ├── fluid_settings.h │ │ ├── fluid_sfont.h │ │ ├── fluid_sndmgr.c │ │ ├── fluid_synth.c │ │ ├── fluid_synth.h │ │ ├── fluid_sys.c │ │ ├── fluid_sys.h │ │ ├── fluid_tuning.c │ │ ├── fluid_tuning.h │ │ ├── fluid_voice.c │ │ ├── fluid_voice.h │ │ ├── fluid_winmidi.c │ │ ├── fluidsynth.c │ │ ├── fluidsynth_priv.h │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fluidsynth.h │ │ └── fluidsynth │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── audio.h │ │ │ ├── event.h │ │ │ ├── gen.h │ │ │ ├── log.h │ │ │ ├── midi.h │ │ │ ├── misc.h │ │ │ ├── mod.h │ │ │ ├── ramsfont.h │ │ │ ├── seq.h │ │ │ ├── seqbind.h │ │ │ ├── settings.h │ │ │ ├── sfont.h │ │ │ ├── shell.h │ │ │ ├── synth.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ ├── version.h.in │ │ │ └── voice.h │ │ └── include_from_prboom │ │ ├── fluidsynth.h │ │ └── fluidsynth │ │ ├── audio.h │ │ ├── event.h │ │ ├── gen.h │ │ ├── log.h │ │ ├── midi.h │ │ ├── misc.h │ │ ├── mod.h │ │ ├── ramsfont.h │ │ ├── seq.h │ │ ├── seqbind.h │ │ ├── settings.h │ │ ├── sfont.h │ │ ├── shell.h │ │ ├── synth.h │ │ ├── types.h │ │ ├── version.h │ │ └── voice.h │ ├── kotlin │ └── net │ │ └── nullsum │ │ └── doom │ │ └── DoomWad.kt │ ├── project.properties │ └── res │ ├── drawable-mdpi │ ├── launch.png │ └── seekbar_line.xml │ ├── drawable-xhdpi │ ├── launch.png │ └── seekbar_line.xml │ ├── drawable-xxhdpi │ ├── launch.png │ └── seekbar_line.xml │ ├── drawable-xxxhdpi │ └── seekbar_line.xml │ ├── drawable │ └── seekbar_line.xml │ ├── layout │ ├── about_dialog_view.xml │ ├── activity_cloud_save.xml │ ├── activity_main.xml │ ├── activity_quake.xml │ ├── controls_listview_item.xml │ ├── dialog_select_mods_wads.xml │ ├── edit_controls_listview_item.xml │ ├── fragment_gamepad.xml │ ├── fragment_help.xml │ ├── fragment_launch.xml │ ├── fragment_launch_gzdoom.xml │ ├── fragment_online.xml │ ├── fragment_options.xml │ ├── games_listview_item.xml │ ├── intro.xml │ ├── listview_item_mods_wads.xml │ └── notice.xml │ ├── menu │ └── activity_entry.xml │ └── values │ ├── color.xml │ ├── dimens.xml │ ├── dslv_attrs.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon.png ├── patches └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/README.md -------------------------------------------------------------------------------- /android_gzdoom/new/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_bzip2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_bzip2.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_dumb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_dumb.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_gdtoa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_gdtoa.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_gme.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_gme.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_lzma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_lzma.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_output_sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_output_sdl.mk -------------------------------------------------------------------------------- /android_gzdoom/new/Android_src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/Android_src.mk -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/android-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/android-jni.cpp -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/arith.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/gd_qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/gd_qnan.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/gitinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/gitinfo.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/sc_man_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/sc_man_scanner.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/xlat_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/xlat_parser.c -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/extrafiles/xlat_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/extrafiles/xlat_parser.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/in_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/in_android.cpp -------------------------------------------------------------------------------- /android_gzdoom/new/src/android/in_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/android/in_android.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/gl/api/gl_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/gl/api/gl_api.cpp -------------------------------------------------------------------------------- /android_gzdoom/new/src/gl/api/gl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/gl/api/gl_api.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/gl/api/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/gl/api/glext.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/gl/api/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/gl/api/wglext.h -------------------------------------------------------------------------------- /android_gzdoom/new/src/sound/fmodsound_studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/sound/fmodsound_studio.cpp -------------------------------------------------------------------------------- /android_gzdoom/new/src/sound/fmodsound_studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/new/src/sound/fmodsound_studio.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/am_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/am_map.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/c_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/c_console.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/d_iwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/d_iwad.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/d_main.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/g_game.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/data/gl_vertexbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/data/gl_vertexbuffer.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/data/gl_vertexbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/data/gl_vertexbuffer.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/dynlights/a_dynlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/dynlights/a_dynlight.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/dynlights/gl_dynlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/dynlights/gl_dynlight.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/dynlights/gl_dynlight1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/dynlights/gl_dynlight1.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/dynlights/gl_lightbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/dynlights/gl_lightbuffer.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/dynlights/gl_lightbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/dynlights/gl_lightbuffer.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/models/gl_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/models/gl_models.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/models/gl_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/models/gl_models.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/models/gl_models_md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/models/gl_models_md2.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/models/gl_models_md3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/models/gl_models_md3.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/models/gl_voxels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/models/gl_voxels.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_colormap.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_lightdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_lightdata.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_lightdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_lightdata.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_renderer.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_renderer.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_renderstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_renderstate.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/renderer/gl_renderstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/renderer/gl_renderstate.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_decal.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_drawinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_drawinfo.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_drawinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_drawinfo.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_fakeflat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_fakeflat.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_flats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_flats.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_portal.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_portal.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_renderhacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_renderhacks.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_scene.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_sky.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_skydome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_skydome.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_sprite.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_spritelight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_spritelight.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_vertex.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_wall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_wall.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_walls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_walls.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_walls_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_walls_draw.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/scene/gl_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/scene/gl_weapon.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/shaders/gl_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/shaders/gl_shader.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/shaders/gl_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/shaders/gl_shader.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_cvars.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_framebuffer.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_interface.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_interface.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_system.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/system/gl_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/system/gl_wipe.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_bitmap.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_bitmap.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_hwtexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_hwtexture.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_hwtexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_hwtexture.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_material.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_material.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_texture.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/gl/textures/gl_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/gl/textures/gl_texture.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/m_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/m_alloc.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/m_specialpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/m_specialpaths.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/menu/loadsavemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/menu/loadsavemenu.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/menu/menuinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/menu/menuinput.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/menu/optionmenuitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/menu/optionmenuitems.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/nodebuild_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/nodebuild_utility.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/p_acs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/p_acs.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/p_enemy.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/p_udmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/p_udmf.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/r_defs.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/r_things.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sdl/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sdl/i_input.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sdl/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sdl/i_main.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sdl/i_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sdl/i_system.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sdl/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sdl/i_system.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sound/i_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sound/i_music.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sound/i_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sound/i_sound.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/sound/music_midi_timidity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/sound/music_midi_timidity.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/tables.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/tempfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/tempfiles.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/textures/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/textures/textures.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/thingdef/thingdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/thingdef/thingdef.h -------------------------------------------------------------------------------- /android_gzdoom/patches/src/thingdef/thingdef_codeptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/thingdef/thingdef_codeptr.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/thingdef/thingdef_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/thingdef/thingdef_function.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/v_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/v_text.cpp -------------------------------------------------------------------------------- /android_gzdoom/patches/src/zstrformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/android_gzdoom/patches/src/zstrformat.cpp -------------------------------------------------------------------------------- /diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/diff.sh -------------------------------------------------------------------------------- /doom/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/build.gradle -------------------------------------------------------------------------------- /doom/libs/fmod.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/libs/fmod.jar -------------------------------------------------------------------------------- /doom/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_1.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_2.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_3.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_4.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_5.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_6.png -------------------------------------------------------------------------------- /doom/src/main/assets/Custom_Show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/Custom_Show.png -------------------------------------------------------------------------------- /doom/src/main/assets/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/arrow_down.png -------------------------------------------------------------------------------- /doom/src/main/assets/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/arrow_left.png -------------------------------------------------------------------------------- /doom/src/main/assets/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/arrow_right.png -------------------------------------------------------------------------------- /doom/src/main/assets/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/arrow_up.png -------------------------------------------------------------------------------- /doom/src/main/assets/crouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/crouch.png -------------------------------------------------------------------------------- /doom/src/main/assets/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/enter.png -------------------------------------------------------------------------------- /doom/src/main/assets/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/f1.png -------------------------------------------------------------------------------- /doom/src/main/assets/f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/f10.png -------------------------------------------------------------------------------- /doom/src/main/assets/gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/gamma.png -------------------------------------------------------------------------------- /doom/src/main/assets/gzdoom.pk3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/gzdoom.pk3 -------------------------------------------------------------------------------- /doom/src/main/assets/gzdoom.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/gzdoom.sf2 -------------------------------------------------------------------------------- /doom/src/main/assets/inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/inv.png -------------------------------------------------------------------------------- /doom/src/main/assets/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/jump.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_+.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_-.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_0.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_1.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_2.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_3.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_4.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_5.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_6.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_7.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_8.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_9.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_a.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_f1.png -------------------------------------------------------------------------------- /doom/src/main/assets/key_f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/key_f10.png -------------------------------------------------------------------------------- /doom/src/main/assets/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/keyboard.png -------------------------------------------------------------------------------- /doom/src/main/assets/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/load.png -------------------------------------------------------------------------------- /doom/src/main/assets/look_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/look_arrow.png -------------------------------------------------------------------------------- /doom/src/main/assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/map.png -------------------------------------------------------------------------------- /doom/src/main/assets/next_weap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/next_weap.png -------------------------------------------------------------------------------- /doom/src/main/assets/prev_weap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/prev_weap.png -------------------------------------------------------------------------------- /doom/src/main/assets/red_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/red_cross.png -------------------------------------------------------------------------------- /doom/src/main/assets/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/save.png -------------------------------------------------------------------------------- /doom/src/main/assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/settings.png -------------------------------------------------------------------------------- /doom/src/main/assets/settings_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/settings_bars.png -------------------------------------------------------------------------------- /doom/src/main/assets/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/shoot.png -------------------------------------------------------------------------------- /doom/src/main/assets/shoot_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/shoot_alt.png -------------------------------------------------------------------------------- /doom/src/main/assets/show_weapons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/show_weapons.png -------------------------------------------------------------------------------- /doom/src/main/assets/strafe_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/strafe_arrow.png -------------------------------------------------------------------------------- /doom/src/main/assets/use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/use.png -------------------------------------------------------------------------------- /doom/src/main/assets/weapon_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/assets/weapon_wheel.png -------------------------------------------------------------------------------- /doom/src/main/java/com/beloko/libsdl/SDLLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/com/beloko/libsdl/SDLLib.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/AppSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/AppSettings.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/BestEglChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/BestEglChooser.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/EntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/EntryActivity.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/Game.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/ModSelectDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/ModSelectDialog.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/MyGLSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/MyGLSurfaceView.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/NativeLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/NativeLib.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/OptionsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/OptionsFragment.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/SingleMediaScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/SingleMediaScanner.java -------------------------------------------------------------------------------- /doom/src/main/java/net/nullsum/doom/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/net/nullsum/doom/Utils.java -------------------------------------------------------------------------------- /doom/src/main/java/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /doom/src/main/java/org/libsdl/app/SDLActivity.java_2.0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/java/org/libsdl/app/SDLActivity.java_2.0.3 -------------------------------------------------------------------------------- /doom/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/Application.mk -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/inc/fsbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/inc/fsbank.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/inc/fsbank_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/inc/fsbank_errors.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank64.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank64_vc.lib -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/fsbank_vc.lib -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/libmp3lame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/libmp3lame.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/libogg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/libogg.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/libogg64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/libogg64.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/libvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/libvorbis.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/libvorbis64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/libvorbis64.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/twolame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/twolame.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/fsbank/lib/twolame64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/fsbank/lib/twolame64.dll -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/examples/3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/examples/3d.cpp -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/examples/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/examples/common.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod.hpp -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod_codec.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/inc/fmod_dsp.h -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/lowlevel/lib/fmod.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/lowlevel/lib/fmod.jar -------------------------------------------------------------------------------- /doom/src/main/jni/FMOD_studio/api/studio/examples/3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/FMOD_studio/api/studio/examples/3d.cpp -------------------------------------------------------------------------------- /doom/src/main/jni/GL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/GL/etc1encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/etc1encode.c -------------------------------------------------------------------------------- /doom/src/main/jni/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/gl.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/gl_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/gl_extra.c -------------------------------------------------------------------------------- /doom/src/main/jni/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/glext.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/glu.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/nano_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/nano_gl.cpp -------------------------------------------------------------------------------- /doom/src/main/jni/GL/nano_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/nano_gl.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/qgl.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/qgl_linked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/qgl_linked.h -------------------------------------------------------------------------------- /doom/src/main/jni/GL/qgl_nano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/GL/qgl_nano.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README-SDL.txt -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.BeOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.BeOS -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.DirectFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.DirectFB -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.HG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.HG -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.MacOSX -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.Platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.Platforms -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.Porting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.Porting -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.Watcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.Watcom -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.WinCE -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.android -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.ds -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.gesture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.gesture -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.iOS -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.pandora -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/README.touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/README.touch -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/AndroidManifest.xml -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/build.properties -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/build.xml -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/default.properties -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/jni/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/jni/src/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/local.properties -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/android-project/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/android-project/res/layout/main.xml -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_android_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_android_extra.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_blendmode.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_byteorder.h: -------------------------------------------------------------------------------- 1 | //EMILE 2 | #include "SDL_endian.h" 3 | -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_cdrom.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_clipboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_compat.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_android.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_generated.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_generated.h.in -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_nintendods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_nintendods.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_windows.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_gesture.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_hints.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_input.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_keycode.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_log.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_opengles2.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_render.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_revision.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_shape.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_touch.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/begin_code.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/close_code.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/include/doxyfile -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_assert.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_assert_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_cdrom.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_compat.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_fatal.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_fatal.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_hints.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_hints_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/SDL_log.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/alsa/SDL_alsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/alsa/SDL_alsa_audio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/alsa/SDL_alsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/alsa/SDL_alsa_audio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/arts/SDL_artsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/arts/SDL_artsaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/arts/SDL_artsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/arts/SDL_artsaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/baudio/SDL_beaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/baudio/SDL_beaudio.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/baudio/SDL_beaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/baudio/SDL_beaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/bsd/SDL_bsdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/bsd/SDL_bsdaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/bsd/SDL_bsdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/bsd/SDL_bsdaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/coreaudio/SDL_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/coreaudio/SDL_coreaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/coreaudio/SDL_coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/coreaudio/SDL_coreaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/directsound/directx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/directsound/directx.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/disk/SDL_diskaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/disk/SDL_diskaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/disk/SDL_diskaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/disk/SDL_diskaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/dsp/SDL_dspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/dsp/SDL_dspaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/dsp/SDL_dspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/dsp/SDL_dspaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/dummy/SDL_dummyaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/dummy/SDL_dummyaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/dummy/SDL_dummyaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/dummy/SDL_dummyaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/esd/SDL_esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/esd/SDL_esdaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/esd/SDL_esdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/esd/SDL_esdaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/fusionsound/SDL_fsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/fusionsound/SDL_fsaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/fusionsound/SDL_fsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/fusionsound/SDL_fsaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/nas/SDL_nasaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/nas/SDL_nasaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/nas/SDL_nasaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/nas/SDL_nasaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/nds/SDL_ndsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/nds/SDL_ndsaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/nds/SDL_ndsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/nds/SDL_ndsaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/paudio/SDL_paudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/paudio/SDL_paudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/paudio/SDL_paudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/paudio/SDL_paudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/qsa/SDL_qsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/qsa/SDL_qsa_audio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/qsa/SDL_qsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/qsa/SDL_qsa_audio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/sdlgenaudiocvt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/sdlgenaudiocvt.pl -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/sun/SDL_sunaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/sun/SDL_sunaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/sun/SDL_sunaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/sun/SDL_sunaudio.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/winmm/SDL_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/winmm/SDL_winmm.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/winmm/SDL_winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/winmm/SDL_winmm.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/audio/xaudio2/SDL_xaudio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/audio/xaudio2/SDL_xaudio2.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/core/android/SDL_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/core/android/SDL_android.cpp -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/core/android/SDL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/core/android/SDL_android.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/core/windows/SDL_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/core/windows/SDL_windows.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/core/windows/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/core/windows/SDL_windows.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_clipboardevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_clipboardevents.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_clipboardevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_clipboardevents_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_dropevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_dropevents.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_dropevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_dropevents_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_events.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_quit.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_touch.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/SDL_windowevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/SDL_windowevents_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/blank_cursor.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/default_cursor.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/nds/SDL_ndsgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/nds/SDL_ndsgesture.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/scancodes_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/scancodes_windows.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/events/scancodes_xfree86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/events/scancodes_xfree86.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/darwin/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/darwin/SDL_syshaptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/dummy/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/dummy/SDL_syshaptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/linux/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/linux/SDL_syshaptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/nds/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/nds/SDL_syshaptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/haptic/windows/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/haptic/windows/SDL_syshaptic.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/SDL_sysjoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/SDL_sysjoystick.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/beos/SDL_bejoystick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/beos/SDL_bejoystick.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/bsd/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/bsd/SDL_sysjoystick.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/joystick/nds/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/joystick/nds/SDL_sysjoystick.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/e_atan2.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/math_libm.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/math_private.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_atan.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_copysign.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/loadso/beos/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/loadso/beos/SDL_sysloadso.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/loadso/dlopen/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/loadso/dlopen/SDL_sysloadso.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/loadso/dummy/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/loadso/dummy/SDL_sysloadso.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/loadso/windows/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/loadso/windows/SDL_sysloadso.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/beos/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/beos/SDL_BApp.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/beos/SDL_BeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/beos/SDL_BeApp.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/beos/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/beos/SDL_BeApp.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/dummy/SDL_dummy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/dummy/SDL_dummy_main.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/windows/SDL_windows_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/windows/SDL_windows_main.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/main/windows/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/main/windows/version.rc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/SDL_power.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/beos/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/beos/SDL_syspower.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/linux/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/linux/SDL_syspower.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/macosx/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/macosx/SDL_syspower.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/nds/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/nds/SDL_syspower.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/uikit/SDL_syspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/uikit/SDL_syspower.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/uikit/SDL_syspower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/uikit/SDL_syspower.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/power/windows/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/power/windows/SDL_syspower.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/SDL_render.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/SDL_sysrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/SDL_sysrender.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/mmx.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/nds/SDL_ndsrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/nds/SDL_ndsrender.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/opengl/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/opengl/SDL_glfuncs.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/opengl/SDL_render_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/opengl/SDL_render_gl.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/opengl/SDL_shaders_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/opengl/SDL_shaders_gl.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/opengl/SDL_shaders_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/opengl/SDL_shaders_gl.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/opengles/SDL_glesfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/opengles/SDL_glesfuncs.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_blendline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_blendline.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_blendline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_blendline.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_draw.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_drawline.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_drawline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_drawline.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_drawpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_drawpoint.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_drawpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_drawpoint.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/render/software/SDL_render_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/render/software/SDL_render_sw.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/beos/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/beos/SDL_syssem.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/beos/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/beos/SDL_systhread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/beos/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/beos/SDL_systhread_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/generic/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/generic/SDL_syscond.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/generic/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/generic/SDL_sysmutex.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/generic/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/generic/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/generic/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/generic/SDL_syssem.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/generic/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/generic/SDL_systhread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_syscond.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_syscond_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_syscond_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_sysmutex.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_syssem.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_syssem_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_syssem_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_systhread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/nds/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/nds/SDL_systhread_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/pthread/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/pthread/SDL_syscond.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/pthread/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/pthread/SDL_sysmutex.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/pthread/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/pthread/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/pthread/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/pthread/SDL_systhread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/windows/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/windows/SDL_sysmutex.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/windows/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/windows/SDL_syssem.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/thread/windows/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/thread/windows/SDL_systhread.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/beos/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/beos/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/dummy/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/dummy/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/nds/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/nds/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/wince/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/wince/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/timer/windows/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/timer/windows/SDL_systimer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_shape.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_shape_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_shape_internals.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_surface.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/SDL_video.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/android/SDL_androidgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/android/SDL_androidgl.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_BWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_BWin.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bclipboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bclipboard.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bclipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bclipboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bevents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bevents.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bevents.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bkeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bkeyboard.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bkeyboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bmodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bmodes.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bmodes.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bopengl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bopengl.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bopengl.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bvideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bvideo.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bvideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bwindow.cc -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/bwindow/SDL_bwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/bwindow/SDL_bwindow.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaevents.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaevents.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoakeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoakeyboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoakeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoakeyboard.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamodes.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamodes.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamouse.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoamouse.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaopengl.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaopengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoaopengl.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoashape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoashape.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoashape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoashape.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoavideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoavideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoavideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoavideo.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoawindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoawindow.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoawindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/cocoa/SDL_cocoawindow.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/dummy/SDL_nullevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/dummy/SDL_nullevents.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/dummy/SDL_nullevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/dummy/SDL_nullevents_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/dummy/SDL_nullvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/dummy/SDL_nullvideo.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/dummy/SDL_nullvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/dummy/SDL_nullvideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndsevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndsevents.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndsevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndsevents_c.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndsvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndsvideo.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndsvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndsvideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndswindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndswindow.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/nds/SDL_ndswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/nds/SDL_ndswindow.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/pandora/SDL_pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/pandora/SDL_pandora.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/pandora/SDL_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/pandora/SDL_pandora.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitevents.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitevents.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitkeyboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitopengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitopengles.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitopengles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitopengles.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitvideo.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitvideo.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitview.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitview.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitwindow.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/SDL_uikitwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/SDL_uikitwindow.m -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/jumphack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/jumphack.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/jumphack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/jumphack.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/uikit/keyinfotable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/uikit/keyinfotable.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/windows/SDL_msctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/windows/SDL_msctf.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/windows/SDL_vkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/windows/SDL_vkeys.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/windows/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/windows/wmmsg.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11clipboard.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11clipboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11dyn.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11dyn.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11events.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11events.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11framebuffer.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11framebuffer.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11keyboard.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11keyboard.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11modes.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11modes.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11mouse.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11mouse.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11opengl.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11opengl.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11opengles.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11opengles.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11shape.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11shape.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11sym.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11touch.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11touch.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11video.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11video.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11window.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/SDL_x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/SDL_x11window.h -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/imKStoUCS.c -------------------------------------------------------------------------------- /doom/src/main/jni/SDL/src/video/x11/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/SDL/src/video/x11/imKStoUCS.h -------------------------------------------------------------------------------- /doom/src/main/jni/beloko_common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/beloko_common/.gitignore -------------------------------------------------------------------------------- /doom/src/main/jni/beloko_common/port_act_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/beloko_common/port_act_defs.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/.gitignore: -------------------------------------------------------------------------------- 1 | libs 2 | obj 3 | -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/AUTHORS -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/Android.mk -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/Application.mk -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/COPYING -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/config_macos.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/config_macosx.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/config_macosx_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/config_macosx_pb.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/config_win32.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/config_win32.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/config_win32.h.in -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_adriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_adriver.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_adriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_adriver.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_alsa.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_aufile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_aufile.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_chan.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_chan.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_chorus.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_chorus.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_cmd.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_cmd.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_conv.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_conv.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_coreaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_coremidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_coremidi.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_dart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_dart.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_defsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_defsfont.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_defsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_defsfont.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_dll.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_dsound.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_dsp_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_dsp_float.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_dsp_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_dsp_simple.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_event.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_event_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_event_priv.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_gen.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_gen.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_hash.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_hash.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_io.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_io.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_jack.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_ladspa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_ladspa.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_ladspa.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_lash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_lash.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_lash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_lash.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_list.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_list.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_mdriver.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_mdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_mdriver.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_midi.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_midi.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_midi_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_midi_router.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_midi_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_midi_router.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_midishare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_midishare.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_mod.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_mod.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_oss.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_phase.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_portaudio.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_pulse.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_ramsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_ramsfont.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_ramsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_ramsfont.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_rev.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_rev.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_seq.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_seqbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_seqbind.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_settings.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_settings.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_sfont.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_sndmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_sndmgr.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_synth.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_synth.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_sys.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_sys.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_tuning.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_tuning.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_voice.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_voice.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluid_winmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluid_winmidi.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluidsynth.c -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/fluidsynth_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/fluidsynth_priv.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/Makefile.am -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/Makefile.in -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/audio.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/event.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/gen.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/log.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/midi.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/misc.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/mod.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/seq.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/seqbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/seqbind.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/sfont.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/shell.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/synth.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/types.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/version.h -------------------------------------------------------------------------------- /doom/src/main/jni/fluidsynth/include/fluidsynth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/jni/fluidsynth/include/fluidsynth/voice.h -------------------------------------------------------------------------------- /doom/src/main/kotlin/net/nullsum/doom/DoomWad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/kotlin/net/nullsum/doom/DoomWad.kt -------------------------------------------------------------------------------- /doom/src/main/project.properties: -------------------------------------------------------------------------------- 1 | #ADDED BY EMILE, so the JNI will compile 2 | target=android-21 3 | -------------------------------------------------------------------------------- /doom/src/main/res/drawable-mdpi/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-mdpi/launch.png -------------------------------------------------------------------------------- /doom/src/main/res/drawable-mdpi/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-mdpi/seekbar_line.xml -------------------------------------------------------------------------------- /doom/src/main/res/drawable-xhdpi/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-xhdpi/launch.png -------------------------------------------------------------------------------- /doom/src/main/res/drawable-xhdpi/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-xhdpi/seekbar_line.xml -------------------------------------------------------------------------------- /doom/src/main/res/drawable-xxhdpi/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-xxhdpi/launch.png -------------------------------------------------------------------------------- /doom/src/main/res/drawable-xxhdpi/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-xxhdpi/seekbar_line.xml -------------------------------------------------------------------------------- /doom/src/main/res/drawable-xxxhdpi/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable-xxxhdpi/seekbar_line.xml -------------------------------------------------------------------------------- /doom/src/main/res/drawable/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/drawable/seekbar_line.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/about_dialog_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/about_dialog_view.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/activity_cloud_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/activity_cloud_save.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/activity_quake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/activity_quake.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/controls_listview_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/controls_listview_item.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/dialog_select_mods_wads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/dialog_select_mods_wads.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/edit_controls_listview_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/edit_controls_listview_item.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_gamepad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_gamepad.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_help.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_launch.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_launch_gzdoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_launch_gzdoom.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_online.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_online.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/fragment_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/fragment_options.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/games_listview_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/games_listview_item.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/intro.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/listview_item_mods_wads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/listview_item_mods_wads.xml -------------------------------------------------------------------------------- /doom/src/main/res/layout/notice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/layout/notice.xml -------------------------------------------------------------------------------- /doom/src/main/res/menu/activity_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/menu/activity_entry.xml -------------------------------------------------------------------------------- /doom/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/values/color.xml -------------------------------------------------------------------------------- /doom/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /doom/src/main/res/values/dslv_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/values/dslv_attrs.xml -------------------------------------------------------------------------------- /doom/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /doom/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/doom/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/icon.png -------------------------------------------------------------------------------- /patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/patches -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewrabert/GZDoom-Android/HEAD/settings.gradle --------------------------------------------------------------------------------