├── .gitignore ├── LICENSE.txt ├── Linux ├── CodeBlocks │ ├── QuakeSpasm-SDL2.cbp │ └── QuakeSpasm.cbp └── sgml │ ├── Makefile.sgml │ ├── Quakespasm.sgml │ └── sgml2rawtxt ├── MacOSX ├── AppController.h ├── AppController.m ├── Build_Instructions.md ├── English.lproj │ ├── InfoPlist.strings │ └── Launcher.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── Info.plist ├── Launcher-Info.plist ├── QuakeArgument.h ├── QuakeArgument.m ├── QuakeArguments.h ├── QuakeArguments.m ├── QuakeSpasm.icns ├── QuakeSpasm.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── QuakeSpasm.xcscheme ├── QuakeSpasmPPC.xcodeproj │ └── project.pbxproj ├── SDL.framework │ ├── Headers │ ├── License.rtf │ ├── ReadMe.txt │ ├── Resources │ ├── SDL │ ├── UniversalBinaryNotes.rtf │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_dreamcast.h │ │ │ ├── SDL_config_macos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_nds.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_symbian.h │ │ │ ├── SDL_config_win32.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── SDLMain.nib │ │ │ │ └── objects.nib │ │ ├── SDL │ │ └── devel-lite │ │ │ ├── ReadMeDevLite.txt │ │ │ ├── SDLMain.h │ │ │ └── SDLMain.m │ │ └── Current ├── SDL2.framework │ ├── Headers │ ├── Resources │ ├── SDL2 │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_os2.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 │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── SDL2 │ │ └── Current ├── SDLApplication.h ├── SDLApplication.m ├── SDLMain.h ├── SDLMain.m ├── ScreenInfo.h ├── ScreenInfo.m └── codecs │ ├── include │ ├── FLAC │ │ ├── callback.h │ │ ├── export.h │ │ ├── format.h │ │ ├── ordinals.h │ │ └── stream_decoder.h │ ├── flac_config.txt │ ├── mad.h │ ├── mikmod.h │ ├── mikmod_config.txt │ ├── mpg123.h │ ├── mpg123_config.txt │ ├── ogg │ │ ├── config_types.h │ │ ├── ogg.h │ │ └── os_types.h │ ├── opus │ │ ├── opus.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ ├── opus_types.h │ │ └── opusfile.h │ ├── opusfile.h │ ├── vorbis │ │ ├── codec.h │ │ └── vorbisfile.h │ └── xmp.h │ └── lib │ ├── libFLAC.dylib │ ├── libmad.dylib │ ├── libmikmod.dylib │ ├── libmpg123.dylib │ ├── libogg.dylib │ ├── libopus.dylib │ ├── libopusfile.dylib │ ├── libvorbis.dylib │ ├── libvorbisfile.dylib │ └── libxmp.dylib ├── Misc ├── QuakeSpasm_512.png ├── fitzquake080.txt ├── fitzquake080sdl.txt ├── fitzquake085.txt ├── fs_search_order.patch ├── mk_header.c ├── qs_pak │ ├── Makefile │ ├── default.cfg │ ├── default.cfg.orig │ ├── gfx │ │ └── conback.lmp │ ├── maps │ │ ├── e1m1.ent │ │ ├── e1m1.ent.orig │ │ ├── e1m2.ent │ │ ├── e1m2.ent.orig │ │ ├── e1m4.ent │ │ ├── e1m4.ent.orig │ │ ├── e2m2.ent │ │ ├── e2m2.ent.orig │ │ ├── e2m3.ent │ │ ├── e2m3.ent.orig │ │ ├── e2m7.ent │ │ └── e2m7.ent.orig │ └── mkpak.sh ├── quake_retexturing_project.patch └── systest.c ├── Quake ├── Makefile ├── Makefile.darwin ├── Makefile.w32 ├── Makefile.w64 ├── OWMakefile.win32 ├── anorm_dots.h ├── anorms.h ├── arch_def.h ├── bgmusic.c ├── bgmusic.h ├── bspfile.h ├── build_cross_osx-sdl2.sh ├── build_cross_osx.sh ├── build_cross_win32-sdl2.sh ├── build_cross_win32.sh ├── build_cross_win64-sdl2.sh ├── build_cross_win64.sh ├── cd_null.c ├── cd_sdl.c ├── cdaudio.h ├── cfgfile.c ├── cfgfile.h ├── chase.c ├── cl_demo.c ├── cl_input.c ├── cl_main.c ├── cl_parse.c ├── cl_tent.c ├── client.h ├── cmd.c ├── cmd.h ├── common.c ├── common.h ├── console.c ├── console.h ├── crc.c ├── crc.h ├── cvar.c ├── cvar.h ├── detect.sh ├── draw.h ├── filenames.h ├── gl_draw.c ├── gl_fog.c ├── gl_mesh.c ├── gl_model.c ├── gl_model.h ├── gl_refrag.c ├── gl_rlight.c ├── gl_rmain.c ├── gl_rmisc.c ├── gl_screen.c ├── gl_sky.c ├── gl_texmgr.c ├── gl_texmgr.h ├── gl_vidsdl.c ├── gl_warp.c ├── gl_warp_sin.h ├── glquake.h ├── host.c ├── host_cmd.c ├── image.c ├── image.h ├── in_sdl.c ├── input.h ├── keys.c ├── keys.h ├── lodepng.c ├── lodepng.h ├── main_sdl.c ├── mathlib.c ├── mathlib.h ├── menu.c ├── menu.h ├── modelgen.h ├── net.h ├── net_bsd.c ├── net_defs.h ├── net_dgrm.c ├── net_dgrm.h ├── net_loop.c ├── net_loop.h ├── net_main.c ├── net_sys.h ├── net_udp.c ├── net_udp.h ├── net_win.c ├── net_wins.c ├── net_wins.h ├── net_wipx.c ├── net_wipx.h ├── pl_linux.c ├── pl_osx.m ├── pl_win.c ├── platform.h ├── pr_cmds.c ├── pr_comp.h ├── pr_edict.c ├── pr_exec.c ├── progdefs.h ├── progdefs.q1 ├── progs.h ├── protocol.h ├── q_ctype.h ├── q_sound.h ├── q_stdinc.h ├── qlua.c ├── qlua.h ├── qs_bmp.h ├── quakedef.h ├── quakespasm.pak ├── r_alias.c ├── r_brush.c ├── r_entity.h ├── r_part.c ├── r_part.h ├── r_sprite.c ├── r_world.c ├── render.h ├── resource.h ├── sbar.c ├── sbar.h ├── screen.h ├── server.h ├── snd_codec.c ├── snd_codec.h ├── snd_codeci.h ├── snd_dma.c ├── snd_flac.c ├── snd_flac.h ├── snd_mem.c ├── snd_mikmod.c ├── snd_mikmod.h ├── snd_mix.c ├── snd_mp3.c ├── snd_mp3.h ├── snd_mpg123.c ├── snd_opus.c ├── snd_opus.h ├── snd_sdl.c ├── snd_umx.c ├── snd_umx.h ├── snd_vorbis.c ├── snd_vorbis.h ├── snd_wave.c ├── snd_wave.h ├── snd_xmp.c ├── snd_xmp.h ├── spritegn.h ├── stb_image_write.h ├── strl_fn.h ├── strlcat.c ├── strlcpy.c ├── sv_main.c ├── sv_move.c ├── sv_phys.c ├── sv_user.c ├── sys.h ├── sys_sdl_unix.c ├── sys_sdl_win.c ├── vid.h ├── view.c ├── view.h ├── wad.c ├── wad.h ├── world.c ├── world.h ├── wsaerror.h ├── zone.c └── zone.h ├── Quakespasm-Music.txt ├── Quakespasm.html ├── Quakespasm.txt ├── README.md ├── Windows ├── Lua │ ├── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h │ └── lua5.1.lib ├── LuaJit │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── ext_profiler.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_arm64.h │ │ ├── dasm_arm64.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_mips64.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ ├── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── buildvm.exp │ │ ├── buildvm.lib │ │ ├── host │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── buildvm.c │ │ │ ├── buildvm.h │ │ │ ├── buildvm_asm.c │ │ │ ├── buildvm_fold.c │ │ │ ├── buildvm_lib.c │ │ │ ├── buildvm_libbc.h │ │ │ ├── buildvm_peobj.c │ │ │ ├── genlibbc.lua │ │ │ ├── genminilua.lua │ │ │ └── minilua.c │ │ ├── jit │ │ │ ├── .gitignore │ │ │ ├── bc.lua │ │ │ ├── bcsave.lua │ │ │ ├── dis_arm.lua │ │ │ ├── dis_arm64.lua │ │ │ ├── dis_arm64be.lua │ │ │ ├── dis_mips.lua │ │ │ ├── dis_mips64.lua │ │ │ ├── dis_mips64el.lua │ │ │ ├── dis_mipsel.lua │ │ │ ├── dis_ppc.lua │ │ │ ├── dis_x64.lua │ │ │ ├── dis_x86.lua │ │ │ ├── dump.lua │ │ │ ├── p.lua │ │ │ ├── v.lua │ │ │ └── zone.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_arm64.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_buf.c │ │ ├── lj_buf.h │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_arm64.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_profile.c │ │ ├── lj_profile.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strfmt.c │ │ ├── lj_strfmt.h │ │ ├── lj_strfmt_num.c │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_arm64.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── lua51.dll │ │ ├── lua51.exp │ │ ├── lua51.lib │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.exe │ │ ├── luajit.exp │ │ ├── luajit.h │ │ ├── luajit.lib │ │ ├── lualib.h │ │ ├── minilua.exp │ │ ├── minilua.lib │ │ ├── msvcbuild.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_arm64.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_mips64.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_x64.dasc │ │ ├── vm_x86.dasc │ │ ├── xb1build.bat │ │ └── xedkbuild.bat │ └── x64 │ │ ├── lua51.exp │ │ └── lua51.lib ├── SDL2 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_os2.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 │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── lib │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ ├── libSDL2.dll.a │ │ └── libSDL2main.a │ ├── lib64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ ├── libSDL2.dll.a │ │ └── libSDL2main.a │ ├── main │ │ ├── SDL_windows.h │ │ └── SDL_windows_main.c │ └── watcom │ │ ├── SDL2.def │ │ ├── SDL2.exp │ │ ├── SDL2.lib │ │ ├── def2lbc.awk │ │ └── makefile ├── VisualStudio │ ├── slipgate.sln │ ├── slipgate.vcxproj │ └── slipgate.vcxproj.user ├── codecs │ ├── include │ │ ├── FLAC │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── ordinals.h │ │ │ └── stream_decoder.h │ │ ├── flac_config.txt │ │ ├── mad.h │ │ ├── mikmod.h │ │ ├── mikmod_config.txt │ │ ├── mpg123.h │ │ ├── mpg123_config.txt │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ ├── opus │ │ │ ├── opus.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ ├── opus_types.h │ │ │ └── opusfile.h │ │ ├── opusfile.h │ │ ├── tremor │ │ │ ├── config_types.h │ │ │ ├── ivorbiscodec.h │ │ │ └── ivorbisfile.h │ │ ├── vorbis │ │ │ ├── codec.h │ │ │ └── vorbisfile.h │ │ └── xmp.h │ ├── x64 │ │ ├── libFLAC-8.dll │ │ ├── libFLAC.dll.a │ │ ├── libFLAC.lib │ │ ├── libmad-0.dll │ │ ├── libmad.dll.a │ │ ├── libmad.lib │ │ ├── libmikmod-3.dll │ │ ├── libmikmod.dll.a │ │ ├── libmikmod.lib │ │ ├── libmpg123-0.dll │ │ ├── libmpg123.dll.a │ │ ├── libmpg123.lib │ │ ├── libogg-0.dll │ │ ├── libogg.dll.a │ │ ├── libogg.lib │ │ ├── libopus-0.dll │ │ ├── libopus.dll.a │ │ ├── libopus.lib │ │ ├── libopusfile-0.dll │ │ ├── libopusfile.dll.a │ │ ├── libopusfile.lib │ │ ├── libvorbis-0.dll │ │ ├── libvorbis.dll.a │ │ ├── libvorbis.lib │ │ ├── libvorbisfile-3.dll │ │ ├── libvorbisfile.dll.a │ │ ├── libvorbisfile.lib │ │ ├── libxmp.dll │ │ ├── libxmp.dll.a │ │ └── libxmp.lib │ ├── x86-watcom │ │ ├── FLAC.lib │ │ ├── libxmp.lib │ │ ├── mad.lib │ │ ├── mikmod.lib │ │ ├── ogg.lib │ │ ├── opus.lib │ │ ├── opusfile.lib │ │ ├── vorbis.lib │ │ ├── vorbisfile.lib │ │ └── vorbisidec.lib │ └── x86 │ │ ├── libFLAC-8.dll │ │ ├── libFLAC.dll.a │ │ ├── libFLAC.lib │ │ ├── libmad-0.dll │ │ ├── libmad.dll.a │ │ ├── libmad.lib │ │ ├── libmikmod-3.dll │ │ ├── libmikmod.dll.a │ │ ├── libmikmod.lib │ │ ├── libmpg123-0.dll │ │ ├── libmpg123.dll.a │ │ ├── libmpg123.lib │ │ ├── libogg-0.dll │ │ ├── libogg.dll.a │ │ ├── libogg.lib │ │ ├── libopus-0.dll │ │ ├── libopus.dll.a │ │ ├── libopus.lib │ │ ├── libopusfile-0.dll │ │ ├── libopusfile.dll.a │ │ ├── libopusfile.lib │ │ ├── libvorbis-0.dll │ │ ├── libvorbis.dll.a │ │ ├── libvorbis.lib │ │ ├── libvorbisfile-3.dll │ │ ├── libvorbisfile.dll.a │ │ ├── libvorbisfile.lib │ │ ├── libxmp.dll │ │ ├── libxmp.dll.a │ │ └── libxmp.lib ├── misc │ ├── include │ │ └── msinttypes │ │ │ ├── README.txt │ │ │ ├── changelog.txt │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ ├── x64 │ │ ├── libvulkan-1.dll.a │ │ └── vulkan-1.def │ └── x86 │ │ ├── libvulkan-1.dll.a │ │ └── vulkan-1.def ├── slipgate.ico └── slipgate.rc └── slipgate ├── SDL2.dll ├── id1 ├── config.cfg ├── particleshape.tga ├── put_PAK_files_here.txt └── qlua │ ├── cl │ ├── client.lua │ ├── gib.lua │ ├── gore.lua │ ├── main.lua │ ├── modeldraw.lua │ ├── nativefunctions.lua │ ├── nativetypes.lua │ ├── particles.lua │ └── weapons.lua │ ├── nativetypes.lua │ ├── serialize.lua │ ├── sharedlib.lua │ └── sv │ ├── finalizeqc.lua │ ├── gib.lua │ ├── main.lua │ ├── qc.lua │ ├── startframe.lua │ └── weapons.lua ├── jit ├── bc.lua ├── bcsave.lua ├── dis_arm.lua ├── dis_mips.lua ├── dis_mipsel.lua ├── dis_ppc.lua ├── dis_x64.lua ├── dis_x86.lua ├── dump.lua ├── v.lua └── vmdef.lua ├── libFLAC-8.dll ├── libmad-0.dll ├── libmikmod-3.dll ├── libmpg123-0.dll ├── libogg-0.dll ├── libopus-0.dll ├── libopusfile-0.dll ├── libvorbis-0.dll ├── libvorbisfile-3.dll ├── libxmp.dll ├── slipgate.exe ├── slipgate.exp └── slipgate.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Linux/CodeBlocks/QuakeSpasm-SDL2.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Linux/CodeBlocks/QuakeSpasm-SDL2.cbp -------------------------------------------------------------------------------- /Linux/CodeBlocks/QuakeSpasm.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Linux/CodeBlocks/QuakeSpasm.cbp -------------------------------------------------------------------------------- /Linux/sgml/Makefile.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Linux/sgml/Makefile.sgml -------------------------------------------------------------------------------- /Linux/sgml/Quakespasm.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Linux/sgml/Quakespasm.sgml -------------------------------------------------------------------------------- /Linux/sgml/sgml2rawtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Linux/sgml/sgml2rawtxt -------------------------------------------------------------------------------- /MacOSX/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/AppController.h -------------------------------------------------------------------------------- /MacOSX/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/AppController.m -------------------------------------------------------------------------------- /MacOSX/Build_Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/Build_Instructions.md -------------------------------------------------------------------------------- /MacOSX/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /MacOSX/English.lproj/Launcher.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/English.lproj/Launcher.nib/designable.nib -------------------------------------------------------------------------------- /MacOSX/English.lproj/Launcher.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/English.lproj/Launcher.nib/keyedobjects.nib -------------------------------------------------------------------------------- /MacOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/Info.plist -------------------------------------------------------------------------------- /MacOSX/Launcher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/Launcher-Info.plist -------------------------------------------------------------------------------- /MacOSX/QuakeArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeArgument.h -------------------------------------------------------------------------------- /MacOSX/QuakeArgument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeArgument.m -------------------------------------------------------------------------------- /MacOSX/QuakeArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeArguments.h -------------------------------------------------------------------------------- /MacOSX/QuakeArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeArguments.m -------------------------------------------------------------------------------- /MacOSX/QuakeSpasm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeSpasm.icns -------------------------------------------------------------------------------- /MacOSX/QuakeSpasm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeSpasm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MacOSX/QuakeSpasmPPC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/QuakeSpasmPPC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /MacOSX/SDL.framework/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/License.rtf -------------------------------------------------------------------------------- /MacOSX/SDL.framework/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/ReadMe.txt -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /MacOSX/SDL.framework/SDL: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL -------------------------------------------------------------------------------- /MacOSX/SDL.framework/UniversalBinaryNotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/UniversalBinaryNotes.rtf -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_active.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_byteorder.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_cdrom.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config_macos.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config_nds.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config_os2.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_config_win32.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_getenv.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_keysym.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/SDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/SDL -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/devel-lite/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/devel-lite/SDLMain.h -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/A/devel-lite/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL.framework/Versions/A/devel-lite/SDLMain.m -------------------------------------------------------------------------------- /MacOSX/SDL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_os2.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_psp.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_config_wiz.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_egl.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /MacOSX/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /MacOSX/SDLApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDLApplication.h -------------------------------------------------------------------------------- /MacOSX/SDLApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDLApplication.m -------------------------------------------------------------------------------- /MacOSX/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDLMain.h -------------------------------------------------------------------------------- /MacOSX/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/SDLMain.m -------------------------------------------------------------------------------- /MacOSX/ScreenInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/ScreenInfo.h -------------------------------------------------------------------------------- /MacOSX/ScreenInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/ScreenInfo.m -------------------------------------------------------------------------------- /MacOSX/codecs/include/FLAC/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/FLAC/callback.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/FLAC/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/FLAC/export.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/FLAC/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/FLAC/format.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/FLAC/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/FLAC/ordinals.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/FLAC/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/FLAC/stream_decoder.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/flac_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/flac_config.txt -------------------------------------------------------------------------------- /MacOSX/codecs/include/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/mad.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/mikmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/mikmod.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/mikmod_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/mikmod_config.txt -------------------------------------------------------------------------------- /MacOSX/codecs/include/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/mpg123.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/mpg123_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/mpg123_config.txt -------------------------------------------------------------------------------- /MacOSX/codecs/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/ogg/config_types.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/ogg/ogg.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/ogg/os_types.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opus/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opus/opus.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opus/opus_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opus/opus_defines.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opus/opus_multistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opus/opus_multistream.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opus/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opus/opus_types.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opus/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opus/opusfile.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/opusfile.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/vorbis/codec.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /MacOSX/codecs/include/xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/include/xmp.h -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libFLAC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libFLAC.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libmad.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libmad.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libmikmod.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libmikmod.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libmpg123.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libmpg123.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libogg.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libogg.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libopus.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libopus.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libopusfile.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libopusfile.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libvorbis.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libvorbis.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libvorbisfile.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libvorbisfile.dylib -------------------------------------------------------------------------------- /MacOSX/codecs/lib/libxmp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/MacOSX/codecs/lib/libxmp.dylib -------------------------------------------------------------------------------- /Misc/QuakeSpasm_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/QuakeSpasm_512.png -------------------------------------------------------------------------------- /Misc/fitzquake080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/fitzquake080.txt -------------------------------------------------------------------------------- /Misc/fitzquake080sdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/fitzquake080sdl.txt -------------------------------------------------------------------------------- /Misc/fitzquake085.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/fitzquake085.txt -------------------------------------------------------------------------------- /Misc/fs_search_order.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/fs_search_order.patch -------------------------------------------------------------------------------- /Misc/mk_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/mk_header.c -------------------------------------------------------------------------------- /Misc/qs_pak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/Makefile -------------------------------------------------------------------------------- /Misc/qs_pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/default.cfg -------------------------------------------------------------------------------- /Misc/qs_pak/default.cfg.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/default.cfg.orig -------------------------------------------------------------------------------- /Misc/qs_pak/gfx/conback.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/gfx/conback.lmp -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m1.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m1.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m1.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m1.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m2.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m2.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m2.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m2.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m4.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m4.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e1m4.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e1m4.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m2.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m2.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m2.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m2.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m3.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m3.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m3.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m3.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m7.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m7.ent -------------------------------------------------------------------------------- /Misc/qs_pak/maps/e2m7.ent.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/maps/e2m7.ent.orig -------------------------------------------------------------------------------- /Misc/qs_pak/mkpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/qs_pak/mkpak.sh -------------------------------------------------------------------------------- /Misc/quake_retexturing_project.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/quake_retexturing_project.patch -------------------------------------------------------------------------------- /Misc/systest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Misc/systest.c -------------------------------------------------------------------------------- /Quake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/Makefile -------------------------------------------------------------------------------- /Quake/Makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/Makefile.darwin -------------------------------------------------------------------------------- /Quake/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/Makefile.w32 -------------------------------------------------------------------------------- /Quake/Makefile.w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/Makefile.w64 -------------------------------------------------------------------------------- /Quake/OWMakefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/OWMakefile.win32 -------------------------------------------------------------------------------- /Quake/anorm_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/anorm_dots.h -------------------------------------------------------------------------------- /Quake/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/anorms.h -------------------------------------------------------------------------------- /Quake/arch_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/arch_def.h -------------------------------------------------------------------------------- /Quake/bgmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/bgmusic.c -------------------------------------------------------------------------------- /Quake/bgmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/bgmusic.h -------------------------------------------------------------------------------- /Quake/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/bspfile.h -------------------------------------------------------------------------------- /Quake/build_cross_osx-sdl2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_osx-sdl2.sh -------------------------------------------------------------------------------- /Quake/build_cross_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_osx.sh -------------------------------------------------------------------------------- /Quake/build_cross_win32-sdl2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_win32-sdl2.sh -------------------------------------------------------------------------------- /Quake/build_cross_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_win32.sh -------------------------------------------------------------------------------- /Quake/build_cross_win64-sdl2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_win64-sdl2.sh -------------------------------------------------------------------------------- /Quake/build_cross_win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/build_cross_win64.sh -------------------------------------------------------------------------------- /Quake/cd_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cd_null.c -------------------------------------------------------------------------------- /Quake/cd_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cd_sdl.c -------------------------------------------------------------------------------- /Quake/cdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cdaudio.h -------------------------------------------------------------------------------- /Quake/cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cfgfile.c -------------------------------------------------------------------------------- /Quake/cfgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cfgfile.h -------------------------------------------------------------------------------- /Quake/chase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/chase.c -------------------------------------------------------------------------------- /Quake/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cl_demo.c -------------------------------------------------------------------------------- /Quake/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cl_input.c -------------------------------------------------------------------------------- /Quake/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cl_main.c -------------------------------------------------------------------------------- /Quake/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cl_parse.c -------------------------------------------------------------------------------- /Quake/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cl_tent.c -------------------------------------------------------------------------------- /Quake/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/client.h -------------------------------------------------------------------------------- /Quake/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cmd.c -------------------------------------------------------------------------------- /Quake/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cmd.h -------------------------------------------------------------------------------- /Quake/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/common.c -------------------------------------------------------------------------------- /Quake/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/common.h -------------------------------------------------------------------------------- /Quake/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/console.c -------------------------------------------------------------------------------- /Quake/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/console.h -------------------------------------------------------------------------------- /Quake/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/crc.c -------------------------------------------------------------------------------- /Quake/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/crc.h -------------------------------------------------------------------------------- /Quake/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cvar.c -------------------------------------------------------------------------------- /Quake/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/cvar.h -------------------------------------------------------------------------------- /Quake/detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/detect.sh -------------------------------------------------------------------------------- /Quake/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/draw.h -------------------------------------------------------------------------------- /Quake/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/filenames.h -------------------------------------------------------------------------------- /Quake/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_draw.c -------------------------------------------------------------------------------- /Quake/gl_fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_fog.c -------------------------------------------------------------------------------- /Quake/gl_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_mesh.c -------------------------------------------------------------------------------- /Quake/gl_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_model.c -------------------------------------------------------------------------------- /Quake/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_model.h -------------------------------------------------------------------------------- /Quake/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_refrag.c -------------------------------------------------------------------------------- /Quake/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_rlight.c -------------------------------------------------------------------------------- /Quake/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_rmain.c -------------------------------------------------------------------------------- /Quake/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_rmisc.c -------------------------------------------------------------------------------- /Quake/gl_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_screen.c -------------------------------------------------------------------------------- /Quake/gl_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_sky.c -------------------------------------------------------------------------------- /Quake/gl_texmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_texmgr.c -------------------------------------------------------------------------------- /Quake/gl_texmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_texmgr.h -------------------------------------------------------------------------------- /Quake/gl_vidsdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_vidsdl.c -------------------------------------------------------------------------------- /Quake/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_warp.c -------------------------------------------------------------------------------- /Quake/gl_warp_sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/gl_warp_sin.h -------------------------------------------------------------------------------- /Quake/glquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/glquake.h -------------------------------------------------------------------------------- /Quake/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/host.c -------------------------------------------------------------------------------- /Quake/host_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/host_cmd.c -------------------------------------------------------------------------------- /Quake/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/image.c -------------------------------------------------------------------------------- /Quake/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/image.h -------------------------------------------------------------------------------- /Quake/in_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/in_sdl.c -------------------------------------------------------------------------------- /Quake/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/input.h -------------------------------------------------------------------------------- /Quake/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/keys.c -------------------------------------------------------------------------------- /Quake/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/keys.h -------------------------------------------------------------------------------- /Quake/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/lodepng.c -------------------------------------------------------------------------------- /Quake/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/lodepng.h -------------------------------------------------------------------------------- /Quake/main_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/main_sdl.c -------------------------------------------------------------------------------- /Quake/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/mathlib.c -------------------------------------------------------------------------------- /Quake/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/mathlib.h -------------------------------------------------------------------------------- /Quake/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/menu.c -------------------------------------------------------------------------------- /Quake/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/menu.h -------------------------------------------------------------------------------- /Quake/modelgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/modelgen.h -------------------------------------------------------------------------------- /Quake/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net.h -------------------------------------------------------------------------------- /Quake/net_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_bsd.c -------------------------------------------------------------------------------- /Quake/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_defs.h -------------------------------------------------------------------------------- /Quake/net_dgrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_dgrm.c -------------------------------------------------------------------------------- /Quake/net_dgrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_dgrm.h -------------------------------------------------------------------------------- /Quake/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_loop.c -------------------------------------------------------------------------------- /Quake/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_loop.h -------------------------------------------------------------------------------- /Quake/net_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_main.c -------------------------------------------------------------------------------- /Quake/net_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_sys.h -------------------------------------------------------------------------------- /Quake/net_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_udp.c -------------------------------------------------------------------------------- /Quake/net_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_udp.h -------------------------------------------------------------------------------- /Quake/net_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_win.c -------------------------------------------------------------------------------- /Quake/net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_wins.c -------------------------------------------------------------------------------- /Quake/net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_wins.h -------------------------------------------------------------------------------- /Quake/net_wipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_wipx.c -------------------------------------------------------------------------------- /Quake/net_wipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/net_wipx.h -------------------------------------------------------------------------------- /Quake/pl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pl_linux.c -------------------------------------------------------------------------------- /Quake/pl_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pl_osx.m -------------------------------------------------------------------------------- /Quake/pl_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pl_win.c -------------------------------------------------------------------------------- /Quake/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/platform.h -------------------------------------------------------------------------------- /Quake/pr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pr_cmds.c -------------------------------------------------------------------------------- /Quake/pr_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pr_comp.h -------------------------------------------------------------------------------- /Quake/pr_edict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pr_edict.c -------------------------------------------------------------------------------- /Quake/pr_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/pr_exec.c -------------------------------------------------------------------------------- /Quake/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/progdefs.h -------------------------------------------------------------------------------- /Quake/progdefs.q1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/progdefs.q1 -------------------------------------------------------------------------------- /Quake/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/progs.h -------------------------------------------------------------------------------- /Quake/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/protocol.h -------------------------------------------------------------------------------- /Quake/q_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/q_ctype.h -------------------------------------------------------------------------------- /Quake/q_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/q_sound.h -------------------------------------------------------------------------------- /Quake/q_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/q_stdinc.h -------------------------------------------------------------------------------- /Quake/qlua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/qlua.c -------------------------------------------------------------------------------- /Quake/qlua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/qlua.h -------------------------------------------------------------------------------- /Quake/qs_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/qs_bmp.h -------------------------------------------------------------------------------- /Quake/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/quakedef.h -------------------------------------------------------------------------------- /Quake/quakespasm.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/quakespasm.pak -------------------------------------------------------------------------------- /Quake/r_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_alias.c -------------------------------------------------------------------------------- /Quake/r_brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_brush.c -------------------------------------------------------------------------------- /Quake/r_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_entity.h -------------------------------------------------------------------------------- /Quake/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_part.c -------------------------------------------------------------------------------- /Quake/r_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_part.h -------------------------------------------------------------------------------- /Quake/r_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_sprite.c -------------------------------------------------------------------------------- /Quake/r_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/r_world.c -------------------------------------------------------------------------------- /Quake/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/render.h -------------------------------------------------------------------------------- /Quake/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/resource.h -------------------------------------------------------------------------------- /Quake/sbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sbar.c -------------------------------------------------------------------------------- /Quake/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sbar.h -------------------------------------------------------------------------------- /Quake/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/screen.h -------------------------------------------------------------------------------- /Quake/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/server.h -------------------------------------------------------------------------------- /Quake/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_codec.c -------------------------------------------------------------------------------- /Quake/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_codec.h -------------------------------------------------------------------------------- /Quake/snd_codeci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_codeci.h -------------------------------------------------------------------------------- /Quake/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_dma.c -------------------------------------------------------------------------------- /Quake/snd_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_flac.c -------------------------------------------------------------------------------- /Quake/snd_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_flac.h -------------------------------------------------------------------------------- /Quake/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mem.c -------------------------------------------------------------------------------- /Quake/snd_mikmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mikmod.c -------------------------------------------------------------------------------- /Quake/snd_mikmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mikmod.h -------------------------------------------------------------------------------- /Quake/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mix.c -------------------------------------------------------------------------------- /Quake/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mp3.c -------------------------------------------------------------------------------- /Quake/snd_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mp3.h -------------------------------------------------------------------------------- /Quake/snd_mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_mpg123.c -------------------------------------------------------------------------------- /Quake/snd_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_opus.c -------------------------------------------------------------------------------- /Quake/snd_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_opus.h -------------------------------------------------------------------------------- /Quake/snd_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_sdl.c -------------------------------------------------------------------------------- /Quake/snd_umx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_umx.c -------------------------------------------------------------------------------- /Quake/snd_umx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_umx.h -------------------------------------------------------------------------------- /Quake/snd_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_vorbis.c -------------------------------------------------------------------------------- /Quake/snd_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_vorbis.h -------------------------------------------------------------------------------- /Quake/snd_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_wave.c -------------------------------------------------------------------------------- /Quake/snd_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_wave.h -------------------------------------------------------------------------------- /Quake/snd_xmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_xmp.c -------------------------------------------------------------------------------- /Quake/snd_xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/snd_xmp.h -------------------------------------------------------------------------------- /Quake/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/spritegn.h -------------------------------------------------------------------------------- /Quake/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/stb_image_write.h -------------------------------------------------------------------------------- /Quake/strl_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/strl_fn.h -------------------------------------------------------------------------------- /Quake/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/strlcat.c -------------------------------------------------------------------------------- /Quake/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/strlcpy.c -------------------------------------------------------------------------------- /Quake/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sv_main.c -------------------------------------------------------------------------------- /Quake/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sv_move.c -------------------------------------------------------------------------------- /Quake/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sv_phys.c -------------------------------------------------------------------------------- /Quake/sv_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sv_user.c -------------------------------------------------------------------------------- /Quake/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sys.h -------------------------------------------------------------------------------- /Quake/sys_sdl_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sys_sdl_unix.c -------------------------------------------------------------------------------- /Quake/sys_sdl_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/sys_sdl_win.c -------------------------------------------------------------------------------- /Quake/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/vid.h -------------------------------------------------------------------------------- /Quake/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/view.c -------------------------------------------------------------------------------- /Quake/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/view.h -------------------------------------------------------------------------------- /Quake/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/wad.c -------------------------------------------------------------------------------- /Quake/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/wad.h -------------------------------------------------------------------------------- /Quake/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/world.c -------------------------------------------------------------------------------- /Quake/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/world.h -------------------------------------------------------------------------------- /Quake/wsaerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/wsaerror.h -------------------------------------------------------------------------------- /Quake/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/zone.c -------------------------------------------------------------------------------- /Quake/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quake/zone.h -------------------------------------------------------------------------------- /Quakespasm-Music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quakespasm-Music.txt -------------------------------------------------------------------------------- /Quakespasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quakespasm.html -------------------------------------------------------------------------------- /Quakespasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Quakespasm.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/README.md -------------------------------------------------------------------------------- /Windows/Lua/include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/include/lauxlib.h -------------------------------------------------------------------------------- /Windows/Lua/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/include/lua.h -------------------------------------------------------------------------------- /Windows/Lua/include/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/include/lua.hpp -------------------------------------------------------------------------------- /Windows/Lua/include/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/include/luaconf.h -------------------------------------------------------------------------------- /Windows/Lua/include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/include/lualib.h -------------------------------------------------------------------------------- /Windows/Lua/lua5.1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/Lua/lua5.1.lib -------------------------------------------------------------------------------- /Windows/LuaJit/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/COPYRIGHT -------------------------------------------------------------------------------- /Windows/LuaJit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/Makefile -------------------------------------------------------------------------------- /Windows/LuaJit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/README -------------------------------------------------------------------------------- /Windows/LuaJit/doc/bluequad-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/bluequad-print.css -------------------------------------------------------------------------------- /Windows/LuaJit/doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/bluequad.css -------------------------------------------------------------------------------- /Windows/LuaJit/doc/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/changes.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/contact.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_c_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_c_api.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_ffi.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_ffi_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_ffi_api.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_ffi_semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_ffi_semantics.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_ffi_tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_ffi_tutorial.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_jit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_jit.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/ext_profiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/ext_profiler.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/extensions.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/faq.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/img/contact.png -------------------------------------------------------------------------------- /Windows/LuaJit/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/install.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/luajit.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/running.html -------------------------------------------------------------------------------- /Windows/LuaJit/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/doc/status.html -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_arm64.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_arm64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_mips64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dasm_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dasm_x86.lua -------------------------------------------------------------------------------- /Windows/LuaJit/dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/dynasm/dynasm.lua -------------------------------------------------------------------------------- /Windows/LuaJit/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/etc/luajit.1 -------------------------------------------------------------------------------- /Windows/LuaJit/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/etc/luajit.pc -------------------------------------------------------------------------------- /Windows/LuaJit/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/.gitignore -------------------------------------------------------------------------------- /Windows/LuaJit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/Makefile -------------------------------------------------------------------------------- /Windows/LuaJit/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/Makefile.dep -------------------------------------------------------------------------------- /Windows/LuaJit/src/buildvm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/buildvm.exp -------------------------------------------------------------------------------- /Windows/LuaJit/src/buildvm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/buildvm.lib -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/.gitignore -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/README -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm_asm.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm_fold.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm_lib.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm_libbc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/buildvm_peobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/buildvm_peobj.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/genlibbc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/genlibbc.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/genminilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/genminilua.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/host/minilua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/host/minilua.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/bc.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/bcsave.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_arm.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_arm64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_arm64be.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_arm64be.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_mips.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_mips64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_mips64el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_mips64el.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_ppc.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_x64.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dis_x86.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/dump.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/p.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/v.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/jit/zone.lua -------------------------------------------------------------------------------- /Windows/LuaJit/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lauxlib.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_aux.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_base.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_bit.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_debug.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_ffi.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_init.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_io.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_jit.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_math.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_os.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_package.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_string.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lib_table.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj.supp -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_alloc.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_alloc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_api.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_arch.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm_arm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm_arm64.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm_mips.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_asm_x86.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_bc.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_bc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_bcdump.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_bcread.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_bcwrite.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_buf.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_buf.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_carith.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_carith.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ccall.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ccall.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ccallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ccallback.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ccallback.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cconv.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cconv.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cdata.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cdata.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_char.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_char.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_clib.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_clib.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cparse.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_cparse.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_crecord.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_crecord.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ctype.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ctype.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_debug.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_debug.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_def.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_dispatch.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_dispatch.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_emit_arm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_emit_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_emit_arm64.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_emit_mips.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_emit_x86.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_err.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_err.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_errmsg.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ff.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ffrecord.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ffrecord.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_frame.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_func.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_func.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_gc.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_gc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_gdbjit.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_gdbjit.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ir.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ir.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_ircall.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_iropt.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_jit.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_lex.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_lex.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_lib.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_lib.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_load.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_mcode.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_mcode.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_meta.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_meta.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_obj.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_obj.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_dce.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_fold.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_loop.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_mem.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_narrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_narrow.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_sink.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_opt_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_opt_split.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_parse.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_parse.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_profile.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_profile.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_record.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_record.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_snap.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_snap.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_state.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_state.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_str.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_str.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_strfmt.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_strfmt.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_strfmt_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_strfmt_num.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_strscan.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_strscan.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_tab.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_tab.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target_arm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target_arm64.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target_mips.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target_ppc.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_target_x86.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_trace.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_trace.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_traceerr.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_udata.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_udata.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_vm.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_vmevent.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_vmevent.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lj_vmmath.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/ljamalg.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lua.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lua.hpp -------------------------------------------------------------------------------- /Windows/LuaJit/src/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lua51.dll -------------------------------------------------------------------------------- /Windows/LuaJit/src/lua51.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lua51.exp -------------------------------------------------------------------------------- /Windows/LuaJit/src/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lua51.lib -------------------------------------------------------------------------------- /Windows/LuaJit/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luaconf.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luajit.c -------------------------------------------------------------------------------- /Windows/LuaJit/src/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luajit.exe -------------------------------------------------------------------------------- /Windows/LuaJit/src/luajit.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luajit.exp -------------------------------------------------------------------------------- /Windows/LuaJit/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luajit.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/luajit.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/luajit.lib -------------------------------------------------------------------------------- /Windows/LuaJit/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/lualib.h -------------------------------------------------------------------------------- /Windows/LuaJit/src/minilua.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/minilua.exp -------------------------------------------------------------------------------- /Windows/LuaJit/src/minilua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/minilua.lib -------------------------------------------------------------------------------- /Windows/LuaJit/src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/msvcbuild.bat -------------------------------------------------------------------------------- /Windows/LuaJit/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/ps4build.bat -------------------------------------------------------------------------------- /Windows/LuaJit/src/psvitabuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/psvitabuild.bat -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_arm.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_arm64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_arm64.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_mips.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_mips64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_mips64.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_ppc.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_x64.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/vm_x86.dasc -------------------------------------------------------------------------------- /Windows/LuaJit/src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/xb1build.bat -------------------------------------------------------------------------------- /Windows/LuaJit/src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/src/xedkbuild.bat -------------------------------------------------------------------------------- /Windows/LuaJit/x64/lua51.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/x64/lua51.exp -------------------------------------------------------------------------------- /Windows/LuaJit/x64/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/LuaJit/x64/lua51.lib -------------------------------------------------------------------------------- /Windows/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/BUGS.txt -------------------------------------------------------------------------------- /Windows/SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/COPYING.txt -------------------------------------------------------------------------------- /Windows/SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /Windows/SDL2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/README.txt -------------------------------------------------------------------------------- /Windows/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_android.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_os2.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_windows.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /Windows/SDL2/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/SDL_vulkan.h -------------------------------------------------------------------------------- /Windows/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /Windows/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/include/close_code.h -------------------------------------------------------------------------------- /Windows/SDL2/lib/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib/SDL2.dll -------------------------------------------------------------------------------- /Windows/SDL2/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib/SDL2.lib -------------------------------------------------------------------------------- /Windows/SDL2/lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib/SDL2main.lib -------------------------------------------------------------------------------- /Windows/SDL2/lib/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib/libSDL2.dll.a -------------------------------------------------------------------------------- /Windows/SDL2/lib/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib/libSDL2main.a -------------------------------------------------------------------------------- /Windows/SDL2/lib64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib64/SDL2.dll -------------------------------------------------------------------------------- /Windows/SDL2/lib64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib64/SDL2.lib -------------------------------------------------------------------------------- /Windows/SDL2/lib64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib64/SDL2main.lib -------------------------------------------------------------------------------- /Windows/SDL2/lib64/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib64/libSDL2.dll.a -------------------------------------------------------------------------------- /Windows/SDL2/lib64/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/lib64/libSDL2main.a -------------------------------------------------------------------------------- /Windows/SDL2/main/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/main/SDL_windows.h -------------------------------------------------------------------------------- /Windows/SDL2/main/SDL_windows_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/main/SDL_windows_main.c -------------------------------------------------------------------------------- /Windows/SDL2/watcom/SDL2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/watcom/SDL2.def -------------------------------------------------------------------------------- /Windows/SDL2/watcom/SDL2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/watcom/SDL2.exp -------------------------------------------------------------------------------- /Windows/SDL2/watcom/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/watcom/SDL2.lib -------------------------------------------------------------------------------- /Windows/SDL2/watcom/def2lbc.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/watcom/def2lbc.awk -------------------------------------------------------------------------------- /Windows/SDL2/watcom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/SDL2/watcom/makefile -------------------------------------------------------------------------------- /Windows/VisualStudio/slipgate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/VisualStudio/slipgate.sln -------------------------------------------------------------------------------- /Windows/VisualStudio/slipgate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/VisualStudio/slipgate.vcxproj -------------------------------------------------------------------------------- /Windows/VisualStudio/slipgate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/VisualStudio/slipgate.vcxproj.user -------------------------------------------------------------------------------- /Windows/codecs/include/FLAC/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/FLAC/callback.h -------------------------------------------------------------------------------- /Windows/codecs/include/FLAC/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/FLAC/export.h -------------------------------------------------------------------------------- /Windows/codecs/include/FLAC/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/FLAC/format.h -------------------------------------------------------------------------------- /Windows/codecs/include/FLAC/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/FLAC/ordinals.h -------------------------------------------------------------------------------- /Windows/codecs/include/FLAC/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/FLAC/stream_decoder.h -------------------------------------------------------------------------------- /Windows/codecs/include/flac_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/flac_config.txt -------------------------------------------------------------------------------- /Windows/codecs/include/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/mad.h -------------------------------------------------------------------------------- /Windows/codecs/include/mikmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/mikmod.h -------------------------------------------------------------------------------- /Windows/codecs/include/mikmod_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/mikmod_config.txt -------------------------------------------------------------------------------- /Windows/codecs/include/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/mpg123.h -------------------------------------------------------------------------------- /Windows/codecs/include/mpg123_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/mpg123_config.txt -------------------------------------------------------------------------------- /Windows/codecs/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/ogg/config_types.h -------------------------------------------------------------------------------- /Windows/codecs/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/ogg/ogg.h -------------------------------------------------------------------------------- /Windows/codecs/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/ogg/os_types.h -------------------------------------------------------------------------------- /Windows/codecs/include/opus/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opus/opus.h -------------------------------------------------------------------------------- /Windows/codecs/include/opus/opus_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opus/opus_defines.h -------------------------------------------------------------------------------- /Windows/codecs/include/opus/opus_multistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opus/opus_multistream.h -------------------------------------------------------------------------------- /Windows/codecs/include/opus/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opus/opus_types.h -------------------------------------------------------------------------------- /Windows/codecs/include/opus/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opus/opusfile.h -------------------------------------------------------------------------------- /Windows/codecs/include/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/opusfile.h -------------------------------------------------------------------------------- /Windows/codecs/include/tremor/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/tremor/config_types.h -------------------------------------------------------------------------------- /Windows/codecs/include/tremor/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/tremor/ivorbiscodec.h -------------------------------------------------------------------------------- /Windows/codecs/include/tremor/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/tremor/ivorbisfile.h -------------------------------------------------------------------------------- /Windows/codecs/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/vorbis/codec.h -------------------------------------------------------------------------------- /Windows/codecs/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /Windows/codecs/include/xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/include/xmp.h -------------------------------------------------------------------------------- /Windows/codecs/x64/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libFLAC-8.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libFLAC.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libFLAC.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libFLAC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libFLAC.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libmad-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmad-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libmad.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmad.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libmad.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmad.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libmikmod-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmikmod-3.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libmikmod.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmikmod.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libmikmod.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmikmod.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmpg123-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libmpg123.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmpg123.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libmpg123.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libmpg123.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libogg-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libogg.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libogg.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libogg.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopus-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libopus.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopus.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libopus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopus.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopusfile-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libopusfile.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopusfile.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libopusfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libopusfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbis-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbis.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbis.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbis.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbisfile-3.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbisfile.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbisfile.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libvorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libvorbisfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x64/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libxmp.dll -------------------------------------------------------------------------------- /Windows/codecs/x64/libxmp.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libxmp.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x64/libxmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x64/libxmp.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/FLAC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/FLAC.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/libxmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/libxmp.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/mad.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/mad.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/mikmod.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/mikmod.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/ogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/ogg.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/opus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/opus.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/opusfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/opusfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/vorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/vorbis.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/vorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/vorbisfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x86-watcom/vorbisidec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86-watcom/vorbisidec.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libFLAC-8.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libFLAC.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libFLAC.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libFLAC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libFLAC.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libmad-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmad-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libmad.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmad.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libmad.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmad.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libmikmod-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmikmod-3.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libmikmod.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmikmod.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libmikmod.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmikmod.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmpg123-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libmpg123.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmpg123.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libmpg123.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libmpg123.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libogg-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libogg.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libogg.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libogg.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopus-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libopus.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopus.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libopus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopus.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopusfile-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libopusfile.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopusfile.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libopusfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libopusfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbis-0.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbis.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbis.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbis.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbisfile-3.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbisfile.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbisfile.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libvorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libvorbisfile.lib -------------------------------------------------------------------------------- /Windows/codecs/x86/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libxmp.dll -------------------------------------------------------------------------------- /Windows/codecs/x86/libxmp.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libxmp.dll.a -------------------------------------------------------------------------------- /Windows/codecs/x86/libxmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/codecs/x86/libxmp.lib -------------------------------------------------------------------------------- /Windows/misc/include/msinttypes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/include/msinttypes/README.txt -------------------------------------------------------------------------------- /Windows/misc/include/msinttypes/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/include/msinttypes/changelog.txt -------------------------------------------------------------------------------- /Windows/misc/include/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/include/msinttypes/inttypes.h -------------------------------------------------------------------------------- /Windows/misc/include/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/include/msinttypes/stdint.h -------------------------------------------------------------------------------- /Windows/misc/x64/libvulkan-1.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/x64/libvulkan-1.dll.a -------------------------------------------------------------------------------- /Windows/misc/x64/vulkan-1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/x64/vulkan-1.def -------------------------------------------------------------------------------- /Windows/misc/x86/libvulkan-1.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/x86/libvulkan-1.dll.a -------------------------------------------------------------------------------- /Windows/misc/x86/vulkan-1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/misc/x86/vulkan-1.def -------------------------------------------------------------------------------- /Windows/slipgate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/Windows/slipgate.ico -------------------------------------------------------------------------------- /Windows/slipgate.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | icon ICON "slipgate.ico" 4 | -------------------------------------------------------------------------------- /slipgate/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/SDL2.dll -------------------------------------------------------------------------------- /slipgate/id1/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/config.cfg -------------------------------------------------------------------------------- /slipgate/id1/particleshape.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/particleshape.tga -------------------------------------------------------------------------------- /slipgate/id1/put_PAK_files_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/client.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/gib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/gib.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/gore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/gore.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/main.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/modeldraw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/modeldraw.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/nativefunctions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/nativefunctions.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/nativetypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/nativetypes.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/particles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/particles.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/cl/weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/cl/weapons.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/nativetypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/nativetypes.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/serialize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/serialize.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sharedlib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sharedlib.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/finalizeqc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/finalizeqc.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/gib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/gib.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/main.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/qc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/qc.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/startframe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/startframe.lua -------------------------------------------------------------------------------- /slipgate/id1/qlua/sv/weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/id1/qlua/sv/weapons.lua -------------------------------------------------------------------------------- /slipgate/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/bc.lua -------------------------------------------------------------------------------- /slipgate/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/bcsave.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_arm.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_mips.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_ppc.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_x64.lua -------------------------------------------------------------------------------- /slipgate/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dis_x86.lua -------------------------------------------------------------------------------- /slipgate/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/dump.lua -------------------------------------------------------------------------------- /slipgate/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/v.lua -------------------------------------------------------------------------------- /slipgate/jit/vmdef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/jit/vmdef.lua -------------------------------------------------------------------------------- /slipgate/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libFLAC-8.dll -------------------------------------------------------------------------------- /slipgate/libmad-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libmad-0.dll -------------------------------------------------------------------------------- /slipgate/libmikmod-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libmikmod-3.dll -------------------------------------------------------------------------------- /slipgate/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libmpg123-0.dll -------------------------------------------------------------------------------- /slipgate/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libogg-0.dll -------------------------------------------------------------------------------- /slipgate/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libopus-0.dll -------------------------------------------------------------------------------- /slipgate/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libopusfile-0.dll -------------------------------------------------------------------------------- /slipgate/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libvorbis-0.dll -------------------------------------------------------------------------------- /slipgate/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libvorbisfile-3.dll -------------------------------------------------------------------------------- /slipgate/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/libxmp.dll -------------------------------------------------------------------------------- /slipgate/slipgate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/slipgate.exe -------------------------------------------------------------------------------- /slipgate/slipgate.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/slipgate.exp -------------------------------------------------------------------------------- /slipgate/slipgate.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KurtLoeffler/Slipgate/HEAD/slipgate/slipgate.lib --------------------------------------------------------------------------------