├── .gitignore ├── License.txt ├── ReadMe.md ├── assets_full └── ReadMe-GishData.md ├── docs ├── GL4ES │ ├── CHANGELOG.md │ ├── COMPILE.md │ ├── LICENSE.md │ ├── README.md │ ├── USAGE.md │ └── Version.txt ├── GNOME_Adwaita_Icons.txt ├── Licenses_of_files.txt ├── Ogg │ ├── AUTHORS.txt │ ├── CHANGES.txt │ ├── COPYING.txt │ ├── README.txt │ └── Version.txt ├── OpenAL │ ├── COPYING.txt │ ├── README-ANDROID.md │ ├── README.md │ └── Version.txt ├── SDL2 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gesture.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-linux.md │ ├── README-macosx.md │ ├── README-nacl.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-touch.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ ├── TODO.txt │ ├── Version.txt │ └── WhatsNew.txt └── Vorbis │ ├── COPYING.txt │ ├── README.txt │ └── Version.txt ├── gish ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ ├── GL4ES │ │ │ ├── Android.mk │ │ │ ├── bc_cat.h │ │ │ ├── include │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GL │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── gl_mangle.h │ │ │ │ │ ├── glext.h │ │ │ │ │ ├── glu.h │ │ │ │ │ ├── glu_mangle.h │ │ │ │ │ ├── glx.h │ │ │ │ │ ├── glx_mangle.h │ │ │ │ │ ├── glxext.h │ │ │ │ │ └── internal │ │ │ │ │ │ └── dri_interface.h │ │ │ │ ├── GLES │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ ├── gl2platform.h │ │ │ │ │ ├── gl3.h │ │ │ │ │ ├── gl3ext.h │ │ │ │ │ ├── gl3platform.h │ │ │ │ │ ├── glext.h │ │ │ │ │ └── glplatform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ ├── android_debug.h │ │ │ │ ├── gl4eshint.h │ │ │ │ └── khash.h │ │ │ ├── src │ │ │ │ ├── config.h │ │ │ │ ├── gl │ │ │ │ │ ├── array.c │ │ │ │ │ ├── array.h │ │ │ │ │ ├── blend.c │ │ │ │ │ ├── blend.h │ │ │ │ │ ├── blit.c │ │ │ │ │ ├── blit.h │ │ │ │ │ ├── buffers.c │ │ │ │ │ ├── buffers.h │ │ │ │ │ ├── const.h │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── decompress.h │ │ │ │ │ ├── defines.h │ │ │ │ │ ├── directstate.c │ │ │ │ │ ├── directstate.h │ │ │ │ │ ├── eval.c │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── fog.c │ │ │ │ │ ├── fog.h │ │ │ │ │ ├── framebuffers.c │ │ │ │ │ ├── framebuffers.h │ │ │ │ │ ├── getter.c │ │ │ │ │ ├── gl.c │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── gles.h │ │ │ │ │ ├── hint.c │ │ │ │ │ ├── hint.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── init.h │ │ │ │ │ ├── light.c │ │ │ │ │ ├── light.h │ │ │ │ │ ├── line.c │ │ │ │ │ ├── line.h │ │ │ │ │ ├── list.c │ │ │ │ │ ├── list.h │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.h │ │ │ │ │ ├── logs.h │ │ │ │ │ ├── math │ │ │ │ │ │ ├── eval.c │ │ │ │ │ │ └── eval.h │ │ │ │ │ ├── matrix.c │ │ │ │ │ ├── matrix.h │ │ │ │ │ ├── matvec.c │ │ │ │ │ ├── matvec.h │ │ │ │ │ ├── pixel.c │ │ │ │ │ ├── pixel.h │ │ │ │ │ ├── planes.c │ │ │ │ │ ├── planes.h │ │ │ │ │ ├── program.c │ │ │ │ │ ├── program.h │ │ │ │ │ ├── queries.c │ │ │ │ │ ├── queries.h │ │ │ │ │ ├── raster.c │ │ │ │ │ ├── raster.h │ │ │ │ │ ├── render.c │ │ │ │ │ ├── render.h │ │ │ │ │ ├── shader.c │ │ │ │ │ ├── shader.h │ │ │ │ │ ├── stack.c │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── state.h │ │ │ │ │ ├── stb_dxt_104.h │ │ │ │ │ ├── texenv.c │ │ │ │ │ ├── texenv.h │ │ │ │ │ ├── texgen.c │ │ │ │ │ ├── texgen.h │ │ │ │ │ ├── texture.c │ │ │ │ │ ├── texture.h │ │ │ │ │ ├── uniform.c │ │ │ │ │ ├── uniform.h │ │ │ │ │ ├── vertexattrib.c │ │ │ │ │ ├── vertexattrib.h │ │ │ │ │ └── wrap │ │ │ │ │ │ ├── gl.c │ │ │ │ │ │ ├── gl.h │ │ │ │ │ │ ├── gles.c │ │ │ │ │ │ ├── gles.h │ │ │ │ │ │ ├── glstub.c │ │ │ │ │ │ └── stub.h │ │ │ │ └── glx │ │ │ │ │ ├── glesfuncs.inc │ │ │ │ │ ├── glx.c │ │ │ │ │ ├── glx.h │ │ │ │ │ ├── hardext.c │ │ │ │ │ ├── hardext.h │ │ │ │ │ ├── lookup.c │ │ │ │ │ ├── rpi.c │ │ │ │ │ ├── rpi.h │ │ │ │ │ ├── streaming.c │ │ │ │ │ ├── streaming.h │ │ │ │ │ ├── utils.c │ │ │ │ │ └── utils.h │ │ │ └── version.h │ │ ├── Gish │ │ │ ├── Android.mk │ │ │ ├── android │ │ │ │ ├── a_utils.c │ │ │ │ └── a_utils.h │ │ │ ├── audio │ │ │ │ ├── audio.c │ │ │ │ └── audio.h │ │ │ ├── config.h │ │ │ ├── egl │ │ │ │ ├── eglport.c │ │ │ │ └── eglport.h │ │ │ ├── game │ │ │ │ ├── ai.c │ │ │ │ ├── ai.h │ │ │ │ ├── animation.c │ │ │ │ ├── animation.h │ │ │ │ ├── block.c │ │ │ │ ├── block.h │ │ │ │ ├── boss.c │ │ │ │ ├── boss.h │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── credits.c │ │ │ │ ├── credits.h │ │ │ │ ├── custom.c │ │ │ │ ├── custom.h │ │ │ │ ├── damage.c │ │ │ │ ├── damage.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── editor.c │ │ │ │ ├── editor.h │ │ │ │ ├── english.h │ │ │ │ ├── game.c │ │ │ │ ├── game.h │ │ │ │ ├── gameaudio.c │ │ │ │ ├── gameaudio.h │ │ │ │ ├── gamemenu.c │ │ │ │ ├── gamemenu.h │ │ │ │ ├── gameobject.c │ │ │ │ ├── gameobject.h │ │ │ │ ├── gametexture.c │ │ │ │ ├── gametexture.h │ │ │ │ ├── high.c │ │ │ │ ├── high.h │ │ │ │ ├── level.c │ │ │ │ ├── level.h │ │ │ │ ├── lighting.c │ │ │ │ ├── lighting.h │ │ │ │ ├── logic.c │ │ │ │ ├── logic.h │ │ │ │ ├── mainmenu.c │ │ │ │ ├── mainmenu.h │ │ │ │ ├── mappack.c │ │ │ │ ├── mappack.h │ │ │ │ ├── music.c │ │ │ │ ├── music.h │ │ │ │ ├── objedit.c │ │ │ │ ├── objedit.h │ │ │ │ ├── objfunc.c │ │ │ │ ├── objfunc.h │ │ │ │ ├── options.c │ │ │ │ ├── options.h │ │ │ │ ├── physics.c │ │ │ │ ├── physics.h │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── prerender.c │ │ │ │ ├── prerender.h │ │ │ │ ├── random.c │ │ │ │ ├── random.h │ │ │ │ ├── record.c │ │ │ │ ├── record.h │ │ │ │ ├── render.c │ │ │ │ ├── render.h │ │ │ │ ├── replay.c │ │ │ │ ├── replay.h │ │ │ │ ├── ropeedit.c │ │ │ │ ├── ropeedit.h │ │ │ │ ├── setup.c │ │ │ │ ├── setup.h │ │ │ │ ├── socket.c │ │ │ │ ├── socket.h │ │ │ │ ├── sprite.c │ │ │ │ ├── sprite.h │ │ │ │ ├── vsmode.c │ │ │ │ └── vsmode.h │ │ │ ├── input │ │ │ │ ├── joystick.c │ │ │ │ ├── joystick.h │ │ │ │ ├── keyboard.c │ │ │ │ ├── keyboard.h │ │ │ │ ├── mouse.c │ │ │ │ └── mouse.h │ │ │ ├── main.c │ │ │ ├── math │ │ │ │ ├── intersec.c │ │ │ │ ├── intersec.h │ │ │ │ ├── math.h │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ ├── menu │ │ │ │ ├── menu.c │ │ │ │ └── menu.h │ │ │ ├── parser │ │ │ │ ├── parser.c │ │ │ │ └── parser.h │ │ │ ├── physics │ │ │ │ ├── bond.c │ │ │ │ ├── bond.h │ │ │ │ ├── object.c │ │ │ │ ├── object.h │ │ │ │ ├── particle.c │ │ │ │ └── particle.h │ │ │ ├── sdl │ │ │ │ ├── endian.c │ │ │ │ ├── endian.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── sdl.h │ │ │ │ ├── video.c │ │ │ │ └── video.h │ │ │ └── video │ │ │ │ ├── glext.h │ │ │ │ ├── glfunc.c │ │ │ │ ├── glfunc.h │ │ │ │ ├── opengl.c │ │ │ │ ├── opengl.h │ │ │ │ ├── text.c │ │ │ │ ├── text.h │ │ │ │ ├── texture.c │ │ │ │ └── texture.h │ │ ├── OpenAL │ │ │ ├── Alc │ │ │ │ ├── ALc.c │ │ │ │ ├── ALu.c │ │ │ │ ├── alcConfig.c │ │ │ │ ├── alcDedicated.c │ │ │ │ ├── alcEcho.c │ │ │ │ ├── alcModulator.c │ │ │ │ ├── alcReverb.c │ │ │ │ ├── alcRing.c │ │ │ │ ├── alcThread.c │ │ │ │ ├── backends │ │ │ │ │ ├── alsa.c │ │ │ │ │ ├── android.c │ │ │ │ │ ├── coreaudio.c │ │ │ │ │ ├── dsound.c │ │ │ │ │ ├── loopback.c │ │ │ │ │ ├── mmdevapi.c │ │ │ │ │ ├── null.c │ │ │ │ │ ├── opensl.c │ │ │ │ │ ├── oss.c │ │ │ │ │ ├── portaudio.c │ │ │ │ │ ├── pulseaudio.c │ │ │ │ │ ├── sndio.c │ │ │ │ │ ├── solaris.c │ │ │ │ │ ├── wave.c │ │ │ │ │ └── winmm.c │ │ │ │ ├── bs2b.c │ │ │ │ ├── helpers.c │ │ │ │ ├── hrtf.c │ │ │ │ ├── hrtf_tables.inc │ │ │ │ ├── mixer.c │ │ │ │ └── panning.c │ │ │ ├── Android.mk │ │ │ ├── OpenAL32 │ │ │ │ ├── Include │ │ │ │ │ ├── alAuxEffectSlot.h │ │ │ │ │ ├── alBuffer.h │ │ │ │ │ ├── alEffect.h │ │ │ │ │ ├── alError.h │ │ │ │ │ ├── alFilter.h │ │ │ │ │ ├── alListener.h │ │ │ │ │ ├── alMain.h │ │ │ │ │ ├── alSource.h │ │ │ │ │ ├── alState.h │ │ │ │ │ ├── alThunk.h │ │ │ │ │ ├── alu.h │ │ │ │ │ └── bs2b.h │ │ │ │ ├── alAuxEffectSlot.c │ │ │ │ ├── alBuffer.c │ │ │ │ ├── alEffect.c │ │ │ │ ├── alError.c │ │ │ │ ├── alExtension.c │ │ │ │ ├── alFilter.c │ │ │ │ ├── alListener.c │ │ │ │ ├── alSource.c │ │ │ │ ├── alState.c │ │ │ │ └── alThunk.c │ │ │ ├── config.h │ │ │ └── include │ │ │ │ └── AL │ │ │ │ ├── al.h │ │ │ │ ├── alc.h │ │ │ │ ├── alext.h │ │ │ │ ├── efx-creative.h │ │ │ │ ├── efx-presets.h │ │ │ │ └── efx.h │ │ ├── SDL2 │ │ │ ├── Android.mk │ │ │ ├── include │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── src │ │ │ │ ├── SDL.c │ │ │ │ ├── SDL_assert.c │ │ │ │ ├── SDL_assert_c.h │ │ │ │ ├── SDL_error.c │ │ │ │ ├── SDL_error_c.h │ │ │ │ ├── SDL_hints.c │ │ │ │ ├── SDL_internal.h │ │ │ │ ├── SDL_log.c │ │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ └── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── core │ │ │ │ └── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ └── SDL_android.h │ │ │ │ ├── cpuinfo │ │ │ │ └── SDL_cpuinfo.c │ │ │ │ ├── dynapi │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ └── SDL_dynapi_procs.h │ │ │ │ ├── events │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_gesture.c │ │ │ │ ├── SDL_gesture_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_sysevents.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ │ ├── file │ │ │ │ └── SDL_rwops.c │ │ │ │ ├── filesystem │ │ │ │ └── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── haptic │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_haptic_c.h │ │ │ │ └── SDL_syshaptic.h │ │ │ │ ├── joystick │ │ │ │ ├── SDL_gamecontroller.c │ │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ └── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── libm │ │ │ │ ├── math_libm.h │ │ │ │ └── math_private.h │ │ │ │ ├── loadso │ │ │ │ └── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── main │ │ │ │ └── android │ │ │ │ │ └── SDL_android_main.c │ │ │ │ ├── render │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── opengles │ │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ │ └── SDL_render_gles.c │ │ │ │ └── software │ │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ │ ├── SDL_blendline.c │ │ │ │ │ ├── SDL_blendline.h │ │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ │ ├── SDL_draw.h │ │ │ │ │ ├── SDL_drawline.c │ │ │ │ │ ├── SDL_drawline.h │ │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ │ ├── SDL_render_sw.c │ │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ │ ├── SDL_rotate.c │ │ │ │ │ └── SDL_rotate.h │ │ │ │ ├── stdlib │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ └── SDL_string.c │ │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ └── pthread │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ └── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── video │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_clipboard.c │ │ │ │ ├── SDL_egl.c │ │ │ │ ├── SDL_egl_c.h │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_shape.c │ │ │ │ ├── SDL_shape_internals.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ └── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ ├── cmake │ │ │ ├── FindOpenGLES.cmake │ │ │ ├── FindSDL2.cmake │ │ │ └── FindVorbis.cmake │ │ └── libvorbis │ │ │ ├── Android.mk │ │ │ ├── libogg │ │ │ ├── include │ │ │ │ └── ogg │ │ │ │ │ ├── config_types.h │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ └── src │ │ │ │ ├── bitwise.c │ │ │ │ └── framing.c │ │ │ └── libvorbisidec │ │ │ ├── asm_arm.h │ │ │ ├── backends.h │ │ │ ├── block.c │ │ │ ├── block.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── config_types.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── info.c │ │ │ ├── ivorbiscodec.h │ │ │ ├── ivorbisfile.h │ │ │ ├── lsp_lookup.h │ │ │ ├── mapping0.c │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mdct_lookup.h │ │ │ ├── misc.h │ │ │ ├── os.h │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res012.c │ │ │ ├── sharedbook.c │ │ │ ├── synthesis.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ ├── window.h │ │ │ └── window_lookup.h │ ├── java │ │ ├── org │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ └── SDLActivity.java │ │ └── ru │ │ │ └── exlmoto │ │ │ └── gish │ │ │ ├── GishActivity.java │ │ │ ├── GishFilePickerActivity.java │ │ │ ├── GishLauncherActivity.java │ │ │ ├── GishTouchControlsView.java │ │ │ └── GishTouchOverlayView.java │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-nodpi │ │ └── overlay_controls.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── drawable │ │ ├── button_a.png │ │ ├── button_d.png │ │ ├── button_ok.png │ │ ├── button_s.png │ │ ├── button_space.png │ │ ├── cover.jpg │ │ ├── folder.png │ │ ├── folder_gish.png │ │ ├── folder_up.png │ │ └── icon_about_big.png │ │ ├── layout │ │ ├── gish_dialog_about.xml │ │ ├── gish_filepicker.xml │ │ ├── gish_filepicker_row.xml │ │ └── gish_launcher.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-v11 │ │ └── style.xml │ │ ├── values-v14 │ │ └── style.xml │ │ ├── values-v21 │ │ └── style.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── style.xml │ └── test │ ├── 0x80.c │ └── txt.c ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── gish_android_screen1.jpg ├── gish_android_screen2.jpg ├── gish_android_screen3.jpg ├── gish_icon.bmp ├── gish_motorola_photon_q.jpg ├── ic_launcher-web.png └── src │ ├── buttons.xcf │ ├── folder_gish.xcf │ └── overlay_controls.xcf └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/License.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/ReadMe.md -------------------------------------------------------------------------------- /assets_full/ReadMe-GishData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/assets_full/ReadMe-GishData.md -------------------------------------------------------------------------------- /docs/GL4ES/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GL4ES/CHANGELOG.md -------------------------------------------------------------------------------- /docs/GL4ES/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GL4ES/COMPILE.md -------------------------------------------------------------------------------- /docs/GL4ES/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GL4ES/LICENSE.md -------------------------------------------------------------------------------- /docs/GL4ES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GL4ES/README.md -------------------------------------------------------------------------------- /docs/GL4ES/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GL4ES/USAGE.md -------------------------------------------------------------------------------- /docs/GL4ES/Version.txt: -------------------------------------------------------------------------------- 1 | v1.0.0-16-g1f4841f 2 | -------------------------------------------------------------------------------- /docs/GNOME_Adwaita_Icons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/GNOME_Adwaita_Icons.txt -------------------------------------------------------------------------------- /docs/Licenses_of_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Licenses_of_files.txt -------------------------------------------------------------------------------- /docs/Ogg/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Ogg/AUTHORS.txt -------------------------------------------------------------------------------- /docs/Ogg/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Ogg/CHANGES.txt -------------------------------------------------------------------------------- /docs/Ogg/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Ogg/COPYING.txt -------------------------------------------------------------------------------- /docs/Ogg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Ogg/README.txt -------------------------------------------------------------------------------- /docs/Ogg/Version.txt: -------------------------------------------------------------------------------- 1 | Extracted from SDL2_mixer-2.0.1 2 | -------------------------------------------------------------------------------- /docs/OpenAL/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/OpenAL/COPYING.txt -------------------------------------------------------------------------------- /docs/OpenAL/README-ANDROID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/OpenAL/README-ANDROID.md -------------------------------------------------------------------------------- /docs/OpenAL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/OpenAL/README.md -------------------------------------------------------------------------------- /docs/OpenAL/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/OpenAL/Version.txt -------------------------------------------------------------------------------- /docs/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/BUGS.txt -------------------------------------------------------------------------------- /docs/SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/COPYING.txt -------------------------------------------------------------------------------- /docs/SDL2/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/CREDITS.txt -------------------------------------------------------------------------------- /docs/SDL2/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/INSTALL.txt -------------------------------------------------------------------------------- /docs/SDL2/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-android.md -------------------------------------------------------------------------------- /docs/SDL2/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-cmake.md -------------------------------------------------------------------------------- /docs/SDL2/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-directfb.md -------------------------------------------------------------------------------- /docs/SDL2/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-dynapi.md -------------------------------------------------------------------------------- /docs/SDL2/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-emscripten.md -------------------------------------------------------------------------------- /docs/SDL2/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-gesture.md -------------------------------------------------------------------------------- /docs/SDL2/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-hg.md -------------------------------------------------------------------------------- /docs/SDL2/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-ios.md -------------------------------------------------------------------------------- /docs/SDL2/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-linux.md -------------------------------------------------------------------------------- /docs/SDL2/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-macosx.md -------------------------------------------------------------------------------- /docs/SDL2/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-nacl.md -------------------------------------------------------------------------------- /docs/SDL2/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-pandora.md -------------------------------------------------------------------------------- /docs/SDL2/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-platforms.md -------------------------------------------------------------------------------- /docs/SDL2/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-porting.md -------------------------------------------------------------------------------- /docs/SDL2/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-psp.md -------------------------------------------------------------------------------- /docs/SDL2/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-raspberrypi.md -------------------------------------------------------------------------------- /docs/SDL2/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-touch.md -------------------------------------------------------------------------------- /docs/SDL2/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-wince.md -------------------------------------------------------------------------------- /docs/SDL2/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-windows.md -------------------------------------------------------------------------------- /docs/SDL2/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README-winrt.md -------------------------------------------------------------------------------- /docs/SDL2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/README.md -------------------------------------------------------------------------------- /docs/SDL2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/TODO.txt -------------------------------------------------------------------------------- /docs/SDL2/Version.txt: -------------------------------------------------------------------------------- 1 | SDL2-2.0.5 2 | -------------------------------------------------------------------------------- /docs/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /docs/Vorbis/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Vorbis/COPYING.txt -------------------------------------------------------------------------------- /docs/Vorbis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/docs/Vorbis/README.txt -------------------------------------------------------------------------------- /docs/Vorbis/Version.txt: -------------------------------------------------------------------------------- 1 | Extracted from SDL2_mixer-2.0.1 2 | -------------------------------------------------------------------------------- /gish/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/build.gradle -------------------------------------------------------------------------------- /gish/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /gish/src/main/cpp/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /gish/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/Android.mk -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/bc_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/bc_cat.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/EGL/egl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/EGL/eglext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/gl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/gl_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/gl_mangle.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glu.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glu_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glu_mangle.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glx.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glx_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glx_mangle.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/glxext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GL/internal/dri_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GL/internal/dri_interface.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/egl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl2.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl2ext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl2platform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl3.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl3ext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/gl3platform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/glext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/GLES/glplatform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/android_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/android_debug.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/gl4eshint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/gl4eshint.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/include/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/include/khash.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/config.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/array.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/array.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/blend.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/blend.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/blit.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/blit.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/buffers.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/buffers.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/const.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/debug.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/debug.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/decompress.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/decompress.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/defines.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/directstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/directstate.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/directstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/directstate.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/eval.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/eval.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/fog.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/fog.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/framebuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/framebuffers.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/framebuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/framebuffers.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/getter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/getter.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/gl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/gl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/gles.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/hint.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/hint.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/init.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/init.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/light.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/light.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/line.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/line.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/list.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/list.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/loader.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/loader.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/logs.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/math/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/math/eval.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/math/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/math/eval.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/matrix.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/matrix.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/matvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/matvec.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/matvec.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/pixel.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/pixel.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/planes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/planes.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/planes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/planes.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/program.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/program.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/queries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/queries.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/queries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/queries.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/raster.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/raster.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/render.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/render.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/shader.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/shader.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/stack.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/stack.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/state.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/stb_dxt_104.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/stb_dxt_104.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texenv.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texenv.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texgen.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texgen.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texture.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/texture.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/uniform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/uniform.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/uniform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/vertexattrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/vertexattrib.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/vertexattrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/vertexattrib.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/gl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/gl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/gles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/gles.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/gles.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/glstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/glstub.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/gl/wrap/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/gl/wrap/stub.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/glesfuncs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/glesfuncs.inc -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/glx.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/glx.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/hardext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/hardext.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/hardext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/hardext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/lookup.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/rpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/rpi.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/rpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/rpi.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/streaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/streaming.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/streaming.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/utils.c -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/src/glx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/src/glx/utils.h -------------------------------------------------------------------------------- /gish/src/main/cpp/GL4ES/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/GL4ES/version.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/Android.mk -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/android/a_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/android/a_utils.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/android/a_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/android/a_utils.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/audio/audio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/audio/audio.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/config.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/egl/eglport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/egl/eglport.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/egl/eglport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/egl/eglport.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/ai.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/ai.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/animation.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/animation.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/block.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/block.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/boss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/boss.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/boss.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/config.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/config.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/credits.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/credits.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/custom.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/custom.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/damage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/damage.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/damage.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/debug.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/debug.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/editor.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/editor.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/english.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/game.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/game.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gameaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gameaudio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gameaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gameaudio.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gamemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gamemenu.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gamemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gamemenu.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gameobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gameobject.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gameobject.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gametexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gametexture.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/gametexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/gametexture.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/high.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/high.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/high.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/high.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/level.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/level.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/lighting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/lighting.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/lighting.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/logic.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/logic.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/mainmenu.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/mainmenu.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/mappack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/mappack.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/mappack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/mappack.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/music.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/music.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/objedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/objedit.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/objedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/objedit.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/objfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/objfunc.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/objfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/objfunc.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/options.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/options.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/physics.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/physics.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/player.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/player.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/prerender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/prerender.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/prerender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/prerender.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/random.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/random.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/record.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/record.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/render.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/render.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/replay.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/replay.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/ropeedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/ropeedit.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/ropeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/ropeedit.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/setup.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/setup.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/socket.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/socket.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/sprite.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/sprite.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/vsmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/vsmode.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/game/vsmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/game/vsmode.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/joystick.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/joystick.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/keyboard.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/keyboard.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/mouse.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/input/mouse.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/main.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/math/intersec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/math/intersec.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/math/intersec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/math/intersec.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/math/math.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/math/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/math/vector.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/math/vector.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/menu/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/menu/menu.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/menu/menu.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/parser/parser.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/parser/parser.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/bond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/bond.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/bond.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/object.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/object.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/particle.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/physics/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/physics/particle.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/endian.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/endian.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/event.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/event.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/file.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/file.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/sdl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/video.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/sdl/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/sdl/video.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/glext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/glfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/glfunc.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/glfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/glfunc.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/opengl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/opengl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/text.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/text.h -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/texture.c -------------------------------------------------------------------------------- /gish/src/main/cpp/Gish/video/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/Gish/video/texture.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/ALc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/ALc.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/ALu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/ALu.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcConfig.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcDedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcDedicated.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcEcho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcEcho.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcModulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcModulator.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcReverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcReverb.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcRing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcRing.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/alcThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/alcThread.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/alsa.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/android.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/coreaudio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/dsound.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/loopback.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/mmdevapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/mmdevapi.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/null.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/opensl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/opensl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/oss.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/portaudio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/pulseaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/pulseaudio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/sndio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/sndio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/solaris.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/wave.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/backends/winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/backends/winmm.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/bs2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/bs2b.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/helpers.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/hrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/hrtf.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/hrtf_tables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/hrtf_tables.inc -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/mixer.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Alc/panning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Alc/panning.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/Android.mk -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alAuxEffectSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alAuxEffectSlot.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alBuffer.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alEffect.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alError.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alFilter.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alListener.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alMain.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alSource.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alState.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alThunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alThunk.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/alu.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/Include/bs2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/Include/bs2b.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alAuxEffectSlot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alAuxEffectSlot.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alBuffer.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alEffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alEffect.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alError.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alExtension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alExtension.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alFilter.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alListener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alListener.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alSource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alSource.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alState.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/OpenAL32/alThunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/OpenAL32/alThunk.c -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/config.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/al.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/alc.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/alext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/efx-creative.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/efx-presets.h -------------------------------------------------------------------------------- /gish/src/main/cpp/OpenAL/include/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/OpenAL/include/AL/efx.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/Android.mk -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_android.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_windows.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/include/close_code.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_assert.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_assert_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_error.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_error_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_hints.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_internal.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/SDL_log.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/android/SDL_androidaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/android/SDL_androidaudio.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/audio/android/SDL_androidaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/audio/android/SDL_androidaudio.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/core/android/SDL_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/core/android/SDL_android.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/core/android/SDL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/core/android/SDL_android.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi_overrides.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi_procs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/dynapi/SDL_dynapi_procs.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_clipboardevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_clipboardevents.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_clipboardevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_clipboardevents_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_dropevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_dropevents.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_dropevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_dropevents_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_events.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_quit.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_touch.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/SDL_windowevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/SDL_windowevents_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/blank_cursor.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/default_cursor.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/scancodes_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/scancodes_windows.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/events/scancodes_xfree86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/events/scancodes_xfree86.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/filesystem/android/SDL_sysfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/filesystem/android/SDL_sysfilesystem.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/SDL_gamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/SDL_gamecontroller.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/SDL_gamecontrollerdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/SDL_gamecontrollerdb.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/SDL_sysjoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/SDL_sysjoystick.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/android/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/android/SDL_sysjoystick.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/joystick/android/SDL_sysjoystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/joystick/android/SDL_sysjoystick_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/libm/math_libm.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/libm/math_private.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/loadso/dlopen/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/loadso/dlopen/SDL_sysloadso.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/main/android/SDL_android_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/main/android/SDL_android_main.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/SDL_render.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/SDL_sysrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/SDL_sysrender.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/opengles/SDL_glesfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/opengles/SDL_glesfuncs.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/opengles/SDL_render_gles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/opengles/SDL_render_gles.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendfillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendfillrect.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendfillrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendfillrect.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendline.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendline.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendpoint.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_blendpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_blendpoint.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_draw.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_drawline.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_drawline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_drawline.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_drawpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_drawpoint.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_drawpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_drawpoint.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_render_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_render_sw.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_render_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_render_sw_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_rotate.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/render/software/SDL_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/render/software/SDL_rotate.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_syscond.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_sysmutex.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systhread.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systhread_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/thread/pthread/SDL_systls.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_egl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_rect.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_shape.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_shape_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_shape_internals.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_surface.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/SDL_video.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidclipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidclipboard.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidclipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidclipboard.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidevents.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidevents.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidgl.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidkeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidkeyboard.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidkeyboard.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidmessagebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidmessagebox.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidmessagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidmessagebox.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidmouse.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidmouse.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidtouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidtouch.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidtouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidtouch.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidvideo.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidvideo.h -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidwindow.c -------------------------------------------------------------------------------- /gish/src/main/cpp/SDL2/src/video/android/SDL_androidwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/SDL2/src/video/android/SDL_androidwindow.h -------------------------------------------------------------------------------- /gish/src/main/cpp/cmake/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/cmake/FindOpenGLES.cmake -------------------------------------------------------------------------------- /gish/src/main/cpp/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /gish/src/main/cpp/cmake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/cmake/FindVorbis.cmake -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/Android.mk -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libogg/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libogg/include/ogg/config_types.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libogg/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libogg/include/ogg/os_types.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libogg/src/bitwise.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libogg/src/framing.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/asm_arm.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/backends.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/block.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/block.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/codebook.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/codebook.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/codec_internal.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/config_types.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/floor0.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/floor1.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/info.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/ivorbiscodec.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/ivorbisfile.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/lsp_lookup.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/mapping0.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/mdct.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/mdct.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/mdct_lookup.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/misc.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/os.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/registry.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/registry.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/res012.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/sharedbook.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/synthesis.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/vorbisfile.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/window.c -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/window.h -------------------------------------------------------------------------------- /gish/src/main/cpp/libvorbis/libvorbisidec/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/cpp/libvorbis/libvorbisidec/window_lookup.h -------------------------------------------------------------------------------- /gish/src/main/java/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /gish/src/main/java/ru/exlmoto/gish/GishActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/ru/exlmoto/gish/GishActivity.java -------------------------------------------------------------------------------- /gish/src/main/java/ru/exlmoto/gish/GishFilePickerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/ru/exlmoto/gish/GishFilePickerActivity.java -------------------------------------------------------------------------------- /gish/src/main/java/ru/exlmoto/gish/GishLauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/ru/exlmoto/gish/GishLauncherActivity.java -------------------------------------------------------------------------------- /gish/src/main/java/ru/exlmoto/gish/GishTouchControlsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/ru/exlmoto/gish/GishTouchControlsView.java -------------------------------------------------------------------------------- /gish/src/main/java/ru/exlmoto/gish/GishTouchOverlayView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/java/ru/exlmoto/gish/GishTouchOverlayView.java -------------------------------------------------------------------------------- /gish/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable-nodpi/overlay_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable-nodpi/overlay_controls.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/button_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/button_a.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/button_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/button_d.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/button_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/button_ok.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/button_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/button_s.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/button_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/button_space.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/cover.jpg -------------------------------------------------------------------------------- /gish/src/main/res/drawable/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/folder.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/folder_gish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/folder_gish.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/folder_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/folder_up.png -------------------------------------------------------------------------------- /gish/src/main/res/drawable/icon_about_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/drawable/icon_about_big.png -------------------------------------------------------------------------------- /gish/src/main/res/layout/gish_dialog_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/layout/gish_dialog_about.xml -------------------------------------------------------------------------------- /gish/src/main/res/layout/gish_filepicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/layout/gish_filepicker.xml -------------------------------------------------------------------------------- /gish/src/main/res/layout/gish_filepicker_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/layout/gish_filepicker_row.xml -------------------------------------------------------------------------------- /gish/src/main/res/layout/gish_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/layout/gish_launcher.xml -------------------------------------------------------------------------------- /gish/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /gish/src/main/res/values-v11/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values-v11/style.xml -------------------------------------------------------------------------------- /gish/src/main/res/values-v14/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values-v14/style.xml -------------------------------------------------------------------------------- /gish/src/main/res/values-v21/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values-v21/style.xml -------------------------------------------------------------------------------- /gish/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /gish/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gish/src/main/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/main/res/values/style.xml -------------------------------------------------------------------------------- /gish/src/test/0x80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/test/0x80.c -------------------------------------------------------------------------------- /gish/src/test/txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gish/src/test/txt.c -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/gish_android_screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/gish_android_screen1.jpg -------------------------------------------------------------------------------- /images/gish_android_screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/gish_android_screen2.jpg -------------------------------------------------------------------------------- /images/gish_android_screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/gish_android_screen3.jpg -------------------------------------------------------------------------------- /images/gish_icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/gish_icon.bmp -------------------------------------------------------------------------------- /images/gish_motorola_photon_q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/gish_motorola_photon_q.jpg -------------------------------------------------------------------------------- /images/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/ic_launcher-web.png -------------------------------------------------------------------------------- /images/src/buttons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/src/buttons.xcf -------------------------------------------------------------------------------- /images/src/folder_gish.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/src/folder_gish.xcf -------------------------------------------------------------------------------- /images/src/overlay_controls.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/Gish/HEAD/images/src/overlay_controls.xcf -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':gish' 2 | --------------------------------------------------------------------------------