├── .cirrus.yml ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── .gitmodules ├── 3rdparty ├── extras │ └── wscript ├── gl4es │ └── wscript └── opus │ └── wscript ├── CONTRIBUTING.md ├── Documentation ├── bug-compatibility.md ├── cross-compiling-for-windows-with-wine.md ├── debugging-using-minidumps.md ├── engine-porting-guide.md ├── entity-tools.md ├── extensions │ ├── console-scripting.md │ ├── expanded-common-structures.md │ ├── input-interface-ru.md │ ├── input-interface.md │ ├── library-naming.md │ └── mp3-loops.md ├── gameinfo.md ├── mod-porting-guide.md ├── not-supported-mod-list-and-reasons-why.md ├── opensource-mods.md ├── ports.md ├── psvita.md ├── public-servers-rules-and-recommendations.md └── supported-mod-list.md ├── README.md ├── common ├── backends.h ├── beamdef.h ├── boneinfo.h ├── bspfile.h ├── cl_entity.h ├── com_image.h ├── com_model.h ├── con_nprint.h ├── const.h ├── cvardef.h ├── defaults.h ├── demo_api.h ├── dlight.h ├── enginefeatures.h ├── entity_state.h ├── entity_types.h ├── event_api.h ├── event_args.h ├── event_flags.h ├── gameinfo.h ├── hltv.h ├── ivoicetweak.h ├── kbutton.h ├── lightstyle.h ├── mathlib.h ├── net_api.h ├── netadr.h ├── particledef.h ├── pmtrace.h ├── port.h ├── qfont.h ├── r_efx.h ├── r_studioint.h ├── ref_params.h ├── render_api.h ├── screenfade.h ├── studio_event.h ├── synctype.h ├── triangleapi.h ├── usercmd.h ├── wadfile.h ├── weaponinfo.h ├── wrect.h └── xash3d_types.h ├── engine ├── alias.h ├── anorms.h ├── cdll_exp.h ├── cdll_int.h ├── client │ ├── avi │ │ ├── avi.h │ │ ├── avi_stub.c │ │ └── avi_win.c │ ├── cl_cmds.c │ ├── cl_custom.c │ ├── cl_debug.c │ ├── cl_demo.c │ ├── cl_efrag.c │ ├── cl_efx.c │ ├── cl_events.c │ ├── cl_font.c │ ├── cl_frame.c │ ├── cl_game.c │ ├── cl_gameui.c │ ├── cl_main.c │ ├── cl_mobile.c │ ├── cl_netgraph.c │ ├── cl_parse.c │ ├── cl_parse_48.c │ ├── cl_pmove.c │ ├── cl_qparse.c │ ├── cl_remap.c │ ├── cl_render.c │ ├── cl_scrn.c │ ├── cl_securedstub.c │ ├── cl_tent.c │ ├── cl_tent.h │ ├── cl_video.c │ ├── cl_view.c │ ├── client.h │ ├── console.c │ ├── in_joy.c │ ├── in_touch.c │ ├── input.c │ ├── input.h │ ├── keys.c │ ├── mod_dbghulls.c │ ├── ref_common.c │ ├── ref_common.h │ ├── s_dsp.c │ ├── s_load.c │ ├── s_main.c │ ├── s_mix.c │ ├── s_mouth.c │ ├── s_stream.c │ ├── s_utils.c │ ├── s_vox.c │ ├── sound.h │ ├── titles.c │ ├── vgui │ │ ├── vgui_draw.c │ │ └── vgui_draw.h │ ├── vid_common.c │ ├── vid_common.h │ ├── voice.c │ ├── voice.h │ └── vox.h ├── common │ ├── base_cmd.c │ ├── base_cmd.h │ ├── cfgscript.c │ ├── cmd.c │ ├── com_strings.h │ ├── common.c │ ├── common.h │ ├── con_utils.c │ ├── crashhandler.c │ ├── custom.c │ ├── cvar.c │ ├── cvar.h │ ├── dedicated.c │ ├── filesystem_engine.c │ ├── gamma.c │ ├── host.c │ ├── host_state.c │ ├── hpak.c │ ├── hpak.h │ ├── identification.c │ ├── imagelib │ │ ├── imagelib.h │ │ ├── img_bmp.c │ │ ├── img_bmp.h │ │ ├── img_dds.c │ │ ├── img_dds.h │ │ ├── img_main.c │ │ ├── img_png.c │ │ ├── img_png.h │ │ ├── img_quant.c │ │ ├── img_tga.c │ │ ├── img_tga.h │ │ ├── img_utils.c │ │ └── img_wad.c │ ├── infostring.c │ ├── ipv6text.c │ ├── ipv6text.h │ ├── launcher.c │ ├── lib_common.c │ ├── library.h │ ├── masterlist.c │ ├── mod_bmodel.c │ ├── mod_local.h │ ├── mod_sprite.c │ ├── mod_studio.c │ ├── model.c │ ├── net_buffer.c │ ├── net_buffer.h │ ├── net_chan.c │ ├── net_encode.c │ ├── net_encode.h │ ├── net_ws.c │ ├── net_ws.h │ ├── netchan.h │ ├── pm_debug.c │ ├── pm_local.h │ ├── pm_surface.c │ ├── pm_trace.c │ ├── protocol.h │ ├── soundlib │ │ ├── libmpg │ │ │ ├── dct36.c │ │ │ ├── dct64.c │ │ │ ├── fmt123.h │ │ │ ├── format.c │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── getbits.h │ │ │ ├── huffman.h │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── layer3.c │ │ │ ├── libmpg.c │ │ │ ├── libmpg.dsp │ │ │ ├── libmpg.h │ │ │ ├── mpeghead.h │ │ │ ├── mpg123.c │ │ │ ├── mpg123.h │ │ │ ├── parse.c │ │ │ ├── reader.c │ │ │ ├── reader.h │ │ │ ├── sample.h │ │ │ ├── synth.c │ │ │ ├── synth.h │ │ │ └── tabinit.c │ │ ├── snd_main.c │ │ ├── snd_mp3.c │ │ ├── snd_utils.c │ │ ├── snd_wav.c │ │ └── soundlib.h │ ├── sys_con.c │ ├── system.c │ ├── system.h │ ├── tests.h │ ├── whereami.c │ ├── whereami.h │ ├── world.c │ ├── world.h │ └── zone.c ├── cursor_type.h ├── custom.h ├── customentity.h ├── edict.h ├── eiface.h ├── key_modifiers.h ├── keydefs.h ├── menu_int.h ├── mobility_int.h ├── physint.h ├── platform │ ├── android │ │ ├── android.c │ │ ├── dlsym-weak.cpp │ │ ├── dlsym-weak.h │ │ ├── lib_android.c │ │ ├── lib_android.h │ │ └── linker.h │ ├── apple │ │ ├── lib_ios.c │ │ └── lib_ios.h │ ├── dos │ │ ├── in_dos.c │ │ ├── ld.sh │ │ ├── objcopy.sh │ │ ├── sys_dos.c │ │ └── vid_dos.c │ ├── emscripten │ │ ├── lib_em.c │ │ └── lib_em.h │ ├── irix │ │ ├── dladdr.c │ │ ├── dladdr.h │ │ └── xash-exec │ ├── linux │ │ ├── in_evdev.c │ │ ├── s_alsa.c │ │ ├── sys_linux.c │ │ └── vid_fbdev.c │ ├── misc │ │ ├── kmalloc.c │ │ ├── lib_static.c │ │ ├── sbrk.c │ │ └── swap.h │ ├── nswitch │ │ ├── icon.jpg │ │ ├── sys_nswitch.c │ │ └── xash3d-fwgs.nacp │ ├── platform.h │ ├── posix │ │ ├── lib_posix.c │ │ ├── net.h │ │ └── sys_posix.c │ ├── psvita │ │ ├── in_psvita.c │ │ ├── net_psvita.h │ │ ├── sce_sys │ │ │ ├── icon0.png │ │ │ └── livearea │ │ │ │ └── contents │ │ │ │ ├── bg.png │ │ │ │ ├── startup.png │ │ │ │ └── template.xml │ │ └── sys_psvita.c │ ├── sdl │ │ ├── events.c │ │ ├── events.h │ │ ├── in_sdl.c │ │ ├── s_sdl.c │ │ ├── sys_sdl.c │ │ └── vid_sdl.c │ ├── stub │ │ ├── net_stub.h │ │ └── s_stub.c │ └── win32 │ │ ├── con_win.c │ │ ├── lib_custom_win.c │ │ ├── lib_win.c │ │ ├── lib_win.h │ │ ├── net.h │ │ └── sys_win.c ├── progdefs.h ├── ref_api.h ├── server │ ├── server.h │ ├── sv_client.c │ ├── sv_cmds.c │ ├── sv_custom.c │ ├── sv_filter.c │ ├── sv_frame.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_log.c │ ├── sv_main.c │ ├── sv_move.c │ ├── sv_phys.c │ ├── sv_pmove.c │ ├── sv_query.c │ ├── sv_save.c │ └── sv_world.c ├── shake.h ├── sprite.h ├── studio.h ├── vgui_api.h ├── warpsin.h └── wscript ├── filesystem ├── VFileSystem009.cpp ├── VFileSystem009.h ├── dir.c ├── filesystem.c ├── filesystem.h ├── filesystem_internal.h ├── fscallback.h ├── pak.c ├── tests │ ├── caseinsensitive.c │ ├── interface.cpp │ └── no-init.c ├── wad.c ├── wscript └── zip.c ├── game_launch ├── game.cpp ├── game.rc ├── icon-xash-material.ico ├── icon-xash-material.png └── wscript ├── pm_shared ├── pm_defs.h ├── pm_info.h └── pm_movevars.h ├── public ├── build.c ├── build.h ├── buildenums.h ├── crclib.c ├── crclib.h ├── crtlib.c ├── crtlib.h ├── matrixlib.c ├── miniz.h ├── pstdint.h ├── tests │ ├── test_build.c │ ├── test_filebase.c │ └── test_strings.c ├── wscript ├── xash3d_mathlib.c └── xash3d_mathlib.h ├── ref ├── gl │ ├── exports.txt │ ├── gl_alias.c │ ├── gl_backend.c │ ├── gl_beams.c │ ├── gl_context.c │ ├── gl_cull.c │ ├── gl_dbghulls.c │ ├── gl_decals.c │ ├── gl_draw.c │ ├── gl_export.h │ ├── gl_frustum.c │ ├── gl_frustum.h │ ├── gl_image.c │ ├── gl_local.h │ ├── gl_opengl.c │ ├── gl_rlight.c │ ├── gl_rmain.c │ ├── gl_rmath.c │ ├── gl_rmisc.c │ ├── gl_rpart.c │ ├── gl_rsurf.c │ ├── gl_sprite.c │ ├── gl_studio.c │ ├── gl_triapi.c │ ├── gl_vgui.c │ ├── gl_warp.c │ ├── vgl_shim │ │ ├── vgl_shaders │ │ │ ├── fragment.cg.inc │ │ │ └── vertex.cg.inc │ │ ├── vgl_shim.c │ │ ├── vgl_shim.h │ │ └── wscript │ └── wscript └── soft │ ├── adivtab.h │ ├── r_aclip.c │ ├── r_beams.c │ ├── r_bsp.c │ ├── r_context.c │ ├── r_decals.c │ ├── r_draw.c │ ├── r_edge.c │ ├── r_glblit.c │ ├── r_image.c │ ├── r_light.c │ ├── r_local.h │ ├── r_main.c │ ├── r_math.c │ ├── r_misc.c │ ├── r_part.c │ ├── r_polyse.c │ ├── r_rast.c │ ├── r_scan.c │ ├── r_sprite.c │ ├── r_studio.c │ ├── r_surf.c │ ├── r_trialias.c │ ├── r_triapi.c │ ├── r_vgui.c │ └── wscript ├── scripts ├── cirrus │ └── build_freebsd.sh ├── flatpak │ ├── run.sh │ ├── su.xash.Engine.Compat.i386.desktop │ └── su.xash.Engine.Compat.i386.yml ├── gha │ ├── build_android.sh │ ├── build_linux.sh │ ├── build_motomagx.sh │ ├── build_nswitch.sh │ ├── build_nswitch_docker.sh │ ├── build_psvita.sh │ ├── build_win32.sh │ ├── deps_android.sh │ ├── deps_linux.sh │ ├── deps_motomagx.sh │ ├── deps_nswitch.sh │ ├── deps_psvita.sh │ └── deps_win32.sh ├── lib.sh ├── makepak.py ├── sailfish │ ├── build.sh │ ├── deploy.sh │ ├── harbour-xash3d-fwgs.desktop │ ├── harbour-xash3d-fwgs.spec │ └── run.sh ├── waifulib │ ├── cmake.py │ ├── compiler_optimizations.py │ ├── nswitch.py │ ├── owcc.py │ ├── psvita.py │ ├── vgui.py │ ├── xcompile.py │ ├── xshlib.py │ └── zip.py └── xashds@.service ├── utils ├── mdldec │ ├── Makefile │ ├── mdldec.c │ ├── mdldec.h │ ├── qc.c │ ├── qc.h │ ├── res │ │ └── activities.txt │ ├── smd.c │ ├── smd.h │ ├── texture.c │ ├── texture.h │ ├── utils.c │ ├── utils.h │ ├── version.h │ └── wscript ├── run-fuzzer │ ├── run-fuzzer.c │ └── wscript └── xar │ ├── wscript │ └── xar.c ├── waf ├── waf.bat └── wscript /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/extras/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/3rdparty/extras/wscript -------------------------------------------------------------------------------- /3rdparty/gl4es/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/3rdparty/gl4es/wscript -------------------------------------------------------------------------------- /3rdparty/opus/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/3rdparty/opus/wscript -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/bug-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/bug-compatibility.md -------------------------------------------------------------------------------- /Documentation/cross-compiling-for-windows-with-wine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/cross-compiling-for-windows-with-wine.md -------------------------------------------------------------------------------- /Documentation/debugging-using-minidumps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/debugging-using-minidumps.md -------------------------------------------------------------------------------- /Documentation/engine-porting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/engine-porting-guide.md -------------------------------------------------------------------------------- /Documentation/entity-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/entity-tools.md -------------------------------------------------------------------------------- /Documentation/extensions/console-scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/console-scripting.md -------------------------------------------------------------------------------- /Documentation/extensions/expanded-common-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/expanded-common-structures.md -------------------------------------------------------------------------------- /Documentation/extensions/input-interface-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/input-interface-ru.md -------------------------------------------------------------------------------- /Documentation/extensions/input-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/input-interface.md -------------------------------------------------------------------------------- /Documentation/extensions/library-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/library-naming.md -------------------------------------------------------------------------------- /Documentation/extensions/mp3-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/extensions/mp3-loops.md -------------------------------------------------------------------------------- /Documentation/gameinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/gameinfo.md -------------------------------------------------------------------------------- /Documentation/mod-porting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/mod-porting-guide.md -------------------------------------------------------------------------------- /Documentation/not-supported-mod-list-and-reasons-why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/not-supported-mod-list-and-reasons-why.md -------------------------------------------------------------------------------- /Documentation/opensource-mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/opensource-mods.md -------------------------------------------------------------------------------- /Documentation/ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/ports.md -------------------------------------------------------------------------------- /Documentation/psvita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/psvita.md -------------------------------------------------------------------------------- /Documentation/public-servers-rules-and-recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/public-servers-rules-and-recommendations.md -------------------------------------------------------------------------------- /Documentation/supported-mod-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/Documentation/supported-mod-list.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/README.md -------------------------------------------------------------------------------- /common/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/backends.h -------------------------------------------------------------------------------- /common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/beamdef.h -------------------------------------------------------------------------------- /common/boneinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/boneinfo.h -------------------------------------------------------------------------------- /common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/bspfile.h -------------------------------------------------------------------------------- /common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/cl_entity.h -------------------------------------------------------------------------------- /common/com_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/com_image.h -------------------------------------------------------------------------------- /common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/com_model.h -------------------------------------------------------------------------------- /common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/con_nprint.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/const.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/defaults.h -------------------------------------------------------------------------------- /common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/demo_api.h -------------------------------------------------------------------------------- /common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/dlight.h -------------------------------------------------------------------------------- /common/enginefeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/enginefeatures.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/entity_types.h -------------------------------------------------------------------------------- /common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/event_api.h -------------------------------------------------------------------------------- /common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/event_args.h -------------------------------------------------------------------------------- /common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/event_flags.h -------------------------------------------------------------------------------- /common/gameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/gameinfo.h -------------------------------------------------------------------------------- /common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/hltv.h -------------------------------------------------------------------------------- /common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/ivoicetweak.h -------------------------------------------------------------------------------- /common/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/kbutton.h -------------------------------------------------------------------------------- /common/lightstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/lightstyle.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/net_api.h -------------------------------------------------------------------------------- /common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/netadr.h -------------------------------------------------------------------------------- /common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/particledef.h -------------------------------------------------------------------------------- /common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/pmtrace.h -------------------------------------------------------------------------------- /common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/port.h -------------------------------------------------------------------------------- /common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/qfont.h -------------------------------------------------------------------------------- /common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/r_efx.h -------------------------------------------------------------------------------- /common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/r_studioint.h -------------------------------------------------------------------------------- /common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/ref_params.h -------------------------------------------------------------------------------- /common/render_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/render_api.h -------------------------------------------------------------------------------- /common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/screenfade.h -------------------------------------------------------------------------------- /common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/studio_event.h -------------------------------------------------------------------------------- /common/synctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/synctype.h -------------------------------------------------------------------------------- /common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/triangleapi.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /common/wadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/wadfile.h -------------------------------------------------------------------------------- /common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/weaponinfo.h -------------------------------------------------------------------------------- /common/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/wrect.h -------------------------------------------------------------------------------- /common/xash3d_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/common/xash3d_types.h -------------------------------------------------------------------------------- /engine/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/alias.h -------------------------------------------------------------------------------- /engine/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/anorms.h -------------------------------------------------------------------------------- /engine/cdll_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/cdll_exp.h -------------------------------------------------------------------------------- /engine/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/cdll_int.h -------------------------------------------------------------------------------- /engine/client/avi/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/avi/avi.h -------------------------------------------------------------------------------- /engine/client/avi/avi_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/avi/avi_stub.c -------------------------------------------------------------------------------- /engine/client/avi/avi_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/avi/avi_win.c -------------------------------------------------------------------------------- /engine/client/cl_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_cmds.c -------------------------------------------------------------------------------- /engine/client/cl_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_custom.c -------------------------------------------------------------------------------- /engine/client/cl_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_debug.c -------------------------------------------------------------------------------- /engine/client/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_demo.c -------------------------------------------------------------------------------- /engine/client/cl_efrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_efrag.c -------------------------------------------------------------------------------- /engine/client/cl_efx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_efx.c -------------------------------------------------------------------------------- /engine/client/cl_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_events.c -------------------------------------------------------------------------------- /engine/client/cl_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_font.c -------------------------------------------------------------------------------- /engine/client/cl_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_frame.c -------------------------------------------------------------------------------- /engine/client/cl_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_game.c -------------------------------------------------------------------------------- /engine/client/cl_gameui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_gameui.c -------------------------------------------------------------------------------- /engine/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_main.c -------------------------------------------------------------------------------- /engine/client/cl_mobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_mobile.c -------------------------------------------------------------------------------- /engine/client/cl_netgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_netgraph.c -------------------------------------------------------------------------------- /engine/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_parse.c -------------------------------------------------------------------------------- /engine/client/cl_parse_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_parse_48.c -------------------------------------------------------------------------------- /engine/client/cl_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_pmove.c -------------------------------------------------------------------------------- /engine/client/cl_qparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_qparse.c -------------------------------------------------------------------------------- /engine/client/cl_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_remap.c -------------------------------------------------------------------------------- /engine/client/cl_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_render.c -------------------------------------------------------------------------------- /engine/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_scrn.c -------------------------------------------------------------------------------- /engine/client/cl_securedstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_securedstub.c -------------------------------------------------------------------------------- /engine/client/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_tent.c -------------------------------------------------------------------------------- /engine/client/cl_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_tent.h -------------------------------------------------------------------------------- /engine/client/cl_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_video.c -------------------------------------------------------------------------------- /engine/client/cl_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/cl_view.c -------------------------------------------------------------------------------- /engine/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/client.h -------------------------------------------------------------------------------- /engine/client/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/console.c -------------------------------------------------------------------------------- /engine/client/in_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/in_joy.c -------------------------------------------------------------------------------- /engine/client/in_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/in_touch.c -------------------------------------------------------------------------------- /engine/client/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/input.c -------------------------------------------------------------------------------- /engine/client/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/input.h -------------------------------------------------------------------------------- /engine/client/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/keys.c -------------------------------------------------------------------------------- /engine/client/mod_dbghulls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/mod_dbghulls.c -------------------------------------------------------------------------------- /engine/client/ref_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/ref_common.c -------------------------------------------------------------------------------- /engine/client/ref_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/ref_common.h -------------------------------------------------------------------------------- /engine/client/s_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_dsp.c -------------------------------------------------------------------------------- /engine/client/s_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_load.c -------------------------------------------------------------------------------- /engine/client/s_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_main.c -------------------------------------------------------------------------------- /engine/client/s_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_mix.c -------------------------------------------------------------------------------- /engine/client/s_mouth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_mouth.c -------------------------------------------------------------------------------- /engine/client/s_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_stream.c -------------------------------------------------------------------------------- /engine/client/s_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_utils.c -------------------------------------------------------------------------------- /engine/client/s_vox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/s_vox.c -------------------------------------------------------------------------------- /engine/client/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/sound.h -------------------------------------------------------------------------------- /engine/client/titles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/titles.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/vgui/vgui_draw.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/vgui/vgui_draw.h -------------------------------------------------------------------------------- /engine/client/vid_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/vid_common.c -------------------------------------------------------------------------------- /engine/client/vid_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/vid_common.h -------------------------------------------------------------------------------- /engine/client/voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/voice.c -------------------------------------------------------------------------------- /engine/client/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/voice.h -------------------------------------------------------------------------------- /engine/client/vox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/client/vox.h -------------------------------------------------------------------------------- /engine/common/base_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/base_cmd.c -------------------------------------------------------------------------------- /engine/common/base_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/base_cmd.h -------------------------------------------------------------------------------- /engine/common/cfgscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/cfgscript.c -------------------------------------------------------------------------------- /engine/common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/cmd.c -------------------------------------------------------------------------------- /engine/common/com_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/com_strings.h -------------------------------------------------------------------------------- /engine/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/common.c -------------------------------------------------------------------------------- /engine/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/common.h -------------------------------------------------------------------------------- /engine/common/con_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/con_utils.c -------------------------------------------------------------------------------- /engine/common/crashhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/crashhandler.c -------------------------------------------------------------------------------- /engine/common/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/custom.c -------------------------------------------------------------------------------- /engine/common/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/cvar.c -------------------------------------------------------------------------------- /engine/common/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/cvar.h -------------------------------------------------------------------------------- /engine/common/dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/dedicated.c -------------------------------------------------------------------------------- /engine/common/filesystem_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/filesystem_engine.c -------------------------------------------------------------------------------- /engine/common/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/gamma.c -------------------------------------------------------------------------------- /engine/common/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/host.c -------------------------------------------------------------------------------- /engine/common/host_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/host_state.c -------------------------------------------------------------------------------- /engine/common/hpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/hpak.c -------------------------------------------------------------------------------- /engine/common/hpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/hpak.h -------------------------------------------------------------------------------- /engine/common/identification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/identification.c -------------------------------------------------------------------------------- /engine/common/imagelib/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/imagelib.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_bmp.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_bmp.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_dds.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_dds.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_main.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_png.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_png.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_quant.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_tga.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_tga.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_utils.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/imagelib/img_wad.c -------------------------------------------------------------------------------- /engine/common/infostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/infostring.c -------------------------------------------------------------------------------- /engine/common/ipv6text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/ipv6text.c -------------------------------------------------------------------------------- /engine/common/ipv6text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/ipv6text.h -------------------------------------------------------------------------------- /engine/common/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/launcher.c -------------------------------------------------------------------------------- /engine/common/lib_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/lib_common.c -------------------------------------------------------------------------------- /engine/common/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/library.h -------------------------------------------------------------------------------- /engine/common/masterlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/masterlist.c -------------------------------------------------------------------------------- /engine/common/mod_bmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/mod_bmodel.c -------------------------------------------------------------------------------- /engine/common/mod_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/mod_local.h -------------------------------------------------------------------------------- /engine/common/mod_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/mod_sprite.c -------------------------------------------------------------------------------- /engine/common/mod_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/mod_studio.c -------------------------------------------------------------------------------- /engine/common/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/model.c -------------------------------------------------------------------------------- /engine/common/net_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_buffer.c -------------------------------------------------------------------------------- /engine/common/net_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_buffer.h -------------------------------------------------------------------------------- /engine/common/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_chan.c -------------------------------------------------------------------------------- /engine/common/net_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_encode.c -------------------------------------------------------------------------------- /engine/common/net_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_encode.h -------------------------------------------------------------------------------- /engine/common/net_ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_ws.c -------------------------------------------------------------------------------- /engine/common/net_ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/net_ws.h -------------------------------------------------------------------------------- /engine/common/netchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/netchan.h -------------------------------------------------------------------------------- /engine/common/pm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/pm_debug.c -------------------------------------------------------------------------------- /engine/common/pm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/pm_local.h -------------------------------------------------------------------------------- /engine/common/pm_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/pm_surface.c -------------------------------------------------------------------------------- /engine/common/pm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/pm_trace.c -------------------------------------------------------------------------------- /engine/common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/protocol.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/dct36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/dct36.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/dct64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/dct64.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/fmt123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/fmt123.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/format.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/frame.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/frame.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/getbits.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/huffman.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/index.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/index.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/layer3.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/libmpg.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/libmpg.dsp -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/libmpg.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpeghead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/mpeghead.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/mpg123.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/mpg123.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/parse.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/reader.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/reader.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/sample.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/synth.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/synth.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/tabinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/libmpg/tabinit.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/snd_main.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/snd_mp3.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/snd_utils.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/snd_wav.c -------------------------------------------------------------------------------- /engine/common/soundlib/soundlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/soundlib/soundlib.h -------------------------------------------------------------------------------- /engine/common/sys_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/sys_con.c -------------------------------------------------------------------------------- /engine/common/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/system.c -------------------------------------------------------------------------------- /engine/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/system.h -------------------------------------------------------------------------------- /engine/common/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/tests.h -------------------------------------------------------------------------------- /engine/common/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/whereami.c -------------------------------------------------------------------------------- /engine/common/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/whereami.h -------------------------------------------------------------------------------- /engine/common/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/world.c -------------------------------------------------------------------------------- /engine/common/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/world.h -------------------------------------------------------------------------------- /engine/common/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/common/zone.c -------------------------------------------------------------------------------- /engine/cursor_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/cursor_type.h -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/customentity.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/key_modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/key_modifiers.h -------------------------------------------------------------------------------- /engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/keydefs.h -------------------------------------------------------------------------------- /engine/menu_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/menu_int.h -------------------------------------------------------------------------------- /engine/mobility_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/mobility_int.h -------------------------------------------------------------------------------- /engine/physint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/physint.h -------------------------------------------------------------------------------- /engine/platform/android/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/android.c -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/dlsym-weak.cpp -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/dlsym-weak.h -------------------------------------------------------------------------------- /engine/platform/android/lib_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/lib_android.c -------------------------------------------------------------------------------- /engine/platform/android/lib_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/lib_android.h -------------------------------------------------------------------------------- /engine/platform/android/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/android/linker.h -------------------------------------------------------------------------------- /engine/platform/apple/lib_ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/apple/lib_ios.c -------------------------------------------------------------------------------- /engine/platform/apple/lib_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/apple/lib_ios.h -------------------------------------------------------------------------------- /engine/platform/dos/in_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/dos/in_dos.c -------------------------------------------------------------------------------- /engine/platform/dos/ld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/dos/ld.sh -------------------------------------------------------------------------------- /engine/platform/dos/objcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/dos/objcopy.sh -------------------------------------------------------------------------------- /engine/platform/dos/sys_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/dos/sys_dos.c -------------------------------------------------------------------------------- /engine/platform/dos/vid_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/dos/vid_dos.c -------------------------------------------------------------------------------- /engine/platform/emscripten/lib_em.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/emscripten/lib_em.c -------------------------------------------------------------------------------- /engine/platform/emscripten/lib_em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/emscripten/lib_em.h -------------------------------------------------------------------------------- /engine/platform/irix/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/irix/dladdr.c -------------------------------------------------------------------------------- /engine/platform/irix/dladdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/irix/dladdr.h -------------------------------------------------------------------------------- /engine/platform/irix/xash-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/irix/xash-exec -------------------------------------------------------------------------------- /engine/platform/linux/in_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/linux/in_evdev.c -------------------------------------------------------------------------------- /engine/platform/linux/s_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/linux/s_alsa.c -------------------------------------------------------------------------------- /engine/platform/linux/sys_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/linux/sys_linux.c -------------------------------------------------------------------------------- /engine/platform/linux/vid_fbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/linux/vid_fbdev.c -------------------------------------------------------------------------------- /engine/platform/misc/kmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/misc/kmalloc.c -------------------------------------------------------------------------------- /engine/platform/misc/lib_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/misc/lib_static.c -------------------------------------------------------------------------------- /engine/platform/misc/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/misc/sbrk.c -------------------------------------------------------------------------------- /engine/platform/misc/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/misc/swap.h -------------------------------------------------------------------------------- /engine/platform/nswitch/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/nswitch/icon.jpg -------------------------------------------------------------------------------- /engine/platform/nswitch/sys_nswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/nswitch/sys_nswitch.c -------------------------------------------------------------------------------- /engine/platform/nswitch/xash3d-fwgs.nacp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/nswitch/xash3d-fwgs.nacp -------------------------------------------------------------------------------- /engine/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/platform.h -------------------------------------------------------------------------------- /engine/platform/posix/lib_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/posix/lib_posix.c -------------------------------------------------------------------------------- /engine/platform/posix/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/posix/net.h -------------------------------------------------------------------------------- /engine/platform/posix/sys_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/posix/sys_posix.c -------------------------------------------------------------------------------- /engine/platform/psvita/in_psvita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/in_psvita.c -------------------------------------------------------------------------------- /engine/platform/psvita/net_psvita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/net_psvita.h -------------------------------------------------------------------------------- /engine/platform/psvita/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/sce_sys/icon0.png -------------------------------------------------------------------------------- /engine/platform/psvita/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /engine/platform/psvita/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /engine/platform/psvita/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /engine/platform/psvita/sys_psvita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/psvita/sys_psvita.c -------------------------------------------------------------------------------- /engine/platform/sdl/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/events.c -------------------------------------------------------------------------------- /engine/platform/sdl/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/events.h -------------------------------------------------------------------------------- /engine/platform/sdl/in_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/in_sdl.c -------------------------------------------------------------------------------- /engine/platform/sdl/s_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/s_sdl.c -------------------------------------------------------------------------------- /engine/platform/sdl/sys_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/sys_sdl.c -------------------------------------------------------------------------------- /engine/platform/sdl/vid_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/sdl/vid_sdl.c -------------------------------------------------------------------------------- /engine/platform/stub/net_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/stub/net_stub.h -------------------------------------------------------------------------------- /engine/platform/stub/s_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/stub/s_stub.c -------------------------------------------------------------------------------- /engine/platform/win32/con_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/con_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_custom_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/lib_custom_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/lib_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/lib_win.h -------------------------------------------------------------------------------- /engine/platform/win32/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/net.h -------------------------------------------------------------------------------- /engine/platform/win32/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/platform/win32/sys_win.c -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /engine/ref_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/ref_api.h -------------------------------------------------------------------------------- /engine/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/server.h -------------------------------------------------------------------------------- /engine/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_client.c -------------------------------------------------------------------------------- /engine/server/sv_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_cmds.c -------------------------------------------------------------------------------- /engine/server/sv_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_custom.c -------------------------------------------------------------------------------- /engine/server/sv_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_filter.c -------------------------------------------------------------------------------- /engine/server/sv_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_frame.c -------------------------------------------------------------------------------- /engine/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_game.c -------------------------------------------------------------------------------- /engine/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_init.c -------------------------------------------------------------------------------- /engine/server/sv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_log.c -------------------------------------------------------------------------------- /engine/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_main.c -------------------------------------------------------------------------------- /engine/server/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_move.c -------------------------------------------------------------------------------- /engine/server/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_phys.c -------------------------------------------------------------------------------- /engine/server/sv_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_pmove.c -------------------------------------------------------------------------------- /engine/server/sv_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_query.c -------------------------------------------------------------------------------- /engine/server/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_save.c -------------------------------------------------------------------------------- /engine/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/server/sv_world.c -------------------------------------------------------------------------------- /engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/shake.h -------------------------------------------------------------------------------- /engine/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/sprite.h -------------------------------------------------------------------------------- /engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/studio.h -------------------------------------------------------------------------------- /engine/vgui_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/vgui_api.h -------------------------------------------------------------------------------- /engine/warpsin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/warpsin.h -------------------------------------------------------------------------------- /engine/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/engine/wscript -------------------------------------------------------------------------------- /filesystem/VFileSystem009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/VFileSystem009.cpp -------------------------------------------------------------------------------- /filesystem/VFileSystem009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/VFileSystem009.h -------------------------------------------------------------------------------- /filesystem/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/dir.c -------------------------------------------------------------------------------- /filesystem/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/filesystem.c -------------------------------------------------------------------------------- /filesystem/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/filesystem.h -------------------------------------------------------------------------------- /filesystem/filesystem_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/filesystem_internal.h -------------------------------------------------------------------------------- /filesystem/fscallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/fscallback.h -------------------------------------------------------------------------------- /filesystem/pak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/pak.c -------------------------------------------------------------------------------- /filesystem/tests/caseinsensitive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/tests/caseinsensitive.c -------------------------------------------------------------------------------- /filesystem/tests/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/tests/interface.cpp -------------------------------------------------------------------------------- /filesystem/tests/no-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/tests/no-init.c -------------------------------------------------------------------------------- /filesystem/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/wad.c -------------------------------------------------------------------------------- /filesystem/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/wscript -------------------------------------------------------------------------------- /filesystem/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/filesystem/zip.c -------------------------------------------------------------------------------- /game_launch/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/game_launch/game.cpp -------------------------------------------------------------------------------- /game_launch/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/game_launch/game.rc -------------------------------------------------------------------------------- /game_launch/icon-xash-material.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/game_launch/icon-xash-material.ico -------------------------------------------------------------------------------- /game_launch/icon-xash-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/game_launch/icon-xash-material.png -------------------------------------------------------------------------------- /game_launch/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/game_launch/wscript -------------------------------------------------------------------------------- /pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /public/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/build.c -------------------------------------------------------------------------------- /public/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/build.h -------------------------------------------------------------------------------- /public/buildenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/buildenums.h -------------------------------------------------------------------------------- /public/crclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/crclib.c -------------------------------------------------------------------------------- /public/crclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/crclib.h -------------------------------------------------------------------------------- /public/crtlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/crtlib.c -------------------------------------------------------------------------------- /public/crtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/crtlib.h -------------------------------------------------------------------------------- /public/matrixlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/matrixlib.c -------------------------------------------------------------------------------- /public/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/miniz.h -------------------------------------------------------------------------------- /public/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/pstdint.h -------------------------------------------------------------------------------- /public/tests/test_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/tests/test_build.c -------------------------------------------------------------------------------- /public/tests/test_filebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/tests/test_filebase.c -------------------------------------------------------------------------------- /public/tests/test_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/tests/test_strings.c -------------------------------------------------------------------------------- /public/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/wscript -------------------------------------------------------------------------------- /public/xash3d_mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/xash3d_mathlib.c -------------------------------------------------------------------------------- /public/xash3d_mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/public/xash3d_mathlib.h -------------------------------------------------------------------------------- /ref/gl/exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/exports.txt -------------------------------------------------------------------------------- /ref/gl/gl_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_alias.c -------------------------------------------------------------------------------- /ref/gl/gl_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_backend.c -------------------------------------------------------------------------------- /ref/gl/gl_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_beams.c -------------------------------------------------------------------------------- /ref/gl/gl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_context.c -------------------------------------------------------------------------------- /ref/gl/gl_cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_cull.c -------------------------------------------------------------------------------- /ref/gl/gl_dbghulls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_dbghulls.c -------------------------------------------------------------------------------- /ref/gl/gl_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_decals.c -------------------------------------------------------------------------------- /ref/gl/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_draw.c -------------------------------------------------------------------------------- /ref/gl/gl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_export.h -------------------------------------------------------------------------------- /ref/gl/gl_frustum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_frustum.c -------------------------------------------------------------------------------- /ref/gl/gl_frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_frustum.h -------------------------------------------------------------------------------- /ref/gl/gl_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_image.c -------------------------------------------------------------------------------- /ref/gl/gl_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_local.h -------------------------------------------------------------------------------- /ref/gl/gl_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_opengl.c -------------------------------------------------------------------------------- /ref/gl/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rlight.c -------------------------------------------------------------------------------- /ref/gl/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rmain.c -------------------------------------------------------------------------------- /ref/gl/gl_rmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rmath.c -------------------------------------------------------------------------------- /ref/gl/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rmisc.c -------------------------------------------------------------------------------- /ref/gl/gl_rpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rpart.c -------------------------------------------------------------------------------- /ref/gl/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_rsurf.c -------------------------------------------------------------------------------- /ref/gl/gl_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_sprite.c -------------------------------------------------------------------------------- /ref/gl/gl_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_studio.c -------------------------------------------------------------------------------- /ref/gl/gl_triapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_triapi.c -------------------------------------------------------------------------------- /ref/gl/gl_vgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_vgui.c -------------------------------------------------------------------------------- /ref/gl/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/gl_warp.c -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shaders/fragment.cg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shaders/fragment.cg.inc -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shaders/vertex.cg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shaders/vertex.cg.inc -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shim.c -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shim.h -------------------------------------------------------------------------------- /ref/gl/vgl_shim/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/vgl_shim/wscript -------------------------------------------------------------------------------- /ref/gl/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/gl/wscript -------------------------------------------------------------------------------- /ref/soft/adivtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/adivtab.h -------------------------------------------------------------------------------- /ref/soft/r_aclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_aclip.c -------------------------------------------------------------------------------- /ref/soft/r_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_beams.c -------------------------------------------------------------------------------- /ref/soft/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_bsp.c -------------------------------------------------------------------------------- /ref/soft/r_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_context.c -------------------------------------------------------------------------------- /ref/soft/r_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_decals.c -------------------------------------------------------------------------------- /ref/soft/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_draw.c -------------------------------------------------------------------------------- /ref/soft/r_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_edge.c -------------------------------------------------------------------------------- /ref/soft/r_glblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_glblit.c -------------------------------------------------------------------------------- /ref/soft/r_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_image.c -------------------------------------------------------------------------------- /ref/soft/r_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_light.c -------------------------------------------------------------------------------- /ref/soft/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_local.h -------------------------------------------------------------------------------- /ref/soft/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_main.c -------------------------------------------------------------------------------- /ref/soft/r_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_math.c -------------------------------------------------------------------------------- /ref/soft/r_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_misc.c -------------------------------------------------------------------------------- /ref/soft/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_part.c -------------------------------------------------------------------------------- /ref/soft/r_polyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_polyse.c -------------------------------------------------------------------------------- /ref/soft/r_rast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_rast.c -------------------------------------------------------------------------------- /ref/soft/r_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_scan.c -------------------------------------------------------------------------------- /ref/soft/r_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_sprite.c -------------------------------------------------------------------------------- /ref/soft/r_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_studio.c -------------------------------------------------------------------------------- /ref/soft/r_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_surf.c -------------------------------------------------------------------------------- /ref/soft/r_trialias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_trialias.c -------------------------------------------------------------------------------- /ref/soft/r_triapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_triapi.c -------------------------------------------------------------------------------- /ref/soft/r_vgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/r_vgui.c -------------------------------------------------------------------------------- /ref/soft/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/ref/soft/wscript -------------------------------------------------------------------------------- /scripts/cirrus/build_freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/cirrus/build_freebsd.sh -------------------------------------------------------------------------------- /scripts/flatpak/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/flatpak/run.sh -------------------------------------------------------------------------------- /scripts/flatpak/su.xash.Engine.Compat.i386.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/flatpak/su.xash.Engine.Compat.i386.desktop -------------------------------------------------------------------------------- /scripts/flatpak/su.xash.Engine.Compat.i386.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/flatpak/su.xash.Engine.Compat.i386.yml -------------------------------------------------------------------------------- /scripts/gha/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_android.sh -------------------------------------------------------------------------------- /scripts/gha/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_linux.sh -------------------------------------------------------------------------------- /scripts/gha/build_motomagx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_motomagx.sh -------------------------------------------------------------------------------- /scripts/gha/build_nswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_nswitch.sh -------------------------------------------------------------------------------- /scripts/gha/build_nswitch_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_nswitch_docker.sh -------------------------------------------------------------------------------- /scripts/gha/build_psvita.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_psvita.sh -------------------------------------------------------------------------------- /scripts/gha/build_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/build_win32.sh -------------------------------------------------------------------------------- /scripts/gha/deps_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_android.sh -------------------------------------------------------------------------------- /scripts/gha/deps_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_linux.sh -------------------------------------------------------------------------------- /scripts/gha/deps_motomagx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_motomagx.sh -------------------------------------------------------------------------------- /scripts/gha/deps_nswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_nswitch.sh -------------------------------------------------------------------------------- /scripts/gha/deps_psvita.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_psvita.sh -------------------------------------------------------------------------------- /scripts/gha/deps_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/gha/deps_win32.sh -------------------------------------------------------------------------------- /scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/lib.sh -------------------------------------------------------------------------------- /scripts/makepak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/makepak.py -------------------------------------------------------------------------------- /scripts/sailfish/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/sailfish/build.sh -------------------------------------------------------------------------------- /scripts/sailfish/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/sailfish/deploy.sh -------------------------------------------------------------------------------- /scripts/sailfish/harbour-xash3d-fwgs.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/sailfish/harbour-xash3d-fwgs.desktop -------------------------------------------------------------------------------- /scripts/sailfish/harbour-xash3d-fwgs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/sailfish/harbour-xash3d-fwgs.spec -------------------------------------------------------------------------------- /scripts/sailfish/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/sailfish/run.sh -------------------------------------------------------------------------------- /scripts/waifulib/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/cmake.py -------------------------------------------------------------------------------- /scripts/waifulib/compiler_optimizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/compiler_optimizations.py -------------------------------------------------------------------------------- /scripts/waifulib/nswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/nswitch.py -------------------------------------------------------------------------------- /scripts/waifulib/owcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/owcc.py -------------------------------------------------------------------------------- /scripts/waifulib/psvita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/psvita.py -------------------------------------------------------------------------------- /scripts/waifulib/vgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/vgui.py -------------------------------------------------------------------------------- /scripts/waifulib/xcompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/xcompile.py -------------------------------------------------------------------------------- /scripts/waifulib/xshlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/xshlib.py -------------------------------------------------------------------------------- /scripts/waifulib/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/waifulib/zip.py -------------------------------------------------------------------------------- /scripts/xashds@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/scripts/xashds@.service -------------------------------------------------------------------------------- /utils/mdldec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/Makefile -------------------------------------------------------------------------------- /utils/mdldec/mdldec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/mdldec.c -------------------------------------------------------------------------------- /utils/mdldec/mdldec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/mdldec.h -------------------------------------------------------------------------------- /utils/mdldec/qc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/qc.c -------------------------------------------------------------------------------- /utils/mdldec/qc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/qc.h -------------------------------------------------------------------------------- /utils/mdldec/res/activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/res/activities.txt -------------------------------------------------------------------------------- /utils/mdldec/smd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/smd.c -------------------------------------------------------------------------------- /utils/mdldec/smd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/smd.h -------------------------------------------------------------------------------- /utils/mdldec/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/texture.c -------------------------------------------------------------------------------- /utils/mdldec/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/texture.h -------------------------------------------------------------------------------- /utils/mdldec/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/utils.c -------------------------------------------------------------------------------- /utils/mdldec/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/utils.h -------------------------------------------------------------------------------- /utils/mdldec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/version.h -------------------------------------------------------------------------------- /utils/mdldec/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/mdldec/wscript -------------------------------------------------------------------------------- /utils/run-fuzzer/run-fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/run-fuzzer/run-fuzzer.c -------------------------------------------------------------------------------- /utils/run-fuzzer/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/run-fuzzer/wscript -------------------------------------------------------------------------------- /utils/xar/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/xar/wscript -------------------------------------------------------------------------------- /utils/xar/xar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/utils/xar/xar.c -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/waf -------------------------------------------------------------------------------- /waf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/waf.bat -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSourcePorts/xash3d-fwgs/HEAD/wscript --------------------------------------------------------------------------------