├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYING.txt ├── ChangeLog ├── Makefile ├── README.md ├── SECURITY.md ├── TODO ├── autoupdater-readme.txt ├── code ├── AL │ ├── VERSION │ ├── al.h │ ├── alc.h │ ├── alext.h │ ├── efx-creative.h │ ├── efx-presets.h │ └── efx.h ├── SDL2 │ ├── include-macppc │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_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_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.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_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.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 ├── asm │ ├── ftola.asm │ ├── ftola.c │ ├── matha.s │ ├── qasm-inline.h │ ├── qasm.h │ ├── snapvector.asm │ ├── snapvector.c │ ├── snd_mixa.s │ └── vm_x86_64.asm ├── autoupdater │ ├── autoupdater.c │ └── rsa_tools │ │ ├── .gitignore │ │ ├── build-libtom-unix.sh │ │ ├── build-rsa-tools.sh │ │ ├── rsa_common.c │ │ ├── rsa_common.h │ │ ├── rsa_make_keys.c │ │ ├── rsa_sign.c │ │ ├── rsa_verify.c │ │ └── test-rsa-tools.sh ├── botlib │ ├── aasfile.h │ ├── be_aas.h │ ├── be_aas_bsp.h │ ├── be_aas_bspq3.c │ ├── be_aas_cluster.c │ ├── be_aas_cluster.h │ ├── be_aas_debug.c │ ├── be_aas_debug.h │ ├── be_aas_def.h │ ├── be_aas_entity.c │ ├── be_aas_entity.h │ ├── be_aas_file.c │ ├── be_aas_file.h │ ├── be_aas_funcs.h │ ├── be_aas_main.c │ ├── be_aas_main.h │ ├── be_aas_move.c │ ├── be_aas_move.h │ ├── be_aas_optimize.c │ ├── be_aas_optimize.h │ ├── be_aas_reach.c │ ├── be_aas_reach.h │ ├── be_aas_route.c │ ├── be_aas_route.h │ ├── be_aas_routealt.c │ ├── be_aas_routealt.h │ ├── be_aas_sample.c │ ├── be_aas_sample.h │ ├── be_ai_char.c │ ├── be_ai_char.h │ ├── be_ai_chat.c │ ├── be_ai_chat.h │ ├── be_ai_gen.c │ ├── be_ai_gen.h │ ├── be_ai_goal.c │ ├── be_ai_goal.h │ ├── be_ai_move.c │ ├── be_ai_move.h │ ├── be_ai_weap.c │ ├── be_ai_weap.h │ ├── be_ai_weight.c │ ├── be_ai_weight.h │ ├── be_ea.c │ ├── be_ea.h │ ├── be_interface.c │ ├── be_interface.h │ ├── botlib.h │ ├── l_crc.c │ ├── l_crc.h │ ├── l_libvar.c │ ├── l_libvar.h │ ├── l_log.c │ ├── l_log.h │ ├── l_memory.c │ ├── l_memory.h │ ├── l_precomp.c │ ├── l_precomp.h │ ├── l_script.c │ ├── l_script.h │ ├── l_struct.c │ ├── l_struct.h │ └── l_utils.h ├── cgame │ ├── cg_consolecmds.c │ ├── cg_draw.c │ ├── cg_drawtools.c │ ├── cg_effects.c │ ├── cg_ents.c │ ├── cg_event.c │ ├── cg_info.c │ ├── cg_local.h │ ├── cg_localents.c │ ├── cg_main.c │ ├── cg_marks.c │ ├── cg_newdraw.c │ ├── cg_particles.c │ ├── cg_players.c │ ├── cg_playerstate.c │ ├── cg_predict.c │ ├── cg_public.h │ ├── cg_scoreboard.c │ ├── cg_servercmds.c │ ├── cg_snapshot.c │ ├── cg_syscalls.asm │ ├── cg_syscalls.c │ ├── cg_view.c │ └── cg_weapons.c ├── client │ ├── cl_avi.c │ ├── cl_cgame.c │ ├── cl_cin.c │ ├── cl_console.c │ ├── cl_curl.c │ ├── cl_curl.h │ ├── cl_input.c │ ├── cl_keys.c │ ├── cl_main.c │ ├── cl_net_chan.c │ ├── cl_parse.c │ ├── cl_scrn.c │ ├── cl_ui.c │ ├── client.h │ ├── keycodes.h │ ├── keys.h │ ├── libmumblelink.c │ ├── libmumblelink.h │ ├── qal.c │ ├── qal.h │ ├── snd_adpcm.c │ ├── snd_altivec.c │ ├── snd_codec.c │ ├── snd_codec.h │ ├── snd_codec_ogg.c │ ├── snd_codec_opus.c │ ├── snd_codec_wav.c │ ├── snd_dma.c │ ├── snd_local.h │ ├── snd_main.c │ ├── snd_mem.c │ ├── snd_mix.c │ ├── snd_openal.c │ ├── snd_public.h │ └── snd_wavelet.c ├── curl-7.54.0 │ └── include │ │ ├── README │ │ └── curl │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ └── typecheck-gcc.h ├── game │ ├── ai_chat.c │ ├── ai_chat.h │ ├── ai_cmd.c │ ├── ai_cmd.h │ ├── ai_dmnet.c │ ├── ai_dmnet.h │ ├── ai_dmq3.c │ ├── ai_dmq3.h │ ├── ai_main.c │ ├── ai_main.h │ ├── ai_team.c │ ├── ai_team.h │ ├── ai_vcmd.c │ ├── ai_vcmd.h │ ├── bg_lib.c │ ├── bg_lib.h │ ├── bg_local.h │ ├── bg_misc.c │ ├── bg_pmove.c │ ├── bg_public.h │ ├── bg_slidemove.c │ ├── chars.h │ ├── g_active.c │ ├── g_arenas.c │ ├── g_bot.c │ ├── g_client.c │ ├── g_cmds.c │ ├── g_combat.c │ ├── g_items.c │ ├── g_local.h │ ├── g_main.c │ ├── g_mem.c │ ├── g_misc.c │ ├── g_missile.c │ ├── g_mover.c │ ├── g_public.h │ ├── g_rankings.c │ ├── g_rankings.h │ ├── g_session.c │ ├── g_spawn.c │ ├── g_svcmds.c │ ├── g_syscalls.asm │ ├── g_syscalls.c │ ├── g_target.c │ ├── g_team.c │ ├── g_team.h │ ├── g_trigger.c │ ├── g_utils.c │ ├── g_weapon.c │ ├── inv.h │ ├── match.h │ └── syn.h ├── jpeg-8c │ ├── README │ ├── ioquake3-changes.diff │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ └── jversion.h ├── libogg-1.3.3 │ ├── include │ │ └── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ └── src │ │ ├── bitwise.c │ │ └── framing.c ├── libs │ ├── macosx-universal │ │ ├── libSDL2-2.0.0.dylib │ │ └── libSDL2main.a │ ├── macosx-universal2 │ │ ├── libSDL2-2.0.0.dylib │ │ └── libSDL2main.a │ ├── win32 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ ├── libSDL2.dll.a │ │ ├── libSDL2main.a │ │ └── libcurl.a │ └── win64 │ │ ├── SDL264.dll │ │ ├── SDL264.lib │ │ ├── SDL264main.lib │ │ ├── libSDL264.dll.a │ │ ├── libSDL264main.a │ │ └── libcurl.a ├── libvorbis-1.3.6 │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ └── lib │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h ├── null │ ├── mac_net.c │ ├── null_client.c │ ├── null_glimp.c │ ├── null_input.c │ ├── null_main.c │ ├── null_net.c │ └── null_snddma.c ├── opus-1.2.1 │ ├── celt │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── arm_celt_map.c │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armopts.s.in │ │ │ ├── celt_ne10_fft.c │ │ │ ├── celt_ne10_mdct.c │ │ │ ├── celt_neon_intr.c │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ ├── fft_arm.h │ │ │ ├── fixed_arm64.h │ │ │ ├── fixed_armv4.h │ │ │ ├── fixed_armv5e.h │ │ │ ├── kiss_fft_armv4.h │ │ │ ├── kiss_fft_armv5e.h │ │ │ ├── mdct_arm.h │ │ │ ├── pitch_arm.h │ │ │ └── pitch_neon_intr.c │ │ ├── bands.c │ │ ├── bands.h │ │ ├── celt.c │ │ ├── celt.h │ │ ├── celt_decoder.c │ │ ├── celt_encoder.c │ │ ├── celt_lpc.c │ │ ├── celt_lpc.h │ │ ├── cpu_support.h │ │ ├── cwrs.c │ │ ├── cwrs.h │ │ ├── ecintrin.h │ │ ├── entcode.c │ │ ├── entcode.h │ │ ├── entdec.c │ │ ├── entdec.h │ │ ├── entenc.c │ │ ├── entenc.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── float_cast.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── laplace.c │ │ ├── laplace.h │ │ ├── mathops.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mfrngcod.h │ │ ├── mips │ │ │ ├── celt_mipsr1.h │ │ │ ├── fixed_generic_mipsr1.h │ │ │ ├── kiss_fft_mipsr1.h │ │ │ ├── mdct_mipsr1.h │ │ │ ├── pitch_mipsr1.h │ │ │ └── vq_mipsr1.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── opus_custom_demo.c │ │ ├── os_support.h │ │ ├── pitch.c │ │ ├── pitch.h │ │ ├── quant_bands.c │ │ ├── quant_bands.h │ │ ├── rate.c │ │ ├── rate.h │ │ ├── stack_alloc.h │ │ ├── static_modes_fixed.h │ │ ├── static_modes_fixed_arm_ne10.h │ │ ├── static_modes_float.h │ │ ├── static_modes_float_arm_ne10.h │ │ ├── vq.c │ │ ├── vq.h │ │ └── x86 │ │ │ ├── celt_lpc_sse.c │ │ │ ├── celt_lpc_sse.h │ │ │ ├── pitch_sse.c │ │ │ ├── pitch_sse.h │ │ │ ├── pitch_sse2.c │ │ │ ├── pitch_sse4_1.c │ │ │ ├── vq_sse.h │ │ │ ├── vq_sse2.c │ │ │ ├── x86_celt_map.c │ │ │ ├── x86cpu.c │ │ │ └── x86cpu.h │ ├── include │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ └── opus_types.h │ ├── silk │ │ ├── A2NLSF.c │ │ ├── API.h │ │ ├── CNG.c │ │ ├── HP_variable_cutoff.c │ │ ├── Inlines.h │ │ ├── LPC_analysis_filter.c │ │ ├── LPC_fit.c │ │ ├── LPC_inv_pred_gain.c │ │ ├── LP_variable_cutoff.c │ │ ├── MacroCount.h │ │ ├── MacroDebug.h │ │ ├── NLSF2A.c │ │ ├── NLSF_VQ.c │ │ ├── NLSF_VQ_weights_laroia.c │ │ ├── NLSF_decode.c │ │ ├── NLSF_del_dec_quant.c │ │ ├── NLSF_encode.c │ │ ├── NLSF_stabilize.c │ │ ├── NLSF_unpack.c │ │ ├── NSQ.c │ │ ├── NSQ.h │ │ ├── NSQ_del_dec.c │ │ ├── PLC.c │ │ ├── PLC.h │ │ ├── SigProc_FIX.h │ │ ├── VAD.c │ │ ├── VQ_WMat_EC.c │ │ ├── ana_filt_bank_1.c │ │ ├── arm │ │ │ ├── LPC_inv_pred_gain_arm.h │ │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ │ ├── NSQ_del_dec_arm.h │ │ │ ├── NSQ_del_dec_neon_intr.c │ │ │ ├── NSQ_neon.c │ │ │ ├── NSQ_neon.h │ │ │ ├── SigProc_FIX_armv4.h │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ ├── arm_silk_map.c │ │ │ ├── biquad_alt_arm.h │ │ │ ├── biquad_alt_neon_intr.c │ │ │ ├── macros_arm64.h │ │ │ ├── macros_armv4.h │ │ │ └── macros_armv5e.h │ │ ├── biquad_alt.c │ │ ├── bwexpander.c │ │ ├── bwexpander_32.c │ │ ├── check_control_input.c │ │ ├── code_signs.c │ │ ├── control.h │ │ ├── control_SNR.c │ │ ├── control_audio_bandwidth.c │ │ ├── control_codec.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dec_API.c │ │ ├── decode_core.c │ │ ├── decode_frame.c │ │ ├── decode_indices.c │ │ ├── decode_parameters.c │ │ ├── decode_pitch.c │ │ ├── decode_pulses.c │ │ ├── decoder_set_fs.c │ │ ├── define.h │ │ ├── enc_API.c │ │ ├── encode_indices.c │ │ ├── encode_pulses.c │ │ ├── errors.h │ │ ├── fixed │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ ├── apply_sine_window_FIX.c │ │ │ ├── autocorr_FIX.c │ │ │ ├── burg_modified_FIX.c │ │ │ ├── corrMatrix_FIX.c │ │ │ ├── encode_frame_FIX.c │ │ │ ├── find_LPC_FIX.c │ │ │ ├── find_LTP_FIX.c │ │ │ ├── find_pitch_lags_FIX.c │ │ │ ├── find_pred_coefs_FIX.c │ │ │ ├── k2a_FIX.c │ │ │ ├── k2a_Q16_FIX.c │ │ │ ├── main_FIX.h │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ ├── process_gains_FIX.c │ │ │ ├── regularize_correlations_FIX.c │ │ │ ├── residual_energy16_FIX.c │ │ │ ├── residual_energy_FIX.c │ │ │ ├── schur64_FIX.c │ │ │ ├── schur_FIX.c │ │ │ ├── structs_FIX.h │ │ │ ├── vector_ops_FIX.c │ │ │ └── warped_autocorrelation_FIX.c │ │ ├── float │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ ├── SigProc_FLP.h │ │ │ ├── apply_sine_window_FLP.c │ │ │ ├── autocorrelation_FLP.c │ │ │ ├── burg_modified_FLP.c │ │ │ ├── bwexpander_FLP.c │ │ │ ├── corrMatrix_FLP.c │ │ │ ├── encode_frame_FLP.c │ │ │ ├── energy_FLP.c │ │ │ ├── find_LPC_FLP.c │ │ │ ├── find_LTP_FLP.c │ │ │ ├── find_pitch_lags_FLP.c │ │ │ ├── find_pred_coefs_FLP.c │ │ │ ├── inner_product_FLP.c │ │ │ ├── k2a_FLP.c │ │ │ ├── main_FLP.h │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ ├── process_gains_FLP.c │ │ │ ├── regularize_correlations_FLP.c │ │ │ ├── residual_energy_FLP.c │ │ │ ├── scale_copy_vector_FLP.c │ │ │ ├── scale_vector_FLP.c │ │ │ ├── schur_FLP.c │ │ │ ├── sort_FLP.c │ │ │ ├── structs_FLP.h │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ └── wrappers_FLP.c │ │ ├── gain_quant.c │ │ ├── init_decoder.c │ │ ├── init_encoder.c │ │ ├── inner_prod_aligned.c │ │ ├── interpolate.c │ │ ├── lin2log.c │ │ ├── log2lin.c │ │ ├── macros.h │ │ ├── main.h │ │ ├── mips │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ ├── macros_mipsr1.h │ │ │ └── sigproc_fix_mipsr1.h │ │ ├── pitch_est_defines.h │ │ ├── pitch_est_tables.c │ │ ├── process_NLSFs.c │ │ ├── quant_LTP_gains.c │ │ ├── resampler.c │ │ ├── resampler_down2.c │ │ ├── resampler_down2_3.c │ │ ├── resampler_private.h │ │ ├── resampler_private_AR2.c │ │ ├── resampler_private_IIR_FIR.c │ │ ├── resampler_private_down_FIR.c │ │ ├── resampler_private_up2_HQ.c │ │ ├── resampler_rom.c │ │ ├── resampler_rom.h │ │ ├── resampler_structs.h │ │ ├── shell_coder.c │ │ ├── sigm_Q15.c │ │ ├── sort.c │ │ ├── stereo_LR_to_MS.c │ │ ├── stereo_MS_to_LR.c │ │ ├── stereo_decode_pred.c │ │ ├── stereo_encode_pred.c │ │ ├── stereo_find_predictor.c │ │ ├── stereo_quant_pred.c │ │ ├── structs.h │ │ ├── sum_sqr_shift.c │ │ ├── table_LSF_cos.c │ │ ├── tables.h │ │ ├── tables_LTP.c │ │ ├── tables_NLSF_CB_NB_MB.c │ │ ├── tables_NLSF_CB_WB.c │ │ ├── tables_gain.c │ │ ├── tables_other.c │ │ ├── tables_pitch_lag.c │ │ ├── tables_pulses_per_block.c │ │ ├── tuning_parameters.h │ │ ├── typedef.h │ │ └── x86 │ │ │ ├── NSQ_del_dec_sse.c │ │ │ ├── NSQ_sse.c │ │ │ ├── SigProc_FIX_sse.h │ │ │ ├── VAD_sse.c │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ ├── main_sse.h │ │ │ └── x86_silk_map.c │ └── src │ │ ├── analysis.c │ │ ├── analysis.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_data.c │ │ ├── opus.c │ │ ├── opus_decoder.c │ │ ├── opus_encoder.c │ │ ├── opus_multistream.c │ │ ├── opus_multistream_decoder.c │ │ ├── opus_multistream_encoder.c │ │ ├── opus_private.h │ │ ├── repacketizer.c │ │ └── tansig_table.h ├── opusfile-0.9 │ ├── include │ │ └── opusfile.h │ └── src │ │ ├── http.c │ │ ├── info.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── opusfile.c │ │ ├── stream.c │ │ ├── wincerts.c │ │ └── winerrno.h ├── q3_ui │ ├── ui_addbots.c │ ├── ui_atoms.c │ ├── ui_cdkey.c │ ├── ui_cinematics.c │ ├── ui_confirm.c │ ├── ui_connect.c │ ├── ui_controls2.c │ ├── ui_credits.c │ ├── ui_demo2.c │ ├── ui_display.c │ ├── ui_gameinfo.c │ ├── ui_ingame.c │ ├── ui_loadconfig.c │ ├── ui_local.h │ ├── ui_login.c │ ├── ui_main.c │ ├── ui_menu.c │ ├── ui_mfield.c │ ├── ui_mods.c │ ├── ui_network.c │ ├── ui_options.c │ ├── ui_playermodel.c │ ├── ui_players.c │ ├── ui_playersettings.c │ ├── ui_preferences.c │ ├── ui_qmenu.c │ ├── ui_rankings.c │ ├── ui_rankstatus.c │ ├── ui_removebots.c │ ├── ui_saveconfig.c │ ├── ui_serverinfo.c │ ├── ui_servers2.c │ ├── ui_setup.c │ ├── ui_signup.c │ ├── ui_sound.c │ ├── ui_sparena.c │ ├── ui_specifyleague.c │ ├── ui_specifyserver.c │ ├── ui_splevel.c │ ├── ui_sppostgame.c │ ├── ui_spreset.c │ ├── ui_spskill.c │ ├── ui_startserver.c │ ├── ui_team.c │ ├── ui_teamorders.c │ └── ui_video.c ├── qcommon │ ├── cm_load.c │ ├── cm_local.h │ ├── cm_patch.c │ ├── cm_patch.h │ ├── cm_polylib.c │ ├── cm_polylib.h │ ├── cm_public.h │ ├── cm_test.c │ ├── cm_trace.c │ ├── cmd.c │ ├── common.c │ ├── cvar.c │ ├── files.c │ ├── huffman.c │ ├── ioapi.c │ ├── ioapi.h │ ├── json.h │ ├── md4.c │ ├── md5.c │ ├── msg.c │ ├── net_chan.c │ ├── net_ip.c │ ├── puff.c │ ├── puff.h │ ├── q_math.c │ ├── q_platform.h │ ├── q_shared.c │ ├── q_shared.h │ ├── qcommon.h │ ├── qfiles.h │ ├── surfaceflags.h │ ├── unzip.c │ ├── unzip.h │ ├── vm.c │ ├── vm_armv7l.c │ ├── vm_interpreted.c │ ├── vm_local.h │ ├── vm_none.c │ ├── vm_powerpc.c │ ├── vm_powerpc_asm.c │ ├── vm_powerpc_asm.h │ ├── vm_sparc.c │ ├── vm_sparc.h │ └── vm_x86.c ├── renderercommon │ ├── iqm.h │ ├── qgl.h │ ├── tr_common.h │ ├── tr_font.c │ ├── tr_image_bmp.c │ ├── tr_image_jpg.c │ ├── tr_image_pcx.c │ ├── tr_image_png.c │ ├── tr_image_tga.c │ ├── tr_noise.c │ ├── tr_public.h │ └── tr_types.h ├── renderergl1 │ ├── tr_altivec.c │ ├── tr_animation.c │ ├── tr_backend.c │ ├── tr_bsp.c │ ├── tr_cmds.c │ ├── tr_curve.c │ ├── tr_flares.c │ ├── tr_image.c │ ├── tr_init.c │ ├── tr_light.c │ ├── tr_local.h │ ├── tr_main.c │ ├── tr_marks.c │ ├── tr_mesh.c │ ├── tr_model.c │ ├── tr_model_iqm.c │ ├── tr_scene.c │ ├── tr_shade.c │ ├── tr_shade_calc.c │ ├── tr_shader.c │ ├── tr_shadows.c │ ├── tr_sky.c │ ├── tr_subs.c │ ├── tr_surface.c │ └── tr_world.c ├── renderergl2 │ ├── glsl │ │ ├── bokeh_fp.glsl │ │ ├── bokeh_vp.glsl │ │ ├── calclevels4x_fp.glsl │ │ ├── calclevels4x_vp.glsl │ │ ├── depthblur_fp.glsl │ │ ├── depthblur_vp.glsl │ │ ├── dlight_fp.glsl │ │ ├── dlight_vp.glsl │ │ ├── down4x_fp.glsl │ │ ├── down4x_vp.glsl │ │ ├── fogpass_fp.glsl │ │ ├── fogpass_vp.glsl │ │ ├── generic_fp.glsl │ │ ├── generic_vp.glsl │ │ ├── lightall_fp.glsl │ │ ├── lightall_vp.glsl │ │ ├── pshadow_fp.glsl │ │ ├── pshadow_vp.glsl │ │ ├── shadowfill_fp.glsl │ │ ├── shadowfill_vp.glsl │ │ ├── shadowmask_fp.glsl │ │ ├── shadowmask_vp.glsl │ │ ├── ssao_fp.glsl │ │ ├── ssao_vp.glsl │ │ ├── texturecolor_fp.glsl │ │ ├── texturecolor_vp.glsl │ │ ├── tonemap_fp.glsl │ │ └── tonemap_vp.glsl │ ├── tr_animation.c │ ├── tr_backend.c │ ├── tr_bsp.c │ ├── tr_cmds.c │ ├── tr_curve.c │ ├── tr_dsa.c │ ├── tr_dsa.h │ ├── tr_extensions.c │ ├── tr_extramath.c │ ├── tr_extramath.h │ ├── tr_extratypes.h │ ├── tr_fbo.c │ ├── tr_fbo.h │ ├── tr_flares.c │ ├── tr_glsl.c │ ├── tr_image.c │ ├── tr_image_dds.c │ ├── tr_init.c │ ├── tr_light.c │ ├── tr_local.h │ ├── tr_main.c │ ├── tr_marks.c │ ├── tr_mesh.c │ ├── tr_model.c │ ├── tr_model_iqm.c │ ├── tr_postprocess.c │ ├── tr_postprocess.h │ ├── tr_scene.c │ ├── tr_shade.c │ ├── tr_shade_calc.c │ ├── tr_shader.c │ ├── tr_shadows.c │ ├── tr_sky.c │ ├── tr_subs.c │ ├── tr_surface.c │ ├── tr_vbo.c │ └── tr_world.c ├── sdl │ ├── sdl_gamma.c │ ├── sdl_glimp.c │ ├── sdl_icon.h │ ├── sdl_input.c │ └── sdl_snd.c ├── server │ ├── server.h │ ├── sv_bot.c │ ├── sv_ccmds.c │ ├── sv_client.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_main.c │ ├── sv_net_chan.c │ ├── sv_rankings.c │ ├── sv_snapshot.c │ └── sv_world.c ├── sys │ ├── con_log.c │ ├── con_passive.c │ ├── con_tty.c │ ├── con_win32.c │ ├── sys_autoupdater.c │ ├── sys_loadlib.h │ ├── sys_local.h │ ├── sys_main.c │ ├── sys_osx.m │ ├── sys_unix.c │ ├── sys_win32.c │ ├── win_manifest.xml │ ├── win_resource.h │ └── win_resource.rc ├── tools │ ├── asm │ │ ├── README.Id │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── lib.txt │ │ ├── mathlib.h │ │ ├── notes.txt │ │ ├── ops.txt │ │ ├── opstrings.h │ │ └── q3asm.c │ ├── lcc │ │ ├── COPYRIGHT │ │ ├── LOG │ │ ├── README │ │ ├── README.id │ │ ├── cpp │ │ │ ├── cpp.c │ │ │ ├── cpp.h │ │ │ ├── eval.c │ │ │ ├── getopt.c │ │ │ ├── hideset.c │ │ │ ├── include.c │ │ │ ├── lex.c │ │ │ ├── macro.c │ │ │ ├── nlist.c │ │ │ ├── tokens.c │ │ │ └── unix.c │ │ ├── doc │ │ │ ├── 4.html │ │ │ ├── bprint.1 │ │ │ ├── bprint.pdf │ │ │ ├── install.html │ │ │ ├── lcc.1 │ │ │ └── lcc.pdf │ │ ├── etc │ │ │ ├── bytecode.c │ │ │ └── lcc.c │ │ ├── lburg │ │ │ ├── gram.c │ │ │ ├── gram.y │ │ │ ├── lburg.1 │ │ │ ├── lburg.c │ │ │ └── lburg.h │ │ └── src │ │ │ ├── alloc.c │ │ │ ├── bind.c │ │ │ ├── bytecode.c │ │ │ ├── c.h │ │ │ ├── config.h │ │ │ ├── dag.c │ │ │ ├── dagcheck.md │ │ │ ├── decl.c │ │ │ ├── enode.c │ │ │ ├── error.c │ │ │ ├── event.c │ │ │ ├── expr.c │ │ │ ├── gen.c │ │ │ ├── init.c │ │ │ ├── inits.c │ │ │ ├── input.c │ │ │ ├── lex.c │ │ │ ├── list.c │ │ │ ├── main.c │ │ │ ├── null.c │ │ │ ├── output.c │ │ │ ├── prof.c │ │ │ ├── profio.c │ │ │ ├── simp.c │ │ │ ├── stmt.c │ │ │ ├── string.c │ │ │ ├── sym.c │ │ │ ├── symbolic.c │ │ │ ├── token.h │ │ │ ├── trace.c │ │ │ ├── tree.c │ │ │ └── types.c │ └── stringify.c ├── ui │ ├── ui_atoms.c │ ├── ui_gameinfo.c │ ├── ui_local.h │ ├── ui_main.c │ ├── ui_players.c │ ├── ui_public.h │ ├── ui_shared.c │ ├── ui_shared.h │ ├── ui_syscalls.asm │ └── ui_syscalls.c └── zlib │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── id-readme.txt ├── macsourceports_universal2.sh ├── make-macosx-app.sh ├── make-macosx-ub.sh ├── make-macosx-ub2.sh ├── make-macosx.sh ├── md4-readme.txt ├── misc ├── ReadMe-OSX.rtf ├── ioquake3-folder.icns ├── linux │ ├── q3a.service │ ├── server_compile.sh │ └── start_server.sh ├── msvc │ ├── cgame.def │ ├── cgame.vcproj │ ├── game.def │ ├── game.vcproj │ ├── glsl_stringify.vbs │ ├── ioq3.sln │ ├── opengl1.vcproj │ ├── opengl2.vcproj │ ├── q3_ui.def │ ├── q3_ui.vcproj │ ├── quake3.vcproj │ ├── ui.def │ └── ui.vcproj ├── msvc10 │ ├── cgame.vcxproj │ ├── cgame.vcxproj.filters │ ├── game.vcxproj │ ├── game.vcxproj.filters │ ├── ioq3.sln │ ├── q3_ui.vcxproj │ ├── q3_ui.vcxproj.filters │ ├── quake3.vcxproj │ ├── quake3.vcxproj.filters │ ├── ui.vcxproj │ └── ui.vcxproj.filters ├── msvc11 │ ├── cgame.vcxproj │ ├── cgame.vcxproj.filters │ ├── game.vcxproj │ ├── game.vcxproj.filters │ ├── ioq3.sln │ ├── q3_ui.vcxproj │ ├── q3_ui.vcxproj.filters │ ├── quake3.vcxproj │ ├── quake3.vcxproj.filters │ ├── ui.vcxproj │ └── ui.vcxproj.filters ├── msvc12 │ ├── .gitignore │ ├── cgame.def │ ├── cgame.vcxproj │ ├── game.def │ ├── game.vcxproj │ ├── glsl_stringify.vbs │ ├── ioq3.sln │ ├── opengl1.vcxproj │ ├── opengl1.vcxproj.filters │ ├── opengl2.vcxproj │ ├── opengl2.vcxproj.filters │ ├── q3_ui.def │ ├── q3_ui.vcxproj │ ├── quake3.vcxproj │ ├── quake3.vcxproj.filters │ ├── ui.def │ └── ui.vcxproj ├── msvc142 │ ├── .gitignore │ ├── cgame.def │ ├── cgame.vcxproj │ ├── game.def │ ├── game.vcxproj │ ├── glsl_stringify.vbs │ ├── ioq3.sln │ ├── opengl1.vcxproj │ ├── opengl1.vcxproj.filters │ ├── opengl2.vcxproj │ ├── opengl2.vcxproj.filters │ ├── q3_ui.def │ ├── q3_ui.vcxproj │ ├── quake3.vcxproj │ ├── quake3.vcxproj.filters │ ├── ui.def │ └── ui.vcxproj ├── nsis │ ├── Makefile │ ├── ioquake3-q3a.nsi │ ├── ioquake3-q3ctc.nsi │ └── ioquake3.nsi.in ├── osx │ └── start_server.sh ├── osxfe │ └── ioquake3fe │ │ ├── Controller.h │ │ ├── Controller.m │ │ ├── English.lproj │ │ ├── ErrorWindow.xib │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.xib │ │ ├── ErrorWindow.h │ │ ├── ErrorWindow.m │ │ ├── ErrorWindowController.h │ │ ├── ErrorWindowController.m │ │ ├── Info.plist │ │ ├── ioquake3.icns │ │ ├── ioquake3fe.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── bw.mode1v3 │ │ ├── bw.pbxuser │ │ └── project.pbxproj │ │ ├── ioquake3fe_Prefix.pch │ │ └── main.m ├── quake3-tango.png ├── quake3-tango.xcf ├── quake3.icns ├── quake3.ico ├── quake3.png ├── quake3.svg ├── quake3_flat.icns ├── quake3_flat.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── setup │ ├── MacOSX │ │ └── SLA-dmg.sh │ ├── Makefile │ ├── Solaris_pkg.sh │ ├── doit │ ├── install-desktop-files.sh │ ├── ioq3demo.sh │ ├── ioquake3.SlackBuild │ ├── ioquake3.desktop │ ├── ioquake3.sh │ ├── pkg │ │ ├── ioq3ded.sh │ │ ├── ioquake3.sh │ │ ├── ioquake3 │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ │ ├── ioquake3d │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ │ └── ioquake3m │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ ├── preuninstall.sh │ ├── setup.xml.in │ ├── setup.xml.mod │ ├── slack-desc │ └── splash.xpm └── xcode │ ├── botlib.xcodeproj │ └── project.pbxproj │ ├── cgame.xcodeproj │ └── project.pbxproj │ ├── game.xcodeproj │ └── project.pbxproj │ ├── ioquake3-Info.plist │ ├── ioquake3-Prefix.pch │ ├── ioquake3.xcodeproj │ └── project.pbxproj │ ├── ioquake3.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── xcschemes │ │ ├── all game.xcscheme │ │ └── all ioquake3.xcscheme │ ├── ioquake3 │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ └── ioquake3.entitlements │ ├── jpeg8.xcodeproj │ └── project.pbxproj │ ├── opus.xcodeproj │ └── project.pbxproj │ ├── renderer_opengl1.xcodeproj │ └── project.pbxproj │ ├── renderer_opengl2.xcodeproj │ └── project.pbxproj │ ├── ui.xcodeproj │ └── project.pbxproj │ └── xcode-readme.txt ├── opengl2-readme.md ├── ui ├── hud.txt ├── hud2.txt ├── ingame.txt ├── menudef.h └── menus.txt └── voip-readme.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/COPYING.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/TODO -------------------------------------------------------------------------------- /autoupdater-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/autoupdater-readme.txt -------------------------------------------------------------------------------- /code/AL/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/VERSION -------------------------------------------------------------------------------- /code/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/al.h -------------------------------------------------------------------------------- /code/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/alc.h -------------------------------------------------------------------------------- /code/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/alext.h -------------------------------------------------------------------------------- /code/AL/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/efx-creative.h -------------------------------------------------------------------------------- /code/AL/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/efx-presets.h -------------------------------------------------------------------------------- /code/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/AL/efx.h -------------------------------------------------------------------------------- /code/SDL2/include-macppc/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include-macppc/SDL.h -------------------------------------------------------------------------------- /code/SDL2/include-macppc/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include-macppc/SDL_log.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_config.h.in -------------------------------------------------------------------------------- /code/SDL2/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_config_os2.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_locale.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_metal.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_misc.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_sensor.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_test_font.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_test_log.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_test_md5.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /code/SDL2/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/SDL_vulkan.h -------------------------------------------------------------------------------- /code/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /code/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/SDL2/include/close_code.h -------------------------------------------------------------------------------- /code/asm/ftola.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/ftola.asm -------------------------------------------------------------------------------- /code/asm/ftola.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/ftola.c -------------------------------------------------------------------------------- /code/asm/matha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/matha.s -------------------------------------------------------------------------------- /code/asm/qasm-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/qasm-inline.h -------------------------------------------------------------------------------- /code/asm/qasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/qasm.h -------------------------------------------------------------------------------- /code/asm/snapvector.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/snapvector.asm -------------------------------------------------------------------------------- /code/asm/snapvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/snapvector.c -------------------------------------------------------------------------------- /code/asm/snd_mixa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/snd_mixa.s -------------------------------------------------------------------------------- /code/asm/vm_x86_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/asm/vm_x86_64.asm -------------------------------------------------------------------------------- /code/autoupdater/autoupdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/autoupdater/autoupdater.c -------------------------------------------------------------------------------- /code/botlib/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/aasfile.h -------------------------------------------------------------------------------- /code/botlib/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_bsp.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bspq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_bspq3.c -------------------------------------------------------------------------------- /code/botlib/be_aas_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_cluster.c -------------------------------------------------------------------------------- /code/botlib/be_aas_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_cluster.h -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_debug.c -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_debug.h -------------------------------------------------------------------------------- /code/botlib/be_aas_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_def.h -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_entity.c -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_entity.h -------------------------------------------------------------------------------- /code/botlib/be_aas_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_file.c -------------------------------------------------------------------------------- /code/botlib/be_aas_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_file.h -------------------------------------------------------------------------------- /code/botlib/be_aas_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_funcs.h -------------------------------------------------------------------------------- /code/botlib/be_aas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_main.c -------------------------------------------------------------------------------- /code/botlib/be_aas_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_main.h -------------------------------------------------------------------------------- /code/botlib/be_aas_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_move.c -------------------------------------------------------------------------------- /code/botlib/be_aas_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_move.h -------------------------------------------------------------------------------- /code/botlib/be_aas_optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_optimize.c -------------------------------------------------------------------------------- /code/botlib/be_aas_optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_optimize.h -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_reach.c -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_reach.h -------------------------------------------------------------------------------- /code/botlib/be_aas_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_route.c -------------------------------------------------------------------------------- /code/botlib/be_aas_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_route.h -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_routealt.c -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_routealt.h -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_sample.c -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_aas_sample.h -------------------------------------------------------------------------------- /code/botlib/be_ai_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_char.c -------------------------------------------------------------------------------- /code/botlib/be_ai_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_char.h -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_chat.c -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_chat.h -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_gen.c -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_gen.h -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_goal.c -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_goal.h -------------------------------------------------------------------------------- /code/botlib/be_ai_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_move.c -------------------------------------------------------------------------------- /code/botlib/be_ai_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_move.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_weap.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_weap.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_weight.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ai_weight.h -------------------------------------------------------------------------------- /code/botlib/be_ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ea.c -------------------------------------------------------------------------------- /code/botlib/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_ea.h -------------------------------------------------------------------------------- /code/botlib/be_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_interface.c -------------------------------------------------------------------------------- /code/botlib/be_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/be_interface.h -------------------------------------------------------------------------------- /code/botlib/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/botlib.h -------------------------------------------------------------------------------- /code/botlib/l_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_crc.c -------------------------------------------------------------------------------- /code/botlib/l_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_crc.h -------------------------------------------------------------------------------- /code/botlib/l_libvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_libvar.c -------------------------------------------------------------------------------- /code/botlib/l_libvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_libvar.h -------------------------------------------------------------------------------- /code/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_log.c -------------------------------------------------------------------------------- /code/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_log.h -------------------------------------------------------------------------------- /code/botlib/l_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_memory.c -------------------------------------------------------------------------------- /code/botlib/l_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_memory.h -------------------------------------------------------------------------------- /code/botlib/l_precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_precomp.c -------------------------------------------------------------------------------- /code/botlib/l_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_precomp.h -------------------------------------------------------------------------------- /code/botlib/l_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_script.c -------------------------------------------------------------------------------- /code/botlib/l_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_script.h -------------------------------------------------------------------------------- /code/botlib/l_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_struct.c -------------------------------------------------------------------------------- /code/botlib/l_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_struct.h -------------------------------------------------------------------------------- /code/botlib/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/botlib/l_utils.h -------------------------------------------------------------------------------- /code/cgame/cg_consolecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_consolecmds.c -------------------------------------------------------------------------------- /code/cgame/cg_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_draw.c -------------------------------------------------------------------------------- /code/cgame/cg_drawtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_drawtools.c -------------------------------------------------------------------------------- /code/cgame/cg_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_effects.c -------------------------------------------------------------------------------- /code/cgame/cg_ents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_ents.c -------------------------------------------------------------------------------- /code/cgame/cg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_event.c -------------------------------------------------------------------------------- /code/cgame/cg_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_info.c -------------------------------------------------------------------------------- /code/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_local.h -------------------------------------------------------------------------------- /code/cgame/cg_localents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_localents.c -------------------------------------------------------------------------------- /code/cgame/cg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_main.c -------------------------------------------------------------------------------- /code/cgame/cg_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_marks.c -------------------------------------------------------------------------------- /code/cgame/cg_newdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_newdraw.c -------------------------------------------------------------------------------- /code/cgame/cg_particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_particles.c -------------------------------------------------------------------------------- /code/cgame/cg_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_players.c -------------------------------------------------------------------------------- /code/cgame/cg_playerstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_playerstate.c -------------------------------------------------------------------------------- /code/cgame/cg_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_predict.c -------------------------------------------------------------------------------- /code/cgame/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_public.h -------------------------------------------------------------------------------- /code/cgame/cg_scoreboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_scoreboard.c -------------------------------------------------------------------------------- /code/cgame/cg_servercmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_servercmds.c -------------------------------------------------------------------------------- /code/cgame/cg_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_snapshot.c -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_syscalls.asm -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_syscalls.c -------------------------------------------------------------------------------- /code/cgame/cg_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_view.c -------------------------------------------------------------------------------- /code/cgame/cg_weapons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/cgame/cg_weapons.c -------------------------------------------------------------------------------- /code/client/cl_avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_avi.c -------------------------------------------------------------------------------- /code/client/cl_cgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_cgame.c -------------------------------------------------------------------------------- /code/client/cl_cin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_cin.c -------------------------------------------------------------------------------- /code/client/cl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_console.c -------------------------------------------------------------------------------- /code/client/cl_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_curl.c -------------------------------------------------------------------------------- /code/client/cl_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_curl.h -------------------------------------------------------------------------------- /code/client/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_input.c -------------------------------------------------------------------------------- /code/client/cl_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_keys.c -------------------------------------------------------------------------------- /code/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_main.c -------------------------------------------------------------------------------- /code/client/cl_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_net_chan.c -------------------------------------------------------------------------------- /code/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_parse.c -------------------------------------------------------------------------------- /code/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_scrn.c -------------------------------------------------------------------------------- /code/client/cl_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/cl_ui.c -------------------------------------------------------------------------------- /code/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/client.h -------------------------------------------------------------------------------- /code/client/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/keycodes.h -------------------------------------------------------------------------------- /code/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/keys.h -------------------------------------------------------------------------------- /code/client/libmumblelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/libmumblelink.c -------------------------------------------------------------------------------- /code/client/libmumblelink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/libmumblelink.h -------------------------------------------------------------------------------- /code/client/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/qal.c -------------------------------------------------------------------------------- /code/client/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/qal.h -------------------------------------------------------------------------------- /code/client/snd_adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_adpcm.c -------------------------------------------------------------------------------- /code/client/snd_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_altivec.c -------------------------------------------------------------------------------- /code/client/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_codec.c -------------------------------------------------------------------------------- /code/client/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_codec.h -------------------------------------------------------------------------------- /code/client/snd_codec_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_codec_ogg.c -------------------------------------------------------------------------------- /code/client/snd_codec_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_codec_opus.c -------------------------------------------------------------------------------- /code/client/snd_codec_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_codec_wav.c -------------------------------------------------------------------------------- /code/client/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_dma.c -------------------------------------------------------------------------------- /code/client/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_local.h -------------------------------------------------------------------------------- /code/client/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_main.c -------------------------------------------------------------------------------- /code/client/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_mem.c -------------------------------------------------------------------------------- /code/client/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_mix.c -------------------------------------------------------------------------------- /code/client/snd_openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_openal.c -------------------------------------------------------------------------------- /code/client/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_public.h -------------------------------------------------------------------------------- /code/client/snd_wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/client/snd_wavelet.c -------------------------------------------------------------------------------- /code/curl-7.54.0/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/curl-7.54.0/include/README -------------------------------------------------------------------------------- /code/game/ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_chat.c -------------------------------------------------------------------------------- /code/game/ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_chat.h -------------------------------------------------------------------------------- /code/game/ai_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_cmd.c -------------------------------------------------------------------------------- /code/game/ai_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_cmd.h -------------------------------------------------------------------------------- /code/game/ai_dmnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_dmnet.c -------------------------------------------------------------------------------- /code/game/ai_dmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_dmnet.h -------------------------------------------------------------------------------- /code/game/ai_dmq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_dmq3.c -------------------------------------------------------------------------------- /code/game/ai_dmq3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_dmq3.h -------------------------------------------------------------------------------- /code/game/ai_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_main.c -------------------------------------------------------------------------------- /code/game/ai_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_main.h -------------------------------------------------------------------------------- /code/game/ai_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_team.c -------------------------------------------------------------------------------- /code/game/ai_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_team.h -------------------------------------------------------------------------------- /code/game/ai_vcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_vcmd.c -------------------------------------------------------------------------------- /code/game/ai_vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/ai_vcmd.h -------------------------------------------------------------------------------- /code/game/bg_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_lib.c -------------------------------------------------------------------------------- /code/game/bg_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_lib.h -------------------------------------------------------------------------------- /code/game/bg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_local.h -------------------------------------------------------------------------------- /code/game/bg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_misc.c -------------------------------------------------------------------------------- /code/game/bg_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_pmove.c -------------------------------------------------------------------------------- /code/game/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_public.h -------------------------------------------------------------------------------- /code/game/bg_slidemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/bg_slidemove.c -------------------------------------------------------------------------------- /code/game/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/chars.h -------------------------------------------------------------------------------- /code/game/g_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_active.c -------------------------------------------------------------------------------- /code/game/g_arenas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_arenas.c -------------------------------------------------------------------------------- /code/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_bot.c -------------------------------------------------------------------------------- /code/game/g_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_client.c -------------------------------------------------------------------------------- /code/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_cmds.c -------------------------------------------------------------------------------- /code/game/g_combat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_combat.c -------------------------------------------------------------------------------- /code/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_items.c -------------------------------------------------------------------------------- /code/game/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_local.h -------------------------------------------------------------------------------- /code/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_main.c -------------------------------------------------------------------------------- /code/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_mem.c -------------------------------------------------------------------------------- /code/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_misc.c -------------------------------------------------------------------------------- /code/game/g_missile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_missile.c -------------------------------------------------------------------------------- /code/game/g_mover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_mover.c -------------------------------------------------------------------------------- /code/game/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_public.h -------------------------------------------------------------------------------- /code/game/g_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_rankings.c -------------------------------------------------------------------------------- /code/game/g_rankings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_rankings.h -------------------------------------------------------------------------------- /code/game/g_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_session.c -------------------------------------------------------------------------------- /code/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_spawn.c -------------------------------------------------------------------------------- /code/game/g_svcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_svcmds.c -------------------------------------------------------------------------------- /code/game/g_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_syscalls.asm -------------------------------------------------------------------------------- /code/game/g_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_syscalls.c -------------------------------------------------------------------------------- /code/game/g_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_target.c -------------------------------------------------------------------------------- /code/game/g_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_team.c -------------------------------------------------------------------------------- /code/game/g_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_team.h -------------------------------------------------------------------------------- /code/game/g_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_trigger.c -------------------------------------------------------------------------------- /code/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_utils.c -------------------------------------------------------------------------------- /code/game/g_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/g_weapon.c -------------------------------------------------------------------------------- /code/game/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/inv.h -------------------------------------------------------------------------------- /code/game/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/match.h -------------------------------------------------------------------------------- /code/game/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/game/syn.h -------------------------------------------------------------------------------- /code/jpeg-8c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/README -------------------------------------------------------------------------------- /code/jpeg-8c/ioquake3-changes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/ioquake3-changes.diff -------------------------------------------------------------------------------- /code/jpeg-8c/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jaricom.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcapimin.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcapistd.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcarith.c -------------------------------------------------------------------------------- /code/jpeg-8c/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jccoefct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jccolor.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcdctmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jchuff.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcinit.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcmainct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcmarker.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcmaster.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcomapi.c -------------------------------------------------------------------------------- /code/jpeg-8c/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jconfig.h -------------------------------------------------------------------------------- /code/jpeg-8c/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcparam.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcprepct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jcsample.c -------------------------------------------------------------------------------- /code/jpeg-8c/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jctrans.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdapimin.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdapistd.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdarith.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdatadst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdatasrc.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdcoefct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdcolor.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdct.h -------------------------------------------------------------------------------- /code/jpeg-8c/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jddctmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdhuff.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdinput.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdmainct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdmarker.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdmaster.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdmerge.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdpostct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdsample.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jdtrans.c -------------------------------------------------------------------------------- /code/jpeg-8c/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jerror.c -------------------------------------------------------------------------------- /code/jpeg-8c/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jerror.h -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jfdctflt.c -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jfdctfst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jfdctint.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jidctflt.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jidctfst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jidctint.c -------------------------------------------------------------------------------- /code/jpeg-8c/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jinclude.h -------------------------------------------------------------------------------- /code/jpeg-8c/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jmemmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jmemnobs.c -------------------------------------------------------------------------------- /code/jpeg-8c/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jmemsys.h -------------------------------------------------------------------------------- /code/jpeg-8c/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jmorecfg.h -------------------------------------------------------------------------------- /code/jpeg-8c/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jpegint.h -------------------------------------------------------------------------------- /code/jpeg-8c/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jpeglib.h -------------------------------------------------------------------------------- /code/jpeg-8c/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jquant1.c -------------------------------------------------------------------------------- /code/jpeg-8c/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jquant2.c -------------------------------------------------------------------------------- /code/jpeg-8c/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jutils.c -------------------------------------------------------------------------------- /code/jpeg-8c/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/jpeg-8c/jversion.h -------------------------------------------------------------------------------- /code/libogg-1.3.3/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libogg-1.3.3/src/bitwise.c -------------------------------------------------------------------------------- /code/libogg-1.3.3/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libogg-1.3.3/src/framing.c -------------------------------------------------------------------------------- /code/libs/win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/SDL2.dll -------------------------------------------------------------------------------- /code/libs/win32/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/SDL2.lib -------------------------------------------------------------------------------- /code/libs/win32/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/SDL2main.lib -------------------------------------------------------------------------------- /code/libs/win32/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/libSDL2.dll.a -------------------------------------------------------------------------------- /code/libs/win32/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/libSDL2main.a -------------------------------------------------------------------------------- /code/libs/win32/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win32/libcurl.a -------------------------------------------------------------------------------- /code/libs/win64/SDL264.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/SDL264.dll -------------------------------------------------------------------------------- /code/libs/win64/SDL264.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/SDL264.lib -------------------------------------------------------------------------------- /code/libs/win64/SDL264main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/SDL264main.lib -------------------------------------------------------------------------------- /code/libs/win64/libSDL264.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/libSDL264.dll.a -------------------------------------------------------------------------------- /code/libs/win64/libSDL264main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/libSDL264main.a -------------------------------------------------------------------------------- /code/libs/win64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libs/win64/libcurl.a -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/bitrate.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/bitrate.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/block.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/floor0.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/floor1.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/info.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lookup.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lookup.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lpc.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lpc.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lsp.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/lsp.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/masking.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/mdct.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/mdct.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/misc.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/os.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/psy.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/psy.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/res0.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/scales.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/smallft.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/smallft.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/window.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.6/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/libvorbis-1.3.6/lib/window.h -------------------------------------------------------------------------------- /code/null/mac_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/mac_net.c -------------------------------------------------------------------------------- /code/null/null_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_client.c -------------------------------------------------------------------------------- /code/null/null_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_glimp.c -------------------------------------------------------------------------------- /code/null/null_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_input.c -------------------------------------------------------------------------------- /code/null/null_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_main.c -------------------------------------------------------------------------------- /code/null/null_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_net.c -------------------------------------------------------------------------------- /code/null/null_snddma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/null/null_snddma.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/arch.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/arm/armcpu.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/arm/armcpu.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/arm/fft_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/arm/fft_arm.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/bands.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/bands.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/celt.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/celt.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/celt_lpc.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/celt_lpc.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/cpu_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/cpu_support.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/cwrs.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/cwrs.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/ecintrin.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entcode.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entcode.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entdec.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entdec.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entenc.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/entenc.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/fixed_debug.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/float_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/float_cast.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/kiss_fft.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/kiss_fft.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/laplace.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/laplace.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/mathops.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/mathops.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/mdct.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/mdct.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/mfrngcod.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/modes.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/modes.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/os_support.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/pitch.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/pitch.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/quant_bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/quant_bands.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/quant_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/quant_bands.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/rate.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/rate.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/stack_alloc.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/vq.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/vq.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/x86/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/x86/vq_sse.h -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/x86/vq_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/x86/vq_sse2.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/x86/x86cpu.c -------------------------------------------------------------------------------- /code/opus-1.2.1/celt/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/celt/x86/x86cpu.h -------------------------------------------------------------------------------- /code/opus-1.2.1/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/include/opus.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/A2NLSF.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/API.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/CNG.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/Inlines.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/LPC_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/LPC_fit.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/MacroCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/MacroCount.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/MacroDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/MacroDebug.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NLSF2A.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NLSF_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NLSF_decode.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NLSF_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NLSF_encode.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NLSF_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NLSF_unpack.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NSQ.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NSQ.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/NSQ_del_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/NSQ_del_dec.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/PLC.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/PLC.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/SigProc_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/SigProc_FIX.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/VAD.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/VQ_WMat_EC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/VQ_WMat_EC.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/biquad_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/biquad_alt.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/bwexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/bwexpander.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/code_signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/code_signs.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/control.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/control_SNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/control_SNR.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/debug.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/debug.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/dec_API.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/decode_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/decode_core.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/define.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/enc_API.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/errors.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/gain_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/gain_quant.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/interpolate.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/lin2log.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/log2lin.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/macros.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/main.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/resampler.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/shell_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/shell_coder.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/sigm_Q15.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/sort.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/structs.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/tables.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/tables_LTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/tables_LTP.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/tables_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/tables_gain.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/typedef.h -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/x86/NSQ_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/x86/NSQ_sse.c -------------------------------------------------------------------------------- /code/opus-1.2.1/silk/x86/VAD_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/silk/x86/VAD_sse.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/analysis.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/analysis.h -------------------------------------------------------------------------------- /code/opus-1.2.1/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/mlp.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/mlp.h -------------------------------------------------------------------------------- /code/opus-1.2.1/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/mlp_data.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/opus.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/opus_decoder.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/opus_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/opus_encoder.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/opus_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/opus_private.h -------------------------------------------------------------------------------- /code/opus-1.2.1/src/repacketizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/repacketizer.c -------------------------------------------------------------------------------- /code/opus-1.2.1/src/tansig_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opus-1.2.1/src/tansig_table.h -------------------------------------------------------------------------------- /code/opusfile-0.9/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/http.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/info.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/internal.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/internal.h -------------------------------------------------------------------------------- /code/opusfile-0.9/src/opusfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/opusfile.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/stream.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/wincerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/wincerts.c -------------------------------------------------------------------------------- /code/opusfile-0.9/src/winerrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/opusfile-0.9/src/winerrno.h -------------------------------------------------------------------------------- /code/q3_ui/ui_addbots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_addbots.c -------------------------------------------------------------------------------- /code/q3_ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_atoms.c -------------------------------------------------------------------------------- /code/q3_ui/ui_cdkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_cdkey.c -------------------------------------------------------------------------------- /code/q3_ui/ui_cinematics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_cinematics.c -------------------------------------------------------------------------------- /code/q3_ui/ui_confirm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_confirm.c -------------------------------------------------------------------------------- /code/q3_ui/ui_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_connect.c -------------------------------------------------------------------------------- /code/q3_ui/ui_controls2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_controls2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_credits.c -------------------------------------------------------------------------------- /code/q3_ui/ui_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_demo2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_display.c -------------------------------------------------------------------------------- /code/q3_ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_gameinfo.c -------------------------------------------------------------------------------- /code/q3_ui/ui_ingame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_ingame.c -------------------------------------------------------------------------------- /code/q3_ui/ui_loadconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_loadconfig.c -------------------------------------------------------------------------------- /code/q3_ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_local.h -------------------------------------------------------------------------------- /code/q3_ui/ui_login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_login.c -------------------------------------------------------------------------------- /code/q3_ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_main.c -------------------------------------------------------------------------------- /code/q3_ui/ui_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_menu.c -------------------------------------------------------------------------------- /code/q3_ui/ui_mfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_mfield.c -------------------------------------------------------------------------------- /code/q3_ui/ui_mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_mods.c -------------------------------------------------------------------------------- /code/q3_ui/ui_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_network.c -------------------------------------------------------------------------------- /code/q3_ui/ui_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_options.c -------------------------------------------------------------------------------- /code/q3_ui/ui_playermodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_playermodel.c -------------------------------------------------------------------------------- /code/q3_ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_players.c -------------------------------------------------------------------------------- /code/q3_ui/ui_playersettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_playersettings.c -------------------------------------------------------------------------------- /code/q3_ui/ui_preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_preferences.c -------------------------------------------------------------------------------- /code/q3_ui/ui_qmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_qmenu.c -------------------------------------------------------------------------------- /code/q3_ui/ui_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_rankings.c -------------------------------------------------------------------------------- /code/q3_ui/ui_rankstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_rankstatus.c -------------------------------------------------------------------------------- /code/q3_ui/ui_removebots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_removebots.c -------------------------------------------------------------------------------- /code/q3_ui/ui_saveconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_saveconfig.c -------------------------------------------------------------------------------- /code/q3_ui/ui_serverinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_serverinfo.c -------------------------------------------------------------------------------- /code/q3_ui/ui_servers2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_servers2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_setup.c -------------------------------------------------------------------------------- /code/q3_ui/ui_signup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_signup.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_sound.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sparena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_sparena.c -------------------------------------------------------------------------------- /code/q3_ui/ui_specifyleague.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_specifyleague.c -------------------------------------------------------------------------------- /code/q3_ui/ui_specifyserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_specifyserver.c -------------------------------------------------------------------------------- /code/q3_ui/ui_splevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_splevel.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sppostgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_sppostgame.c -------------------------------------------------------------------------------- /code/q3_ui/ui_spreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_spreset.c -------------------------------------------------------------------------------- /code/q3_ui/ui_spskill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_spskill.c -------------------------------------------------------------------------------- /code/q3_ui/ui_startserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_startserver.c -------------------------------------------------------------------------------- /code/q3_ui/ui_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_team.c -------------------------------------------------------------------------------- /code/q3_ui/ui_teamorders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_teamorders.c -------------------------------------------------------------------------------- /code/q3_ui/ui_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/q3_ui/ui_video.c -------------------------------------------------------------------------------- /code/qcommon/cm_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_load.c -------------------------------------------------------------------------------- /code/qcommon/cm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_local.h -------------------------------------------------------------------------------- /code/qcommon/cm_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_patch.c -------------------------------------------------------------------------------- /code/qcommon/cm_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_patch.h -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_polylib.c -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_polylib.h -------------------------------------------------------------------------------- /code/qcommon/cm_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_public.h -------------------------------------------------------------------------------- /code/qcommon/cm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_test.c -------------------------------------------------------------------------------- /code/qcommon/cm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cm_trace.c -------------------------------------------------------------------------------- /code/qcommon/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cmd.c -------------------------------------------------------------------------------- /code/qcommon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/common.c -------------------------------------------------------------------------------- /code/qcommon/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/cvar.c -------------------------------------------------------------------------------- /code/qcommon/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/files.c -------------------------------------------------------------------------------- /code/qcommon/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/huffman.c -------------------------------------------------------------------------------- /code/qcommon/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/ioapi.c -------------------------------------------------------------------------------- /code/qcommon/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/ioapi.h -------------------------------------------------------------------------------- /code/qcommon/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/json.h -------------------------------------------------------------------------------- /code/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/md4.c -------------------------------------------------------------------------------- /code/qcommon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/md5.c -------------------------------------------------------------------------------- /code/qcommon/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/msg.c -------------------------------------------------------------------------------- /code/qcommon/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/net_chan.c -------------------------------------------------------------------------------- /code/qcommon/net_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/net_ip.c -------------------------------------------------------------------------------- /code/qcommon/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/puff.c -------------------------------------------------------------------------------- /code/qcommon/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/puff.h -------------------------------------------------------------------------------- /code/qcommon/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/q_math.c -------------------------------------------------------------------------------- /code/qcommon/q_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/q_platform.h -------------------------------------------------------------------------------- /code/qcommon/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/q_shared.c -------------------------------------------------------------------------------- /code/qcommon/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/q_shared.h -------------------------------------------------------------------------------- /code/qcommon/qcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/qcommon.h -------------------------------------------------------------------------------- /code/qcommon/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/qfiles.h -------------------------------------------------------------------------------- /code/qcommon/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/surfaceflags.h -------------------------------------------------------------------------------- /code/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/unzip.c -------------------------------------------------------------------------------- /code/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/unzip.h -------------------------------------------------------------------------------- /code/qcommon/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm.c -------------------------------------------------------------------------------- /code/qcommon/vm_armv7l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_armv7l.c -------------------------------------------------------------------------------- /code/qcommon/vm_interpreted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_interpreted.c -------------------------------------------------------------------------------- /code/qcommon/vm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_local.h -------------------------------------------------------------------------------- /code/qcommon/vm_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_none.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_powerpc.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_powerpc_asm.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_powerpc_asm.h -------------------------------------------------------------------------------- /code/qcommon/vm_sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_sparc.c -------------------------------------------------------------------------------- /code/qcommon/vm_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_sparc.h -------------------------------------------------------------------------------- /code/qcommon/vm_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/qcommon/vm_x86.c -------------------------------------------------------------------------------- /code/renderercommon/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/iqm.h -------------------------------------------------------------------------------- /code/renderercommon/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/qgl.h -------------------------------------------------------------------------------- /code/renderercommon/tr_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_common.h -------------------------------------------------------------------------------- /code/renderercommon/tr_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_font.c -------------------------------------------------------------------------------- /code/renderercommon/tr_image_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_image_bmp.c -------------------------------------------------------------------------------- /code/renderercommon/tr_image_jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_image_jpg.c -------------------------------------------------------------------------------- /code/renderercommon/tr_image_pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_image_pcx.c -------------------------------------------------------------------------------- /code/renderercommon/tr_image_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_image_png.c -------------------------------------------------------------------------------- /code/renderercommon/tr_image_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_image_tga.c -------------------------------------------------------------------------------- /code/renderercommon/tr_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_noise.c -------------------------------------------------------------------------------- /code/renderercommon/tr_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_public.h -------------------------------------------------------------------------------- /code/renderercommon/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderercommon/tr_types.h -------------------------------------------------------------------------------- /code/renderergl1/tr_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_altivec.c -------------------------------------------------------------------------------- /code/renderergl1/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_animation.c -------------------------------------------------------------------------------- /code/renderergl1/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_backend.c -------------------------------------------------------------------------------- /code/renderergl1/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl1/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl1/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl1/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_flares.c -------------------------------------------------------------------------------- /code/renderergl1/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_image.c -------------------------------------------------------------------------------- /code/renderergl1/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_init.c -------------------------------------------------------------------------------- /code/renderergl1/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_light.c -------------------------------------------------------------------------------- /code/renderergl1/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_local.h -------------------------------------------------------------------------------- /code/renderergl1/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_main.c -------------------------------------------------------------------------------- /code/renderergl1/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl1/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_mesh.c -------------------------------------------------------------------------------- /code/renderergl1/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_model.c -------------------------------------------------------------------------------- /code/renderergl1/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_model_iqm.c -------------------------------------------------------------------------------- /code/renderergl1/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shade_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_shade_calc.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_shader.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_shadows.c -------------------------------------------------------------------------------- /code/renderergl1/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl1/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_subs.c -------------------------------------------------------------------------------- /code/renderergl1/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_surface.c -------------------------------------------------------------------------------- /code/renderergl1/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl1/tr_world.c -------------------------------------------------------------------------------- /code/renderergl2/glsl/ssao_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/glsl/ssao_fp.glsl -------------------------------------------------------------------------------- /code/renderergl2/glsl/ssao_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/glsl/ssao_vp.glsl -------------------------------------------------------------------------------- /code/renderergl2/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_animation.c -------------------------------------------------------------------------------- /code/renderergl2/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_backend.c -------------------------------------------------------------------------------- /code/renderergl2/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl2/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl2/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl2/tr_dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_dsa.c -------------------------------------------------------------------------------- /code/renderergl2/tr_dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_dsa.h -------------------------------------------------------------------------------- /code/renderergl2/tr_extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_extensions.c -------------------------------------------------------------------------------- /code/renderergl2/tr_extramath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_extramath.c -------------------------------------------------------------------------------- /code/renderergl2/tr_extramath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_extramath.h -------------------------------------------------------------------------------- /code/renderergl2/tr_extratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_extratypes.h -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_fbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_fbo.h -------------------------------------------------------------------------------- /code/renderergl2/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_flares.c -------------------------------------------------------------------------------- /code/renderergl2/tr_glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_glsl.c -------------------------------------------------------------------------------- /code/renderergl2/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_image.c -------------------------------------------------------------------------------- /code/renderergl2/tr_image_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_image_dds.c -------------------------------------------------------------------------------- /code/renderergl2/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_init.c -------------------------------------------------------------------------------- /code/renderergl2/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_light.c -------------------------------------------------------------------------------- /code/renderergl2/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_local.h -------------------------------------------------------------------------------- /code/renderergl2/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_main.c -------------------------------------------------------------------------------- /code/renderergl2/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl2/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_mesh.c -------------------------------------------------------------------------------- /code/renderergl2/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_model.c -------------------------------------------------------------------------------- /code/renderergl2/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_model_iqm.c -------------------------------------------------------------------------------- /code/renderergl2/tr_postprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_postprocess.c -------------------------------------------------------------------------------- /code/renderergl2/tr_postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_postprocess.h -------------------------------------------------------------------------------- /code/renderergl2/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shade_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_shade_calc.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_shader.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_shadows.c -------------------------------------------------------------------------------- /code/renderergl2/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl2/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_subs.c -------------------------------------------------------------------------------- /code/renderergl2/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_surface.c -------------------------------------------------------------------------------- /code/renderergl2/tr_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_vbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/renderergl2/tr_world.c -------------------------------------------------------------------------------- /code/sdl/sdl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sdl/sdl_gamma.c -------------------------------------------------------------------------------- /code/sdl/sdl_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sdl/sdl_glimp.c -------------------------------------------------------------------------------- /code/sdl/sdl_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sdl/sdl_icon.h -------------------------------------------------------------------------------- /code/sdl/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sdl/sdl_input.c -------------------------------------------------------------------------------- /code/sdl/sdl_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sdl/sdl_snd.c -------------------------------------------------------------------------------- /code/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/server.h -------------------------------------------------------------------------------- /code/server/sv_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_bot.c -------------------------------------------------------------------------------- /code/server/sv_ccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_ccmds.c -------------------------------------------------------------------------------- /code/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_client.c -------------------------------------------------------------------------------- /code/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_game.c -------------------------------------------------------------------------------- /code/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_init.c -------------------------------------------------------------------------------- /code/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_main.c -------------------------------------------------------------------------------- /code/server/sv_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_net_chan.c -------------------------------------------------------------------------------- /code/server/sv_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_rankings.c -------------------------------------------------------------------------------- /code/server/sv_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_snapshot.c -------------------------------------------------------------------------------- /code/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/server/sv_world.c -------------------------------------------------------------------------------- /code/sys/con_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/con_log.c -------------------------------------------------------------------------------- /code/sys/con_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/con_passive.c -------------------------------------------------------------------------------- /code/sys/con_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/con_tty.c -------------------------------------------------------------------------------- /code/sys/con_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/con_win32.c -------------------------------------------------------------------------------- /code/sys/sys_autoupdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_autoupdater.c -------------------------------------------------------------------------------- /code/sys/sys_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_loadlib.h -------------------------------------------------------------------------------- /code/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_local.h -------------------------------------------------------------------------------- /code/sys/sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_main.c -------------------------------------------------------------------------------- /code/sys/sys_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_osx.m -------------------------------------------------------------------------------- /code/sys/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_unix.c -------------------------------------------------------------------------------- /code/sys/sys_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/sys_win32.c -------------------------------------------------------------------------------- /code/sys/win_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/win_manifest.xml -------------------------------------------------------------------------------- /code/sys/win_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/win_resource.h -------------------------------------------------------------------------------- /code/sys/win_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/sys/win_resource.rc -------------------------------------------------------------------------------- /code/tools/asm/README.Id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/README.Id -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/cmdlib.c -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/cmdlib.h -------------------------------------------------------------------------------- /code/tools/asm/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/lib.txt -------------------------------------------------------------------------------- /code/tools/asm/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/mathlib.h -------------------------------------------------------------------------------- /code/tools/asm/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/notes.txt -------------------------------------------------------------------------------- /code/tools/asm/ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/ops.txt -------------------------------------------------------------------------------- /code/tools/asm/opstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/opstrings.h -------------------------------------------------------------------------------- /code/tools/asm/q3asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/asm/q3asm.c -------------------------------------------------------------------------------- /code/tools/lcc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/COPYRIGHT -------------------------------------------------------------------------------- /code/tools/lcc/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/LOG -------------------------------------------------------------------------------- /code/tools/lcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/README -------------------------------------------------------------------------------- /code/tools/lcc/README.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/README.id -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/cpp.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/cpp.h -------------------------------------------------------------------------------- /code/tools/lcc/cpp/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/eval.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/getopt.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/hideset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/hideset.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/include.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/macro.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/nlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/nlist.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/tokens.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/cpp/unix.c -------------------------------------------------------------------------------- /code/tools/lcc/doc/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/4.html -------------------------------------------------------------------------------- /code/tools/lcc/doc/bprint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/bprint.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/bprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/bprint.pdf -------------------------------------------------------------------------------- /code/tools/lcc/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/install.html -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/lcc.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/doc/lcc.pdf -------------------------------------------------------------------------------- /code/tools/lcc/etc/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/etc/bytecode.c -------------------------------------------------------------------------------- /code/tools/lcc/etc/lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/etc/lcc.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/lburg/gram.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/lburg/gram.y -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/lburg/lburg.1 -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/lburg/lburg.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/lburg/lburg.h -------------------------------------------------------------------------------- /code/tools/lcc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/alloc.c -------------------------------------------------------------------------------- /code/tools/lcc/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/bind.c -------------------------------------------------------------------------------- /code/tools/lcc/src/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/bytecode.c -------------------------------------------------------------------------------- /code/tools/lcc/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/c.h -------------------------------------------------------------------------------- /code/tools/lcc/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/config.h -------------------------------------------------------------------------------- /code/tools/lcc/src/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/dag.c -------------------------------------------------------------------------------- /code/tools/lcc/src/dagcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/dagcheck.md -------------------------------------------------------------------------------- /code/tools/lcc/src/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/decl.c -------------------------------------------------------------------------------- /code/tools/lcc/src/enode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/enode.c -------------------------------------------------------------------------------- /code/tools/lcc/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/error.c -------------------------------------------------------------------------------- /code/tools/lcc/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/event.c -------------------------------------------------------------------------------- /code/tools/lcc/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/expr.c -------------------------------------------------------------------------------- /code/tools/lcc/src/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/gen.c -------------------------------------------------------------------------------- /code/tools/lcc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/init.c -------------------------------------------------------------------------------- /code/tools/lcc/src/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/inits.c -------------------------------------------------------------------------------- /code/tools/lcc/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/input.c -------------------------------------------------------------------------------- /code/tools/lcc/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/list.c -------------------------------------------------------------------------------- /code/tools/lcc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/main.c -------------------------------------------------------------------------------- /code/tools/lcc/src/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/null.c -------------------------------------------------------------------------------- /code/tools/lcc/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/output.c -------------------------------------------------------------------------------- /code/tools/lcc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/prof.c -------------------------------------------------------------------------------- /code/tools/lcc/src/profio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/profio.c -------------------------------------------------------------------------------- /code/tools/lcc/src/simp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/simp.c -------------------------------------------------------------------------------- /code/tools/lcc/src/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/stmt.c -------------------------------------------------------------------------------- /code/tools/lcc/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/string.c -------------------------------------------------------------------------------- /code/tools/lcc/src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/sym.c -------------------------------------------------------------------------------- /code/tools/lcc/src/symbolic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/symbolic.c -------------------------------------------------------------------------------- /code/tools/lcc/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/token.h -------------------------------------------------------------------------------- /code/tools/lcc/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/trace.c -------------------------------------------------------------------------------- /code/tools/lcc/src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/tree.c -------------------------------------------------------------------------------- /code/tools/lcc/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/lcc/src/types.c -------------------------------------------------------------------------------- /code/tools/stringify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/tools/stringify.c -------------------------------------------------------------------------------- /code/ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_atoms.c -------------------------------------------------------------------------------- /code/ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_gameinfo.c -------------------------------------------------------------------------------- /code/ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_local.h -------------------------------------------------------------------------------- /code/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_main.c -------------------------------------------------------------------------------- /code/ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_players.c -------------------------------------------------------------------------------- /code/ui/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_public.h -------------------------------------------------------------------------------- /code/ui/ui_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_shared.c -------------------------------------------------------------------------------- /code/ui/ui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_shared.h -------------------------------------------------------------------------------- /code/ui/ui_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_syscalls.asm -------------------------------------------------------------------------------- /code/ui/ui_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/ui/ui_syscalls.c -------------------------------------------------------------------------------- /code/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/adler32.c -------------------------------------------------------------------------------- /code/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/crc32.c -------------------------------------------------------------------------------- /code/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/crc32.h -------------------------------------------------------------------------------- /code/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inffast.c -------------------------------------------------------------------------------- /code/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inffast.h -------------------------------------------------------------------------------- /code/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inffixed.h -------------------------------------------------------------------------------- /code/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inflate.c -------------------------------------------------------------------------------- /code/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inflate.h -------------------------------------------------------------------------------- /code/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inftrees.c -------------------------------------------------------------------------------- /code/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/inftrees.h -------------------------------------------------------------------------------- /code/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/zconf.h -------------------------------------------------------------------------------- /code/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/zlib.h -------------------------------------------------------------------------------- /code/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/zutil.c -------------------------------------------------------------------------------- /code/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/code/zlib/zutil.h -------------------------------------------------------------------------------- /id-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/id-readme.txt -------------------------------------------------------------------------------- /macsourceports_universal2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/macsourceports_universal2.sh -------------------------------------------------------------------------------- /make-macosx-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/make-macosx-app.sh -------------------------------------------------------------------------------- /make-macosx-ub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/make-macosx-ub.sh -------------------------------------------------------------------------------- /make-macosx-ub2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/make-macosx-ub2.sh -------------------------------------------------------------------------------- /make-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/make-macosx.sh -------------------------------------------------------------------------------- /md4-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/md4-readme.txt -------------------------------------------------------------------------------- /misc/ReadMe-OSX.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/ReadMe-OSX.rtf -------------------------------------------------------------------------------- /misc/ioquake3-folder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/ioquake3-folder.icns -------------------------------------------------------------------------------- /misc/linux/q3a.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/linux/q3a.service -------------------------------------------------------------------------------- /misc/linux/server_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/linux/server_compile.sh -------------------------------------------------------------------------------- /misc/linux/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/linux/start_server.sh -------------------------------------------------------------------------------- /misc/msvc/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/cgame.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/cgame.vcproj -------------------------------------------------------------------------------- /misc/msvc/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /misc/msvc/game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/game.vcproj -------------------------------------------------------------------------------- /misc/msvc/glsl_stringify.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/glsl_stringify.vbs -------------------------------------------------------------------------------- /misc/msvc/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc/opengl1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/opengl1.vcproj -------------------------------------------------------------------------------- /misc/msvc/opengl2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/opengl2.vcproj -------------------------------------------------------------------------------- /misc/msvc/q3_ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/q3_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/q3_ui.vcproj -------------------------------------------------------------------------------- /misc/msvc/quake3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/quake3.vcproj -------------------------------------------------------------------------------- /misc/msvc/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc/ui.vcproj -------------------------------------------------------------------------------- /misc/msvc10/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/cgame.vcxproj -------------------------------------------------------------------------------- /misc/msvc10/cgame.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/cgame.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc10/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/game.vcxproj -------------------------------------------------------------------------------- /misc/msvc10/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/game.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc10/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc10/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/q3_ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc10/q3_ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/q3_ui.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc10/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/quake3.vcxproj -------------------------------------------------------------------------------- /misc/msvc10/quake3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/quake3.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc10/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc10/ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc10/ui.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc11/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/cgame.vcxproj -------------------------------------------------------------------------------- /misc/msvc11/cgame.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/cgame.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc11/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/game.vcxproj -------------------------------------------------------------------------------- /misc/msvc11/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/game.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc11/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc11/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/q3_ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc11/q3_ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/q3_ui.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc11/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/quake3.vcxproj -------------------------------------------------------------------------------- /misc/msvc11/quake3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/quake3.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc11/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc11/ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc11/ui.vcxproj.filters -------------------------------------------------------------------------------- /misc/msvc12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/.gitignore -------------------------------------------------------------------------------- /misc/msvc12/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc12/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/cgame.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /misc/msvc12/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/game.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/glsl_stringify.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/glsl_stringify.vbs -------------------------------------------------------------------------------- /misc/msvc12/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc12/opengl1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/opengl1.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/opengl2.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/q3_ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc12/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/q3_ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/quake3.vcxproj -------------------------------------------------------------------------------- /misc/msvc12/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc12/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc12/ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/.gitignore -------------------------------------------------------------------------------- /misc/msvc142/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc142/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/cgame.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /misc/msvc142/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/game.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/glsl_stringify.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/glsl_stringify.vbs -------------------------------------------------------------------------------- /misc/msvc142/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc142/opengl1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/opengl1.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/opengl2.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/q3_ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc142/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/q3_ui.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/quake3.vcxproj -------------------------------------------------------------------------------- /misc/msvc142/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc142/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/msvc142/ui.vcxproj -------------------------------------------------------------------------------- /misc/nsis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/nsis/Makefile -------------------------------------------------------------------------------- /misc/nsis/ioquake3-q3a.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/nsis/ioquake3-q3a.nsi -------------------------------------------------------------------------------- /misc/nsis/ioquake3-q3ctc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/nsis/ioquake3-q3ctc.nsi -------------------------------------------------------------------------------- /misc/nsis/ioquake3.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/nsis/ioquake3.nsi.in -------------------------------------------------------------------------------- /misc/osx/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/osx/start_server.sh -------------------------------------------------------------------------------- /misc/osxfe/ioquake3fe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/osxfe/ioquake3fe/main.m -------------------------------------------------------------------------------- /misc/quake3-tango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3-tango.png -------------------------------------------------------------------------------- /misc/quake3-tango.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3-tango.xcf -------------------------------------------------------------------------------- /misc/quake3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3.icns -------------------------------------------------------------------------------- /misc/quake3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3.ico -------------------------------------------------------------------------------- /misc/quake3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3.png -------------------------------------------------------------------------------- /misc/quake3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3.svg -------------------------------------------------------------------------------- /misc/quake3_flat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/quake3_flat.icns -------------------------------------------------------------------------------- /misc/setup/MacOSX/SLA-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/MacOSX/SLA-dmg.sh -------------------------------------------------------------------------------- /misc/setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/Makefile -------------------------------------------------------------------------------- /misc/setup/Solaris_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/Solaris_pkg.sh -------------------------------------------------------------------------------- /misc/setup/doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/doit -------------------------------------------------------------------------------- /misc/setup/ioq3demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/ioq3demo.sh -------------------------------------------------------------------------------- /misc/setup/ioquake3.SlackBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/ioquake3.SlackBuild -------------------------------------------------------------------------------- /misc/setup/ioquake3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/ioquake3.desktop -------------------------------------------------------------------------------- /misc/setup/ioquake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/ioquake3.sh -------------------------------------------------------------------------------- /misc/setup/pkg/ioq3ded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/pkg/ioq3ded.sh -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/pkg/ioquake3.sh -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/pkg/ioquake3/depend -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 20000 15 2 | -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3d/depend: -------------------------------------------------------------------------------- 1 | P SUNWxwplt X Window System platform software 2 | -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3d/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 50000 100 2 | -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3m/depend: -------------------------------------------------------------------------------- 1 | P SUNWxwplt X Window System platform software 2 | -------------------------------------------------------------------------------- /misc/setup/pkg/ioquake3m/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 50000 100 2 | -------------------------------------------------------------------------------- /misc/setup/preuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/preuninstall.sh -------------------------------------------------------------------------------- /misc/setup/setup.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/setup.xml.in -------------------------------------------------------------------------------- /misc/setup/setup.xml.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/setup.xml.mod -------------------------------------------------------------------------------- /misc/setup/slack-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/slack-desc -------------------------------------------------------------------------------- /misc/setup/splash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/setup/splash.xpm -------------------------------------------------------------------------------- /misc/xcode/ioquake3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/xcode/ioquake3-Info.plist -------------------------------------------------------------------------------- /misc/xcode/ioquake3-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/xcode/ioquake3-Prefix.pch -------------------------------------------------------------------------------- /misc/xcode/xcode-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/misc/xcode/xcode-readme.txt -------------------------------------------------------------------------------- /opengl2-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/opengl2-readme.md -------------------------------------------------------------------------------- /ui/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ui/hud.txt -------------------------------------------------------------------------------- /ui/hud2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ui/hud2.txt -------------------------------------------------------------------------------- /ui/ingame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ui/ingame.txt -------------------------------------------------------------------------------- /ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ui/menudef.h -------------------------------------------------------------------------------- /ui/menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/ui/menus.txt -------------------------------------------------------------------------------- /voip-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/ioq3/HEAD/voip-readme.txt --------------------------------------------------------------------------------