├── .builds ├── alpine.yml ├── debian-arm64.yml ├── debian.yml ├── freebsd.yml ├── netbsd.yml └── openbsd.yml ├── .cirrus.yml ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── crash-report.md │ └── visual-glitches-report.md └── workflows │ └── c-cpp.yml ├── .gitignore ├── .gitmodules ├── 3rdparty ├── bzip2 │ └── wscript ├── extras │ └── wscript ├── gl4es │ └── wscript ├── libbacktrace │ └── wscript ├── libogg │ └── wscript ├── opus │ └── wscript ├── opusfile │ └── wscript └── vorbis │ └── wscript ├── CONTRIBUTING.md ├── Documentation ├── bug-compatibility.md ├── cross-compiling-for-windows-with-wine.md ├── debugging-using-minidumps.md ├── donate.md ├── engine-porting-guide.md ├── environment-variables.md ├── extensions │ ├── addon-folders.md │ ├── console-scripting.md │ ├── entity-tools.md │ ├── expanded-common-structures.md │ ├── input-interface-ru.md │ ├── input-interface.md │ ├── library-naming.md │ ├── mp3-loops.md │ ├── native-object.md │ └── sounds.lst.md ├── gameinfo.md ├── goldsrc-protocol-support.md ├── hd-textures.md ├── images │ ├── editor.jpg │ ├── example1.jpg │ ├── example2.jpg │ ├── example3.jpg │ ├── example4.jpg │ ├── example5.jpg │ ├── touch-buttons.jpg │ └── touch-profiles.jpg ├── mod-porting-guide.md ├── musl.md ├── nat-bypass-usage.md ├── not-supported-mod-list-and-reasons-why.md ├── opensource-mods.md ├── ports.md ├── psvita.md ├── supported-mod-list.md └── touch-controls.md ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ ├── run-python │ ├── run-python.bat │ └── src │ │ ├── asan │ │ ├── jniLibs │ │ │ ├── arm64-v8a │ │ │ │ └── libclang_rt.asan-aarch64-android.so │ │ │ ├── armeabi-v7a │ │ │ │ └── libclang_rt.asan-arm-android.so │ │ │ ├── x86 │ │ │ │ └── libclang_rt.asan-i686-android.so │ │ │ └── x86_64 │ │ │ │ └── libclang_rt.asan-x86_64-android.so │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── resources │ │ │ └── lib │ │ │ ├── arm64-v8a │ │ │ └── wrap.sh │ │ │ ├── armeabi-v7a │ │ │ └── wrap.sh │ │ │ ├── x86 │ │ │ └── wrap.sh │ │ │ └── x86_64 │ │ │ └── wrap.sh │ │ ├── continuous │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── debug │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── su │ │ │ └── xash │ │ │ └── engine │ │ │ ├── DedicatedActivity.kt │ │ │ ├── DedicatedService.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainApplication.kt │ │ │ ├── XashActivity.java │ │ │ ├── adapters │ │ │ └── GameAdapter.kt │ │ │ ├── model │ │ │ ├── BackgroundBitmap.kt │ │ │ └── Game.kt │ │ │ ├── ui │ │ │ ├── library │ │ │ │ ├── LibraryFragment.kt │ │ │ │ └── LibraryViewModel.kt │ │ │ └── settings │ │ │ │ ├── AppSettingsFragment.kt │ │ │ │ ├── AppSettingsPreferenceFragment.kt │ │ │ │ ├── GameSettingsFragment.kt │ │ │ │ └── GameSettingsPreferenceFragment.kt │ │ │ └── util │ │ │ ├── AndroidBug5497Workaround.java │ │ │ └── TGAReader.java │ │ └── res │ │ ├── drawable │ │ ├── ic_baseline_add_24.xml │ │ ├── ic_baseline_delete_24.xml │ │ ├── ic_baseline_folder_open_24.xml │ │ ├── ic_baseline_play_arrow_24.xml │ │ ├── ic_baseline_settings_24.xml │ │ └── ic_baseline_terminal_24.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── card_game.xml │ │ ├── edit_text_preference.xml │ │ ├── fragment_app_settings.xml │ │ ├── fragment_game_settings.xml │ │ ├── fragment_library.xml │ │ ├── list_preference.xml │ │ └── switch_preference.xml │ │ ├── menu │ │ ├── menu_game_settings.xml │ │ └── menu_library.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── navigation │ │ └── nav_graph.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── app_preferences.xml │ │ └── game_preferences.xml ├── build.gradle.kts ├── debug.keystore ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── common ├── backends.h ├── beamdef.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_device.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_ffmpeg.c │ │ └── avi_ffmpeg.h │ ├── 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_parse_gs.c │ ├── cl_pmove.c │ ├── cl_qparse.c │ ├── cl_remap.c │ ├── cl_render.c │ ├── cl_scrn.c │ ├── cl_securedstub.c │ ├── cl_spray.c │ ├── cl_tent.c │ ├── cl_tent.h │ ├── cl_video.c │ ├── cl_view.c │ ├── client.h │ ├── console.c │ ├── gamma.c │ ├── identification.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 │ ├── 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 │ │ ├── ogg_filestream.c │ │ ├── ogg_filestream.h │ │ ├── snd_main.c │ │ ├── snd_mp3.c │ │ ├── snd_ogg_opus.c │ │ ├── snd_ogg_vorbis.c │ │ └── snd_wav.c │ ├── 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 │ ├── custom.c │ ├── cvar.c │ ├── cvar.h │ ├── dedicated.c │ ├── filesystem_engine.c │ ├── host.c │ ├── host_state.c │ ├── hpak.c │ ├── hpak.h │ ├── imagelib │ │ ├── imagelib.h │ │ ├── img_bmp.c │ │ ├── img_bmp.h │ │ ├── img_dds.c │ │ ├── img_dds.h │ │ ├── img_ktx2.c │ │ ├── img_ktx2.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_alias.c │ ├── mod_bmodel.c │ ├── mod_local.h │ ├── mod_sprite.c │ ├── mod_studio.c │ ├── model.c │ ├── munge.c │ ├── net_buffer.c │ ├── net_buffer.h │ ├── net_chan.c │ ├── net_encode.c │ ├── net_encode.h │ ├── net_http.c │ ├── net_ws.c │ ├── net_ws.h │ ├── net_ws_private.h │ ├── netchan.h │ ├── pm_local.h │ ├── pm_surface.c │ ├── pm_trace.c │ ├── protocol.h │ ├── soundlib │ │ ├── snd_utils.c │ │ └── soundlib.h │ ├── sounds.c │ ├── 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.c │ │ ├── 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 │ ├── 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 │ │ ├── con_posix.c │ │ ├── crash.h │ │ ├── crash_glibc.c │ │ ├── crash_libbacktrace.c │ │ ├── crash_posix.c │ │ ├── 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 │ ├── sdl1 │ │ ├── host_sdl1.c │ │ ├── in_sdl1.c │ │ ├── platform_sdl1.h │ │ ├── s_sdl1.c │ │ ├── sys_sdl1.c │ │ └── vid_sdl1.c │ ├── sdl2 │ │ ├── host_sdl2.c │ │ ├── in_sdl2.c │ │ ├── joy_sdl2.c │ │ ├── platform_sdl2.h │ │ ├── s_sdl2.c │ │ ├── sys_sdl2.c │ │ └── vid_sdl2.c │ ├── sdl3 │ │ ├── in_sdl3.c │ │ ├── platform_sdl3.h │ │ └── sys_sdl3.c │ ├── stub │ │ ├── net_stub.h │ │ └── s_stub.c │ └── win32 │ │ ├── con_win.c │ │ ├── crash_win.c │ │ ├── lib_custom_win.c │ │ ├── lib_win.c │ │ ├── lib_win.h │ │ ├── net.h │ │ └── sys_win.c ├── progdefs.h ├── ref_api.h ├── ref_vulkan.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 ├── android.c ├── dir.c ├── exports.txt ├── 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 ├── build_vcs.c ├── buildenums.h ├── crclib.c ├── crclib.h ├── crtlib.c ├── crtlib.h ├── dllhelpers.c ├── getopt.c ├── getopt.h ├── ktx2.h ├── matrixlib.c ├── miniz.c ├── miniz.h ├── pstdint.h ├── tests │ ├── test_atoi.c │ ├── test_build.c │ ├── test_efp.c │ ├── test_filebase.c │ ├── test_fileext.c │ ├── test_parsefile.c │ ├── test_strings.c │ └── test_validate_target.c ├── utflib.c ├── utflib.h ├── wscript ├── xash3d_mathlib.c └── xash3d_mathlib.h ├── ref ├── gl │ ├── exports.txt │ ├── gl2_shim │ │ ├── fragment.glsl.inc │ │ ├── gl2_shim.c │ │ ├── gl2_shim.h │ │ └── vertex.glsl.inc │ ├── gl_alias.c │ ├── gl_backend.c │ ├── gl_beams.c │ ├── gl_context.c │ ├── gl_cull.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_warp.c │ ├── vgl_shim │ │ ├── vgl_shaders │ │ │ ├── fragment.cg.inc │ │ │ └── vertex.cg.inc │ │ ├── vgl_shim.c │ │ ├── vgl_shim.h │ │ └── wscript │ └── wscript ├── null │ ├── r_context.c │ └── 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 │ └── wscript └── vk │ ├── NOTES.md │ ├── TODO.md │ ├── camera.c │ ├── camera.h │ ├── common_geometry.c │ ├── data │ ├── bshift │ │ ├── luchiki │ │ │ └── maps │ │ │ │ ├── ba_canal1.patch │ │ │ │ ├── ba_canal2.patch │ │ │ │ ├── ba_elevator.patch │ │ │ │ ├── ba_security1.patch │ │ │ │ ├── ba_security2.patch │ │ │ │ ├── ba_tram2.patch │ │ │ │ └── ba_yard5a.patch │ │ └── maps │ │ │ ├── ba_canal1.rad │ │ │ ├── ba_canal1b.rad │ │ │ ├── ba_elevator.rad │ │ │ ├── ba_hazard1.rad │ │ │ ├── ba_hazard2.rad │ │ │ ├── ba_hazard3.rad │ │ │ ├── ba_hazard4.rad │ │ │ ├── ba_hazard5.rad │ │ │ ├── ba_hazard6.rad │ │ │ ├── ba_power1.rad │ │ │ ├── ba_power2.rad │ │ │ ├── ba_security2.rad │ │ │ ├── ba_teleport1.rad │ │ │ ├── ba_teleport2.rad │ │ │ ├── ba_yard1.rad │ │ │ ├── ba_yard2.rad │ │ │ ├── ba_yard3.rad │ │ │ ├── ba_yard3a.rad │ │ │ ├── ba_yard3b.rad │ │ │ ├── ba_yard4.rad │ │ │ ├── ba_yard4a.rad │ │ │ ├── ba_yard5.rad │ │ │ ├── ba_yard5a.rad │ │ │ └── lights.rad │ ├── cstrike │ │ ├── luchiki │ │ │ └── maps │ │ │ │ └── de_dust2.patch │ │ └── maps │ │ │ ├── cs_747.rad │ │ │ ├── cs_assault.rad │ │ │ ├── cs_delta_assault.rad │ │ │ ├── cs_italy.rad │ │ │ └── fy_pool_day.rad │ └── valve │ │ ├── luchiki │ │ └── maps │ │ │ ├── c0a0.patch │ │ │ ├── c0a0a.patch │ │ │ ├── c0a0b.patch │ │ │ ├── c0a0c.patch │ │ │ ├── c0a0d.patch │ │ │ ├── c0a0e.patch │ │ │ ├── c1a0.patch │ │ │ ├── c1a0a.patch │ │ │ ├── c1a0b.patch │ │ │ ├── c1a0c.patch │ │ │ ├── c1a0d.patch │ │ │ ├── c1a0e.patch │ │ │ ├── c1a1.patch │ │ │ ├── c1a1a.patch │ │ │ ├── c1a1b.patch │ │ │ ├── c1a1c.patch │ │ │ ├── c1a1d.patch │ │ │ ├── c1a1f.patch │ │ │ ├── c1a2.patch │ │ │ ├── c1a2a.patch │ │ │ ├── c1a2b.patch │ │ │ ├── c1a2c.patch │ │ │ ├── c1a2d.patch │ │ │ ├── c1a3.patch │ │ │ ├── c1a3a.patch │ │ │ ├── c1a3b-dayone.patch │ │ │ ├── c1a3b.patch │ │ │ ├── c1a3c-dayone.patch │ │ │ ├── c1a3d.patch │ │ │ ├── c1a4d.patch │ │ │ ├── c1a4e.patch │ │ │ ├── c1a4f.patch │ │ │ ├── c1a4g.patch │ │ │ ├── c1a4k.patch │ │ │ ├── c2a1.patch │ │ │ ├── c2a1b.patch │ │ │ ├── c2a2h.patch │ │ │ ├── c2a3.patch │ │ │ ├── c2a3a.patch │ │ │ ├── c2a3b.patch │ │ │ ├── c2a3d.patch │ │ │ ├── c2a3e.patch │ │ │ ├── c2a4a.patch │ │ │ ├── c2a4e.patch │ │ │ ├── c2a4f.patch │ │ │ ├── c2a4g.patch │ │ │ ├── c2a5.patch │ │ │ ├── c2a5c.patch │ │ │ ├── c2a5e.patch │ │ │ ├── c2a5f.patch │ │ │ ├── c3a1.patch │ │ │ ├── c3a1a.patch │ │ │ ├── c3a2.patch │ │ │ ├── c3a2d.patch │ │ │ ├── c3a2e.patch │ │ │ ├── c4a1a.patch │ │ │ ├── c5a1.patch │ │ │ ├── hldemo1.patch │ │ │ ├── hldemo2.patch │ │ │ └── t0a0.patch │ │ └── maps │ │ ├── README.txt │ │ ├── boot_camp.rad │ │ ├── c0a0.rad │ │ ├── c0a0a.rad │ │ ├── c0a0b.rad │ │ ├── c0a0c.rad │ │ ├── c0a0d.rad │ │ ├── c0a0e.rad │ │ ├── c1a0.rad │ │ ├── c1a0a.rad │ │ ├── c1a0b.rad │ │ ├── c1a0c.rad │ │ ├── c1a0d.rad │ │ ├── c1a0e.rad │ │ ├── c1a1.rad │ │ ├── c1a1a.rad │ │ ├── c1a1b.rad │ │ ├── c1a1c.rad │ │ ├── c1a1d.rad │ │ ├── c1a1f.rad │ │ ├── c1a2.rad │ │ ├── c1a2a.rad │ │ ├── c1a2b.rad │ │ ├── c1a2c.rad │ │ ├── c1a2d.rad │ │ ├── c1a3.rad │ │ ├── c1a3a.rad │ │ ├── c1a3b.rad │ │ ├── c1a3c.rad │ │ ├── c1a3d.rad │ │ ├── c1a4.rad │ │ ├── c1a4b.rad │ │ ├── c1a4d.rad │ │ ├── c1a4e.rad │ │ ├── c1a4f.rad │ │ ├── c1a4g.rad │ │ ├── c1a4i.rad │ │ ├── c1a4j.rad │ │ ├── c1a4k.rad │ │ ├── c2a1.rad │ │ ├── c2a1a.rad │ │ ├── c2a1b.rad │ │ ├── c2a2.rad │ │ ├── c2a2a.rad │ │ ├── c2a2b1.rad │ │ ├── c2a2b2.rad │ │ ├── c2a2c.rad │ │ ├── c2a2d.rad │ │ ├── c2a2e.rad │ │ ├── c2a2f.rad │ │ ├── c2a2g.rad │ │ ├── c2a2h.rad │ │ ├── c2a3.rad │ │ ├── c2a3a.rad │ │ ├── c2a3b.rad │ │ ├── c2a3c.rad │ │ ├── c2a3d.rad │ │ ├── c2a3e.rad │ │ ├── c2a4a.rad │ │ ├── c2a4b.rad │ │ ├── c2a4c.rad │ │ ├── c2a4d.rad │ │ ├── c2a4e.rad │ │ ├── c2a4f.rad │ │ ├── c2a4g.rad │ │ ├── c2a5.rad │ │ ├── c2a5a.rad │ │ ├── c2a5d.rad │ │ ├── c2a5e.rad │ │ ├── c2a5f.rad │ │ ├── c2a5x.rad │ │ ├── c3a1.rad │ │ ├── c3a1a.rad │ │ ├── c3a1b.rad │ │ ├── c3a2.rad │ │ ├── c3a2a.rad │ │ ├── c3a2b.rad │ │ ├── c3a2c.rad │ │ ├── c3a2d.rad │ │ ├── c3a2e.rad │ │ ├── c3a2f.rad │ │ ├── c4a1b.rad │ │ ├── c4a1c.rad │ │ ├── c4a1d.rad │ │ ├── c4a1e.rad │ │ ├── c4a1f.rad │ │ ├── c4a2.rad │ │ ├── c4a2a.rad │ │ ├── c4a2b.rad │ │ ├── c4a3.rad │ │ ├── c5a1.rad │ │ ├── cornell.rad │ │ ├── crossfire.rad │ │ ├── datacore.rad │ │ ├── doublecross.rad │ │ ├── frenzy.rad │ │ ├── gasworks.rad │ │ ├── hldemo1.rad │ │ ├── hldemo2.rad │ │ ├── lambda_bunker.rad │ │ ├── lights.rad │ │ ├── rapidcore.rad │ │ ├── rustmill.rad │ │ ├── snark_pit.rad │ │ ├── stalkyard.rad │ │ ├── subtransit.rad │ │ ├── t0a0.rad │ │ ├── t0a0a.rad │ │ ├── t0a0b.rad │ │ ├── t0a0b1.rad │ │ ├── t0a0b2.rad │ │ ├── t0a0c.rad │ │ ├── t0a0d.rad │ │ ├── team9.rad │ │ ├── thehill.rad │ │ ├── undertow.rad │ │ └── xen_dm.rad │ ├── dumbspter.c │ ├── infotool.c │ ├── r_block.c │ ├── r_block.h │ ├── r_speeds.c │ ├── r_speeds.h │ ├── r_textures.c │ ├── r_textures.h │ ├── ray_materials.md │ ├── rlight.c │ ├── rt_kusochki.c │ ├── rt_kusochki.h │ ├── sebastian.py │ ├── shaders │ ├── 2d.frag │ ├── 2d.vert │ ├── additive.rahit │ ├── alphamask.rahit │ ├── atrous.glsl │ ├── bluenoise.glsl │ ├── bounce.comp │ ├── brdf.glsl │ ├── brdf.h │ ├── brush.frag │ ├── brush.vert │ ├── color_spaces.glsl │ ├── debug.glsl │ ├── denoiser.comp │ ├── denoiser_config.glsl │ ├── denoiser_utils.glsl │ ├── diffuse_gi_sh_atrous.glsl │ ├── diffuse_gi_sh_denoise_init.comp │ ├── diffuse_gi_sh_denoise_pass_1.comp │ ├── diffuse_gi_sh_denoise_pass_2.comp │ ├── diffuse_gi_sh_denoise_pass_3.comp │ ├── diffuse_gi_sh_denoise_pass_4.comp │ ├── diffuse_gi_sh_denoise_pass_5.comp │ ├── diffuse_gi_sh_denoise_save.comp │ ├── empty.rmiss │ ├── indirect_diffuse_atrous1.comp │ ├── light.glsl │ ├── light_common.glsl │ ├── light_polygon.glsl │ ├── noise.glsl │ ├── peters2021-sampling │ │ ├── math_constants.glsl │ │ ├── polygon_clipping.glsl │ │ └── polygon_sampling.glsl │ ├── ray_common.glsl │ ├── ray_common_alphatest.rahit │ ├── ray_interop.h │ ├── ray_kusochki.glsl │ ├── ray_light_direct.glsl │ ├── ray_light_direct_point.comp │ ├── ray_light_direct_poly.comp │ ├── ray_primary.comp │ ├── ray_primary.rchit │ ├── ray_primary.rgen │ ├── ray_primary.rmiss │ ├── ray_primary_common.glsl │ ├── ray_primary_hit.glsl │ ├── ray_shadow.rchit │ ├── ray_shadow.rmiss │ ├── ray_shadow_interface.glsl │ ├── rt.json │ ├── rt_geometry.glsl │ ├── sky.frag │ ├── sky.vert │ ├── skybox.glsl │ ├── spatial_reconstruction.glsl │ ├── spatial_reconstruction_pass1.comp │ ├── spatial_reconstruction_pass2.comp │ ├── spherical_harmonics.glsl │ ├── trace_simple_blending.glsl │ └── utils.glsl │ ├── spirv.py │ ├── std │ ├── alolcator.c │ ├── alolcator.h │ ├── arrays.c │ ├── arrays.h │ ├── bitarray.c │ ├── bitarray.h │ ├── debugbreak.h │ ├── flipping.c │ ├── flipping.h │ ├── pcg.h │ ├── profiler.c │ ├── profiler.h │ ├── stringview.c │ ├── stringview.h │ ├── unordered_roadmap.c │ └── unordered_roadmap.h │ ├── tests │ └── unordered_roadmap.c │ ├── vk_beams.c │ ├── vk_beams.h │ ├── vk_brush.c │ ├── vk_brush.h │ ├── vk_common.h │ ├── vk_const.h │ ├── vk_core.c │ ├── vk_core.h │ ├── vk_cvar.c │ ├── vk_cvar.h │ ├── vk_entity_data.c │ ├── vk_entity_data.h │ ├── vk_framectl.c │ ├── vk_framectl.h │ ├── vk_geometry.c │ ├── vk_geometry.h │ ├── vk_light.c │ ├── vk_light.h │ ├── vk_lightmap.c │ ├── vk_lightmap.h │ ├── vk_logs.c │ ├── vk_logs.h │ ├── vk_mapents.c │ ├── vk_mapents.h │ ├── vk_materials.c │ ├── vk_materials.h │ ├── vk_math.c │ ├── vk_math.h │ ├── vk_overlay.c │ ├── vk_overlay.h │ ├── vk_ray_accel.h │ ├── vk_ray_internal.h │ ├── vk_ray_model.c │ ├── vk_render.c │ ├── vk_render.h │ ├── vk_renderstate.c │ ├── vk_renderstate.h │ ├── vk_rmain.c │ ├── vk_rpart.c │ ├── vk_rpart.h │ ├── vk_rtx.c │ ├── vk_rtx.h │ ├── vk_scene.c │ ├── vk_scene.h │ ├── vk_speeds.c │ ├── vk_speeds.h │ ├── vk_sprite.c │ ├── vk_sprite.h │ ├── vk_studio.c │ ├── vk_studio.h │ ├── vk_studio_model.c │ ├── vk_studio_model.h │ ├── vk_textures.c │ ├── vk_textures.h │ ├── vk_triapi.c │ ├── vk_triapi.h │ ├── vulkan │ ├── VBarrier.c │ ├── VBarrier.h │ ├── VBuffer.c │ ├── VBuffer.h │ ├── VCombuf.c │ ├── VCombuf.h │ ├── VCommandPool.c │ ├── VCommandPool.h │ ├── VDescriptor.c │ ├── VDescriptor.h │ ├── VDevice.c │ ├── VDevice.h │ ├── VDevmem.c │ ├── VDevmem.h │ ├── VImage.c │ ├── VImage.h │ ├── VImageExtra.h │ ├── VMeatpipe.c │ ├── VMeatpipe.h │ ├── VMisc.c │ ├── VNvAftermath.c │ ├── VNvAftermath.h │ ├── VPass.c │ ├── VPass.h │ ├── VPerfQuery.c │ ├── VPerfQuery.h │ ├── VPipeline.c │ ├── VPipeline.h │ ├── VRayAccel.c │ ├── VResource.c │ ├── VResource.h │ ├── VStaging.c │ ├── VStaging.h │ ├── VSwapchain.c │ └── VSwapchain.h │ └── wscript ├── scripts ├── build-ninja.py ├── cirrus │ └── build_freebsd.sh ├── configure-ninja.py ├── flatpak │ ├── run.sh │ ├── su.xash.Engine.Compat.i386.desktop │ └── su.xash.Engine.Compat.i386.yml ├── fwgs.pfx ├── gha │ ├── build_android.sh │ ├── build_apple.sh │ ├── build_linux-e2k.sh │ ├── build_linux.sh │ ├── build_motomagx.sh │ ├── build_nswitch.sh │ ├── build_nswitch_docker.sh │ ├── build_psvita.sh │ ├── build_win32.sh │ ├── deps_android.sh │ ├── deps_apple.sh │ ├── deps_linux-e2k.sh │ ├── deps_linux.sh │ ├── deps_motomagx.sh │ ├── deps_nswitch.sh │ ├── deps_psvita.sh │ ├── deps_win32.sh │ └── linux │ │ ├── AppRun │ │ └── xash3d-fwgs.desktop ├── lib-e2k.sh ├── lib.sh ├── makepak.py ├── sailfish │ ├── build.sh │ ├── deploy.sh │ ├── harbour-xash3d-fwgs.desktop │ ├── harbour-xash3d-fwgs.spec │ └── run.sh ├── waifulib │ ├── c_emscripten.py │ ├── compiler_optimizations.py │ ├── glslc.py │ ├── ninja.py │ ├── ninja_syntax.py │ ├── nswitch.py │ ├── owcc.py │ ├── psp.py │ ├── psvita.py │ ├── sdl2.py │ ├── sebastian.py │ ├── vgui.py │ ├── xcompile.py │ ├── xshlib.py │ └── zip.py └── xashds@.service ├── uncrustify.cfg ├── utils ├── mdldec │ ├── Makefile │ ├── mdldec.c │ ├── mdldec.h │ ├── qc.c │ ├── qc.h │ ├── res │ │ └── activities.txt │ ├── settings.h │ ├── 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 /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/debian-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/debian-arm64.yml -------------------------------------------------------------------------------- /.builds/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/debian.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.builds/netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/netbsd.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.github/ISSUE_TEMPLATE/crash-report.md -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/bzip2/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/bzip2/wscript -------------------------------------------------------------------------------- /3rdparty/extras/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/extras/wscript -------------------------------------------------------------------------------- /3rdparty/gl4es/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/gl4es/wscript -------------------------------------------------------------------------------- /3rdparty/libbacktrace/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/libbacktrace/wscript -------------------------------------------------------------------------------- /3rdparty/libogg/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/libogg/wscript -------------------------------------------------------------------------------- /3rdparty/opus/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/opus/wscript -------------------------------------------------------------------------------- /3rdparty/opusfile/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/opusfile/wscript -------------------------------------------------------------------------------- /3rdparty/vorbis/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/3rdparty/vorbis/wscript -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/bug-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/bug-compatibility.md -------------------------------------------------------------------------------- /Documentation/debugging-using-minidumps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/debugging-using-minidumps.md -------------------------------------------------------------------------------- /Documentation/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/donate.md -------------------------------------------------------------------------------- /Documentation/engine-porting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/engine-porting-guide.md -------------------------------------------------------------------------------- /Documentation/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/environment-variables.md -------------------------------------------------------------------------------- /Documentation/extensions/addon-folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/addon-folders.md -------------------------------------------------------------------------------- /Documentation/extensions/entity-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/entity-tools.md -------------------------------------------------------------------------------- /Documentation/extensions/input-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/input-interface.md -------------------------------------------------------------------------------- /Documentation/extensions/library-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/library-naming.md -------------------------------------------------------------------------------- /Documentation/extensions/mp3-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/mp3-loops.md -------------------------------------------------------------------------------- /Documentation/extensions/native-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/native-object.md -------------------------------------------------------------------------------- /Documentation/extensions/sounds.lst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/extensions/sounds.lst.md -------------------------------------------------------------------------------- /Documentation/gameinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/gameinfo.md -------------------------------------------------------------------------------- /Documentation/goldsrc-protocol-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/goldsrc-protocol-support.md -------------------------------------------------------------------------------- /Documentation/hd-textures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/hd-textures.md -------------------------------------------------------------------------------- /Documentation/images/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/editor.jpg -------------------------------------------------------------------------------- /Documentation/images/example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/example1.jpg -------------------------------------------------------------------------------- /Documentation/images/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/example2.jpg -------------------------------------------------------------------------------- /Documentation/images/example3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/example3.jpg -------------------------------------------------------------------------------- /Documentation/images/example4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/example4.jpg -------------------------------------------------------------------------------- /Documentation/images/example5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/example5.jpg -------------------------------------------------------------------------------- /Documentation/images/touch-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/touch-buttons.jpg -------------------------------------------------------------------------------- /Documentation/images/touch-profiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/images/touch-profiles.jpg -------------------------------------------------------------------------------- /Documentation/mod-porting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/mod-porting-guide.md -------------------------------------------------------------------------------- /Documentation/musl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/musl.md -------------------------------------------------------------------------------- /Documentation/nat-bypass-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/nat-bypass-usage.md -------------------------------------------------------------------------------- /Documentation/opensource-mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/opensource-mods.md -------------------------------------------------------------------------------- /Documentation/ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/ports.md -------------------------------------------------------------------------------- /Documentation/psvita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/psvita.md -------------------------------------------------------------------------------- /Documentation/supported-mod-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/supported-mod-list.md -------------------------------------------------------------------------------- /Documentation/touch-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/Documentation/touch-controls.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/run-python: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec python $@ 4 | -------------------------------------------------------------------------------- /android/app/run-python.bat: -------------------------------------------------------------------------------- 1 | python %* 2 | -------------------------------------------------------------------------------- /android/app/src/asan/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/asan/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/su/xash/engine/DedicatedActivity.kt: -------------------------------------------------------------------------------- 1 | package su.xash.engine 2 | 3 | class DedicatedActivity {} 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/debug.keystore -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /common/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/backends.h -------------------------------------------------------------------------------- /common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/beamdef.h -------------------------------------------------------------------------------- /common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/bspfile.h -------------------------------------------------------------------------------- /common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/cl_entity.h -------------------------------------------------------------------------------- /common/com_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/com_image.h -------------------------------------------------------------------------------- /common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/com_model.h -------------------------------------------------------------------------------- /common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/con_nprint.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/const.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/defaults.h -------------------------------------------------------------------------------- /common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/demo_api.h -------------------------------------------------------------------------------- /common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/dlight.h -------------------------------------------------------------------------------- /common/enginefeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/enginefeatures.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/entity_types.h -------------------------------------------------------------------------------- /common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/event_api.h -------------------------------------------------------------------------------- /common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/event_args.h -------------------------------------------------------------------------------- /common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/event_flags.h -------------------------------------------------------------------------------- /common/gameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/gameinfo.h -------------------------------------------------------------------------------- /common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/hltv.h -------------------------------------------------------------------------------- /common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/ivoicetweak.h -------------------------------------------------------------------------------- /common/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/kbutton.h -------------------------------------------------------------------------------- /common/lightstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/lightstyle.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/net_api.h -------------------------------------------------------------------------------- /common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/netadr.h -------------------------------------------------------------------------------- /common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/particledef.h -------------------------------------------------------------------------------- /common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/pmtrace.h -------------------------------------------------------------------------------- /common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/port.h -------------------------------------------------------------------------------- /common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/qfont.h -------------------------------------------------------------------------------- /common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/r_efx.h -------------------------------------------------------------------------------- /common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/r_studioint.h -------------------------------------------------------------------------------- /common/ref_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/ref_device.h -------------------------------------------------------------------------------- /common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/ref_params.h -------------------------------------------------------------------------------- /common/render_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/render_api.h -------------------------------------------------------------------------------- /common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/screenfade.h -------------------------------------------------------------------------------- /common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/studio_event.h -------------------------------------------------------------------------------- /common/synctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/synctype.h -------------------------------------------------------------------------------- /common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/triangleapi.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /common/wadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/wadfile.h -------------------------------------------------------------------------------- /common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/weaponinfo.h -------------------------------------------------------------------------------- /common/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/wrect.h -------------------------------------------------------------------------------- /common/xash3d_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/common/xash3d_types.h -------------------------------------------------------------------------------- /engine/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/alias.h -------------------------------------------------------------------------------- /engine/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/anorms.h -------------------------------------------------------------------------------- /engine/cdll_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/cdll_exp.h -------------------------------------------------------------------------------- /engine/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/cdll_int.h -------------------------------------------------------------------------------- /engine/client/avi/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/avi/avi.h -------------------------------------------------------------------------------- /engine/client/avi/avi_ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/avi/avi_ffmpeg.c -------------------------------------------------------------------------------- /engine/client/avi/avi_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/avi/avi_ffmpeg.h -------------------------------------------------------------------------------- /engine/client/cl_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_cmds.c -------------------------------------------------------------------------------- /engine/client/cl_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_custom.c -------------------------------------------------------------------------------- /engine/client/cl_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_debug.c -------------------------------------------------------------------------------- /engine/client/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_demo.c -------------------------------------------------------------------------------- /engine/client/cl_efrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_efrag.c -------------------------------------------------------------------------------- /engine/client/cl_efx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_efx.c -------------------------------------------------------------------------------- /engine/client/cl_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_events.c -------------------------------------------------------------------------------- /engine/client/cl_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_font.c -------------------------------------------------------------------------------- /engine/client/cl_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_frame.c -------------------------------------------------------------------------------- /engine/client/cl_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_game.c -------------------------------------------------------------------------------- /engine/client/cl_gameui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_gameui.c -------------------------------------------------------------------------------- /engine/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_main.c -------------------------------------------------------------------------------- /engine/client/cl_mobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_mobile.c -------------------------------------------------------------------------------- /engine/client/cl_netgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_netgraph.c -------------------------------------------------------------------------------- /engine/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_parse.c -------------------------------------------------------------------------------- /engine/client/cl_parse_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_parse_48.c -------------------------------------------------------------------------------- /engine/client/cl_parse_gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_parse_gs.c -------------------------------------------------------------------------------- /engine/client/cl_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_pmove.c -------------------------------------------------------------------------------- /engine/client/cl_qparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_qparse.c -------------------------------------------------------------------------------- /engine/client/cl_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_remap.c -------------------------------------------------------------------------------- /engine/client/cl_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_render.c -------------------------------------------------------------------------------- /engine/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_scrn.c -------------------------------------------------------------------------------- /engine/client/cl_securedstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_securedstub.c -------------------------------------------------------------------------------- /engine/client/cl_spray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_spray.c -------------------------------------------------------------------------------- /engine/client/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_tent.c -------------------------------------------------------------------------------- /engine/client/cl_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_tent.h -------------------------------------------------------------------------------- /engine/client/cl_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_video.c -------------------------------------------------------------------------------- /engine/client/cl_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/cl_view.c -------------------------------------------------------------------------------- /engine/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/client.h -------------------------------------------------------------------------------- /engine/client/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/console.c -------------------------------------------------------------------------------- /engine/client/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/gamma.c -------------------------------------------------------------------------------- /engine/client/identification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/identification.c -------------------------------------------------------------------------------- /engine/client/in_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/in_joy.c -------------------------------------------------------------------------------- /engine/client/in_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/in_touch.c -------------------------------------------------------------------------------- /engine/client/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/input.c -------------------------------------------------------------------------------- /engine/client/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/input.h -------------------------------------------------------------------------------- /engine/client/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/keys.c -------------------------------------------------------------------------------- /engine/client/mod_dbghulls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/mod_dbghulls.c -------------------------------------------------------------------------------- /engine/client/ref_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/ref_common.c -------------------------------------------------------------------------------- /engine/client/ref_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/ref_common.h -------------------------------------------------------------------------------- /engine/client/s_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_dsp.c -------------------------------------------------------------------------------- /engine/client/s_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_load.c -------------------------------------------------------------------------------- /engine/client/s_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_main.c -------------------------------------------------------------------------------- /engine/client/s_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_mix.c -------------------------------------------------------------------------------- /engine/client/s_mouth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_mouth.c -------------------------------------------------------------------------------- /engine/client/s_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_stream.c -------------------------------------------------------------------------------- /engine/client/s_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_utils.c -------------------------------------------------------------------------------- /engine/client/s_vox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/s_vox.c -------------------------------------------------------------------------------- /engine/client/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/sound.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/dct36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/dct36.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/dct64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/dct64.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/fmt123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/fmt123.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/format.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/frame.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/frame.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/getbits.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/huffman.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/index.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/index.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/layer3.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/libmpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/libmpg.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/libmpg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/libmpg.dsp -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/libmpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/libmpg.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/mpeghead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/mpeghead.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/mpg123.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/mpg123.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/parse.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/reader.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/reader.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/sample.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/synth.c -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/synth.h -------------------------------------------------------------------------------- /engine/client/soundlib/libmpg/tabinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/libmpg/tabinit.c -------------------------------------------------------------------------------- /engine/client/soundlib/ogg_filestream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/ogg_filestream.c -------------------------------------------------------------------------------- /engine/client/soundlib/ogg_filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/ogg_filestream.h -------------------------------------------------------------------------------- /engine/client/soundlib/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/snd_main.c -------------------------------------------------------------------------------- /engine/client/soundlib/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/snd_mp3.c -------------------------------------------------------------------------------- /engine/client/soundlib/snd_ogg_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/snd_ogg_opus.c -------------------------------------------------------------------------------- /engine/client/soundlib/snd_ogg_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/snd_ogg_vorbis.c -------------------------------------------------------------------------------- /engine/client/soundlib/snd_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/soundlib/snd_wav.c -------------------------------------------------------------------------------- /engine/client/titles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/titles.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/vgui/vgui_draw.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/vgui/vgui_draw.h -------------------------------------------------------------------------------- /engine/client/vid_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/vid_common.c -------------------------------------------------------------------------------- /engine/client/vid_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/vid_common.h -------------------------------------------------------------------------------- /engine/client/voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/voice.c -------------------------------------------------------------------------------- /engine/client/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/voice.h -------------------------------------------------------------------------------- /engine/client/vox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/client/vox.h -------------------------------------------------------------------------------- /engine/common/base_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/base_cmd.c -------------------------------------------------------------------------------- /engine/common/base_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/base_cmd.h -------------------------------------------------------------------------------- /engine/common/cfgscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/cfgscript.c -------------------------------------------------------------------------------- /engine/common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/cmd.c -------------------------------------------------------------------------------- /engine/common/com_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/com_strings.h -------------------------------------------------------------------------------- /engine/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/common.c -------------------------------------------------------------------------------- /engine/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/common.h -------------------------------------------------------------------------------- /engine/common/con_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/con_utils.c -------------------------------------------------------------------------------- /engine/common/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/custom.c -------------------------------------------------------------------------------- /engine/common/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/cvar.c -------------------------------------------------------------------------------- /engine/common/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/cvar.h -------------------------------------------------------------------------------- /engine/common/dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/dedicated.c -------------------------------------------------------------------------------- /engine/common/filesystem_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/filesystem_engine.c -------------------------------------------------------------------------------- /engine/common/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/host.c -------------------------------------------------------------------------------- /engine/common/host_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/host_state.c -------------------------------------------------------------------------------- /engine/common/hpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/hpak.c -------------------------------------------------------------------------------- /engine/common/hpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/hpak.h -------------------------------------------------------------------------------- /engine/common/imagelib/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/imagelib.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_bmp.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_bmp.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_dds.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_dds.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_ktx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_ktx2.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_ktx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_ktx2.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_main.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_png.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_png.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_quant.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_tga.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_tga.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_utils.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/imagelib/img_wad.c -------------------------------------------------------------------------------- /engine/common/infostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/infostring.c -------------------------------------------------------------------------------- /engine/common/ipv6text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/ipv6text.c -------------------------------------------------------------------------------- /engine/common/ipv6text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/ipv6text.h -------------------------------------------------------------------------------- /engine/common/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/launcher.c -------------------------------------------------------------------------------- /engine/common/lib_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/lib_common.c -------------------------------------------------------------------------------- /engine/common/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/library.h -------------------------------------------------------------------------------- /engine/common/masterlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/masterlist.c -------------------------------------------------------------------------------- /engine/common/mod_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/mod_alias.c -------------------------------------------------------------------------------- /engine/common/mod_bmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/mod_bmodel.c -------------------------------------------------------------------------------- /engine/common/mod_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/mod_local.h -------------------------------------------------------------------------------- /engine/common/mod_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/mod_sprite.c -------------------------------------------------------------------------------- /engine/common/mod_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/mod_studio.c -------------------------------------------------------------------------------- /engine/common/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/model.c -------------------------------------------------------------------------------- /engine/common/munge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/munge.c -------------------------------------------------------------------------------- /engine/common/net_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_buffer.c -------------------------------------------------------------------------------- /engine/common/net_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_buffer.h -------------------------------------------------------------------------------- /engine/common/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_chan.c -------------------------------------------------------------------------------- /engine/common/net_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_encode.c -------------------------------------------------------------------------------- /engine/common/net_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_encode.h -------------------------------------------------------------------------------- /engine/common/net_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_http.c -------------------------------------------------------------------------------- /engine/common/net_ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_ws.c -------------------------------------------------------------------------------- /engine/common/net_ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_ws.h -------------------------------------------------------------------------------- /engine/common/net_ws_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/net_ws_private.h -------------------------------------------------------------------------------- /engine/common/netchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/netchan.h -------------------------------------------------------------------------------- /engine/common/pm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/pm_local.h -------------------------------------------------------------------------------- /engine/common/pm_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/pm_surface.c -------------------------------------------------------------------------------- /engine/common/pm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/pm_trace.c -------------------------------------------------------------------------------- /engine/common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/protocol.h -------------------------------------------------------------------------------- /engine/common/soundlib/snd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/soundlib/snd_utils.c -------------------------------------------------------------------------------- /engine/common/soundlib/soundlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/soundlib/soundlib.h -------------------------------------------------------------------------------- /engine/common/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/sounds.c -------------------------------------------------------------------------------- /engine/common/sys_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/sys_con.c -------------------------------------------------------------------------------- /engine/common/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/system.c -------------------------------------------------------------------------------- /engine/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/system.h -------------------------------------------------------------------------------- /engine/common/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/tests.h -------------------------------------------------------------------------------- /engine/common/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/whereami.c -------------------------------------------------------------------------------- /engine/common/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/whereami.h -------------------------------------------------------------------------------- /engine/common/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/world.c -------------------------------------------------------------------------------- /engine/common/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/world.h -------------------------------------------------------------------------------- /engine/common/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/common/zone.c -------------------------------------------------------------------------------- /engine/cursor_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/cursor_type.h -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/customentity.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/key_modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/key_modifiers.h -------------------------------------------------------------------------------- /engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/keydefs.h -------------------------------------------------------------------------------- /engine/menu_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/menu_int.h -------------------------------------------------------------------------------- /engine/mobility_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/mobility_int.h -------------------------------------------------------------------------------- /engine/physint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/physint.h -------------------------------------------------------------------------------- /engine/platform/android/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/android.c -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/dlsym-weak.c -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/dlsym-weak.h -------------------------------------------------------------------------------- /engine/platform/android/lib_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/lib_android.c -------------------------------------------------------------------------------- /engine/platform/android/lib_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/lib_android.h -------------------------------------------------------------------------------- /engine/platform/android/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/android/linker.h -------------------------------------------------------------------------------- /engine/platform/apple/lib_ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/apple/lib_ios.c -------------------------------------------------------------------------------- /engine/platform/apple/lib_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/apple/lib_ios.h -------------------------------------------------------------------------------- /engine/platform/dos/in_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/dos/in_dos.c -------------------------------------------------------------------------------- /engine/platform/dos/ld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/dos/ld.sh -------------------------------------------------------------------------------- /engine/platform/dos/objcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/dos/objcopy.sh -------------------------------------------------------------------------------- /engine/platform/dos/sys_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/dos/sys_dos.c -------------------------------------------------------------------------------- /engine/platform/dos/vid_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/dos/vid_dos.c -------------------------------------------------------------------------------- /engine/platform/irix/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/irix/dladdr.c -------------------------------------------------------------------------------- /engine/platform/irix/dladdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/irix/dladdr.h -------------------------------------------------------------------------------- /engine/platform/irix/xash-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/irix/xash-exec -------------------------------------------------------------------------------- /engine/platform/linux/in_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/linux/in_evdev.c -------------------------------------------------------------------------------- /engine/platform/linux/s_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/linux/s_alsa.c -------------------------------------------------------------------------------- /engine/platform/linux/sys_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/linux/sys_linux.c -------------------------------------------------------------------------------- /engine/platform/linux/vid_fbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/linux/vid_fbdev.c -------------------------------------------------------------------------------- /engine/platform/misc/kmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/misc/kmalloc.c -------------------------------------------------------------------------------- /engine/platform/misc/lib_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/misc/lib_static.c -------------------------------------------------------------------------------- /engine/platform/misc/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/misc/sbrk.c -------------------------------------------------------------------------------- /engine/platform/misc/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/misc/swap.h -------------------------------------------------------------------------------- /engine/platform/nswitch/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/nswitch/icon.jpg -------------------------------------------------------------------------------- /engine/platform/nswitch/sys_nswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/nswitch/sys_nswitch.c -------------------------------------------------------------------------------- /engine/platform/nswitch/xash3d-fwgs.nacp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/nswitch/xash3d-fwgs.nacp -------------------------------------------------------------------------------- /engine/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/platform.h -------------------------------------------------------------------------------- /engine/platform/posix/con_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/con_posix.c -------------------------------------------------------------------------------- /engine/platform/posix/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/crash.h -------------------------------------------------------------------------------- /engine/platform/posix/crash_glibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/crash_glibc.c -------------------------------------------------------------------------------- /engine/platform/posix/crash_libbacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/crash_libbacktrace.c -------------------------------------------------------------------------------- /engine/platform/posix/crash_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/crash_posix.c -------------------------------------------------------------------------------- /engine/platform/posix/lib_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/lib_posix.c -------------------------------------------------------------------------------- /engine/platform/posix/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/net.h -------------------------------------------------------------------------------- /engine/platform/posix/sys_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/posix/sys_posix.c -------------------------------------------------------------------------------- /engine/platform/psvita/in_psvita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/psvita/in_psvita.c -------------------------------------------------------------------------------- /engine/platform/psvita/net_psvita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/psvita/net_psvita.h -------------------------------------------------------------------------------- /engine/platform/psvita/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/psvita/sce_sys/icon0.png -------------------------------------------------------------------------------- /engine/platform/psvita/sys_psvita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/psvita/sys_psvita.c -------------------------------------------------------------------------------- /engine/platform/sdl1/host_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/host_sdl1.c -------------------------------------------------------------------------------- /engine/platform/sdl1/in_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/in_sdl1.c -------------------------------------------------------------------------------- /engine/platform/sdl1/platform_sdl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/platform_sdl1.h -------------------------------------------------------------------------------- /engine/platform/sdl1/s_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/s_sdl1.c -------------------------------------------------------------------------------- /engine/platform/sdl1/sys_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/sys_sdl1.c -------------------------------------------------------------------------------- /engine/platform/sdl1/vid_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl1/vid_sdl1.c -------------------------------------------------------------------------------- /engine/platform/sdl2/host_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/host_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl2/in_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/in_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl2/joy_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/joy_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl2/platform_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/platform_sdl2.h -------------------------------------------------------------------------------- /engine/platform/sdl2/s_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/s_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl2/sys_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/sys_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl2/vid_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl2/vid_sdl2.c -------------------------------------------------------------------------------- /engine/platform/sdl3/in_sdl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl3/in_sdl3.c -------------------------------------------------------------------------------- /engine/platform/sdl3/platform_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl3/platform_sdl3.h -------------------------------------------------------------------------------- /engine/platform/sdl3/sys_sdl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/sdl3/sys_sdl3.c -------------------------------------------------------------------------------- /engine/platform/stub/net_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/stub/net_stub.h -------------------------------------------------------------------------------- /engine/platform/stub/s_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/stub/s_stub.c -------------------------------------------------------------------------------- /engine/platform/win32/con_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/con_win.c -------------------------------------------------------------------------------- /engine/platform/win32/crash_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/crash_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_custom_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/lib_custom_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/lib_win.c -------------------------------------------------------------------------------- /engine/platform/win32/lib_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/lib_win.h -------------------------------------------------------------------------------- /engine/platform/win32/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/net.h -------------------------------------------------------------------------------- /engine/platform/win32/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/platform/win32/sys_win.c -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /engine/ref_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/ref_api.h -------------------------------------------------------------------------------- /engine/ref_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/ref_vulkan.h -------------------------------------------------------------------------------- /engine/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/server.h -------------------------------------------------------------------------------- /engine/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_client.c -------------------------------------------------------------------------------- /engine/server/sv_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_cmds.c -------------------------------------------------------------------------------- /engine/server/sv_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_custom.c -------------------------------------------------------------------------------- /engine/server/sv_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_filter.c -------------------------------------------------------------------------------- /engine/server/sv_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_frame.c -------------------------------------------------------------------------------- /engine/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_game.c -------------------------------------------------------------------------------- /engine/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_init.c -------------------------------------------------------------------------------- /engine/server/sv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_log.c -------------------------------------------------------------------------------- /engine/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_main.c -------------------------------------------------------------------------------- /engine/server/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_move.c -------------------------------------------------------------------------------- /engine/server/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_phys.c -------------------------------------------------------------------------------- /engine/server/sv_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_pmove.c -------------------------------------------------------------------------------- /engine/server/sv_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_query.c -------------------------------------------------------------------------------- /engine/server/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_save.c -------------------------------------------------------------------------------- /engine/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/server/sv_world.c -------------------------------------------------------------------------------- /engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/shake.h -------------------------------------------------------------------------------- /engine/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/sprite.h -------------------------------------------------------------------------------- /engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/studio.h -------------------------------------------------------------------------------- /engine/vgui_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/vgui_api.h -------------------------------------------------------------------------------- /engine/warpsin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/warpsin.h -------------------------------------------------------------------------------- /engine/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/engine/wscript -------------------------------------------------------------------------------- /filesystem/VFileSystem009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/VFileSystem009.cpp -------------------------------------------------------------------------------- /filesystem/VFileSystem009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/VFileSystem009.h -------------------------------------------------------------------------------- /filesystem/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/android.c -------------------------------------------------------------------------------- /filesystem/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/dir.c -------------------------------------------------------------------------------- /filesystem/exports.txt: -------------------------------------------------------------------------------- 1 | GetFSAPI 2 | -------------------------------------------------------------------------------- /filesystem/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/filesystem.c -------------------------------------------------------------------------------- /filesystem/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/filesystem.h -------------------------------------------------------------------------------- /filesystem/filesystem_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/filesystem_internal.h -------------------------------------------------------------------------------- /filesystem/fscallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/fscallback.h -------------------------------------------------------------------------------- /filesystem/pak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/pak.c -------------------------------------------------------------------------------- /filesystem/tests/caseinsensitive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/tests/caseinsensitive.c -------------------------------------------------------------------------------- /filesystem/tests/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/tests/interface.cpp -------------------------------------------------------------------------------- /filesystem/tests/no-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/tests/no-init.c -------------------------------------------------------------------------------- /filesystem/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/wad.c -------------------------------------------------------------------------------- /filesystem/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/wscript -------------------------------------------------------------------------------- /filesystem/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/filesystem/zip.c -------------------------------------------------------------------------------- /game_launch/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/game_launch/game.cpp -------------------------------------------------------------------------------- /game_launch/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/game_launch/game.rc -------------------------------------------------------------------------------- /game_launch/icon-xash-material.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/game_launch/icon-xash-material.ico -------------------------------------------------------------------------------- /game_launch/icon-xash-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/game_launch/icon-xash-material.png -------------------------------------------------------------------------------- /game_launch/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/game_launch/wscript -------------------------------------------------------------------------------- /pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /public/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/build.c -------------------------------------------------------------------------------- /public/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/build.h -------------------------------------------------------------------------------- /public/build_vcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/build_vcs.c -------------------------------------------------------------------------------- /public/buildenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/buildenums.h -------------------------------------------------------------------------------- /public/crclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/crclib.c -------------------------------------------------------------------------------- /public/crclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/crclib.h -------------------------------------------------------------------------------- /public/crtlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/crtlib.c -------------------------------------------------------------------------------- /public/crtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/crtlib.h -------------------------------------------------------------------------------- /public/dllhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/dllhelpers.c -------------------------------------------------------------------------------- /public/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/getopt.c -------------------------------------------------------------------------------- /public/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/getopt.h -------------------------------------------------------------------------------- /public/ktx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/ktx2.h -------------------------------------------------------------------------------- /public/matrixlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/matrixlib.c -------------------------------------------------------------------------------- /public/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/miniz.c -------------------------------------------------------------------------------- /public/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/miniz.h -------------------------------------------------------------------------------- /public/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/pstdint.h -------------------------------------------------------------------------------- /public/tests/test_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_atoi.c -------------------------------------------------------------------------------- /public/tests/test_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_build.c -------------------------------------------------------------------------------- /public/tests/test_efp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_efp.c -------------------------------------------------------------------------------- /public/tests/test_filebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_filebase.c -------------------------------------------------------------------------------- /public/tests/test_fileext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_fileext.c -------------------------------------------------------------------------------- /public/tests/test_parsefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_parsefile.c -------------------------------------------------------------------------------- /public/tests/test_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_strings.c -------------------------------------------------------------------------------- /public/tests/test_validate_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/tests/test_validate_target.c -------------------------------------------------------------------------------- /public/utflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/utflib.c -------------------------------------------------------------------------------- /public/utflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/utflib.h -------------------------------------------------------------------------------- /public/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/wscript -------------------------------------------------------------------------------- /public/xash3d_mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/xash3d_mathlib.c -------------------------------------------------------------------------------- /public/xash3d_mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/public/xash3d_mathlib.h -------------------------------------------------------------------------------- /ref/gl/exports.txt: -------------------------------------------------------------------------------- 1 | GetRefAPI 2 | -------------------------------------------------------------------------------- /ref/gl/gl2_shim/fragment.glsl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl2_shim/fragment.glsl.inc -------------------------------------------------------------------------------- /ref/gl/gl2_shim/gl2_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl2_shim/gl2_shim.c -------------------------------------------------------------------------------- /ref/gl/gl2_shim/gl2_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl2_shim/gl2_shim.h -------------------------------------------------------------------------------- /ref/gl/gl2_shim/vertex.glsl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl2_shim/vertex.glsl.inc -------------------------------------------------------------------------------- /ref/gl/gl_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_alias.c -------------------------------------------------------------------------------- /ref/gl/gl_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_backend.c -------------------------------------------------------------------------------- /ref/gl/gl_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_beams.c -------------------------------------------------------------------------------- /ref/gl/gl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_context.c -------------------------------------------------------------------------------- /ref/gl/gl_cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_cull.c -------------------------------------------------------------------------------- /ref/gl/gl_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_decals.c -------------------------------------------------------------------------------- /ref/gl/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_draw.c -------------------------------------------------------------------------------- /ref/gl/gl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_export.h -------------------------------------------------------------------------------- /ref/gl/gl_frustum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_frustum.c -------------------------------------------------------------------------------- /ref/gl/gl_frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_frustum.h -------------------------------------------------------------------------------- /ref/gl/gl_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_image.c -------------------------------------------------------------------------------- /ref/gl/gl_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_local.h -------------------------------------------------------------------------------- /ref/gl/gl_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_opengl.c -------------------------------------------------------------------------------- /ref/gl/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rlight.c -------------------------------------------------------------------------------- /ref/gl/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rmain.c -------------------------------------------------------------------------------- /ref/gl/gl_rmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rmath.c -------------------------------------------------------------------------------- /ref/gl/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rmisc.c -------------------------------------------------------------------------------- /ref/gl/gl_rpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rpart.c -------------------------------------------------------------------------------- /ref/gl/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_rsurf.c -------------------------------------------------------------------------------- /ref/gl/gl_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_sprite.c -------------------------------------------------------------------------------- /ref/gl/gl_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_studio.c -------------------------------------------------------------------------------- /ref/gl/gl_triapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_triapi.c -------------------------------------------------------------------------------- /ref/gl/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/gl_warp.c -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shaders/fragment.cg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/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/w23/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shaders/vertex.cg.inc -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shim.c -------------------------------------------------------------------------------- /ref/gl/vgl_shim/vgl_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/vgl_shim/vgl_shim.h -------------------------------------------------------------------------------- /ref/gl/vgl_shim/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/vgl_shim/wscript -------------------------------------------------------------------------------- /ref/gl/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/gl/wscript -------------------------------------------------------------------------------- /ref/null/r_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/null/r_context.c -------------------------------------------------------------------------------- /ref/null/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/null/wscript -------------------------------------------------------------------------------- /ref/soft/adivtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/adivtab.h -------------------------------------------------------------------------------- /ref/soft/r_aclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_aclip.c -------------------------------------------------------------------------------- /ref/soft/r_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_beams.c -------------------------------------------------------------------------------- /ref/soft/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_bsp.c -------------------------------------------------------------------------------- /ref/soft/r_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_context.c -------------------------------------------------------------------------------- /ref/soft/r_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_decals.c -------------------------------------------------------------------------------- /ref/soft/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_draw.c -------------------------------------------------------------------------------- /ref/soft/r_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_edge.c -------------------------------------------------------------------------------- /ref/soft/r_glblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_glblit.c -------------------------------------------------------------------------------- /ref/soft/r_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_image.c -------------------------------------------------------------------------------- /ref/soft/r_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_light.c -------------------------------------------------------------------------------- /ref/soft/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_local.h -------------------------------------------------------------------------------- /ref/soft/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_main.c -------------------------------------------------------------------------------- /ref/soft/r_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_math.c -------------------------------------------------------------------------------- /ref/soft/r_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_misc.c -------------------------------------------------------------------------------- /ref/soft/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_part.c -------------------------------------------------------------------------------- /ref/soft/r_polyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_polyse.c -------------------------------------------------------------------------------- /ref/soft/r_rast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_rast.c -------------------------------------------------------------------------------- /ref/soft/r_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_scan.c -------------------------------------------------------------------------------- /ref/soft/r_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_sprite.c -------------------------------------------------------------------------------- /ref/soft/r_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_studio.c -------------------------------------------------------------------------------- /ref/soft/r_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_surf.c -------------------------------------------------------------------------------- /ref/soft/r_trialias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_trialias.c -------------------------------------------------------------------------------- /ref/soft/r_triapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/r_triapi.c -------------------------------------------------------------------------------- /ref/soft/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/soft/wscript -------------------------------------------------------------------------------- /ref/vk/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/NOTES.md -------------------------------------------------------------------------------- /ref/vk/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/TODO.md -------------------------------------------------------------------------------- /ref/vk/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/camera.c -------------------------------------------------------------------------------- /ref/vk/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/camera.h -------------------------------------------------------------------------------- /ref/vk/common_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/common_geometry.c -------------------------------------------------------------------------------- /ref/vk/data/bshift/luchiki/maps/ba_tram2.patch: -------------------------------------------------------------------------------- 1 | { 2 | "_xvk_remove_all_sky_surfaces" "1" 3 | } 4 | -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_canal1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_canal1.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_canal1b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_canal1b.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_elevator.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_elevator.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard1.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard2.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard3.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard3.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard4.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard4.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard5.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard5.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_hazard6.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_hazard6.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_power1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_power1.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_power2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_power2.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_security2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_security2.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_teleport1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_teleport1.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_teleport2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_teleport2.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard1.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard2.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard3.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard3.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard3a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard3a.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard3b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard3b.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard4.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard4.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard4a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard4a.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard5.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard5.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/ba_yard5a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/ba_yard5a.rad -------------------------------------------------------------------------------- /ref/vk/data/bshift/maps/lights.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/bshift/maps/lights.rad -------------------------------------------------------------------------------- /ref/vk/data/cstrike/maps/cs_747.rad: -------------------------------------------------------------------------------- 1 | +0pl_light1 128 150 192 4000 -------------------------------------------------------------------------------- /ref/vk/data/cstrike/maps/cs_assault.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/cstrike/maps/cs_assault.rad -------------------------------------------------------------------------------- /ref/vk/data/cstrike/maps/cs_italy.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/cstrike/maps/cs_italy.rad -------------------------------------------------------------------------------- /ref/vk/data/cstrike/maps/fy_pool_day.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/cstrike/maps/fy_pool_day.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c0a0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c0a0.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c0a0a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c0a0a.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c1a0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c1a0.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c1a1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c1a1.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c1a2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c1a2.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c1a3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c1a3.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c2a1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c2a1.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c2a3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c2a3.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c2a5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c2a5.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c3a1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c3a1.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c3a1a.patch: -------------------------------------------------------------------------------- 1 | { // remove hack spotlight 2 | "_xvk_ent_id" "65" 3 | } 4 | -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c3a2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c3a2.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c3a2d.patch: -------------------------------------------------------------------------------- 1 | // TODO: better horror lighing 2 | -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/c5a1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/c5a1.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/luchiki/maps/t0a0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/luchiki/maps/t0a0.patch -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/README.txt -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/boot_camp.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/boot_camp.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c0a0e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c0a0e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a0e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a0e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a1f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a1f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a2a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a2a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a2b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a2b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a2c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a2c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a2d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a2d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a3.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a3.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a3a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a3a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a3b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a3b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a3c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a3c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a3d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a3d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4g.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4g.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4i.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4i.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4j.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4j.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c1a4k.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c1a4k.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a1a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a1a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a1b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a1b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2b1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2b1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2b2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2b2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2g.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2g.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a2h.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a2h.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a3e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a3e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a4g.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a4g.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c2a5x.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c2a5x.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a1a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a1a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a1b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a1b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c3a2f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c3a2f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a1b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a1b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a1c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a1c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a1d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a1d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a1e.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a1e.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a1f.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a1f.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a2a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a2a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a2b.rad: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c4a3.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c4a3.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/c5a1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/c5a1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/cornell.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/cornell.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/crossfire.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/crossfire.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/datacore.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/datacore.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/doublecross.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/doublecross.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/frenzy.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/frenzy.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/gasworks.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/gasworks.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/hldemo1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/hldemo1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/hldemo2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/hldemo2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/lambda_bunker.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/lambda_bunker.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/lights.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/lights.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/rapidcore.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/rapidcore.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/rustmill.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/rustmill.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/snark_pit.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/snark_pit.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/stalkyard.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/stalkyard.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/subtransit.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/subtransit.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0a.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0a.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0b.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0b.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0b1.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0b1.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0b2.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0b2.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0c.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0c.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/t0a0d.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/t0a0d.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/team9.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/team9.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/thehill.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/thehill.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/undertow.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/undertow.rad -------------------------------------------------------------------------------- /ref/vk/data/valve/maps/xen_dm.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/data/valve/maps/xen_dm.rad -------------------------------------------------------------------------------- /ref/vk/dumbspter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/dumbspter.c -------------------------------------------------------------------------------- /ref/vk/infotool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/infotool.c -------------------------------------------------------------------------------- /ref/vk/r_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_block.c -------------------------------------------------------------------------------- /ref/vk/r_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_block.h -------------------------------------------------------------------------------- /ref/vk/r_speeds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_speeds.c -------------------------------------------------------------------------------- /ref/vk/r_speeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_speeds.h -------------------------------------------------------------------------------- /ref/vk/r_textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_textures.c -------------------------------------------------------------------------------- /ref/vk/r_textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/r_textures.h -------------------------------------------------------------------------------- /ref/vk/ray_materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/ray_materials.md -------------------------------------------------------------------------------- /ref/vk/rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/rlight.c -------------------------------------------------------------------------------- /ref/vk/rt_kusochki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/rt_kusochki.c -------------------------------------------------------------------------------- /ref/vk/rt_kusochki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/rt_kusochki.h -------------------------------------------------------------------------------- /ref/vk/sebastian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/sebastian.py -------------------------------------------------------------------------------- /ref/vk/shaders/2d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/2d.frag -------------------------------------------------------------------------------- /ref/vk/shaders/2d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/2d.vert -------------------------------------------------------------------------------- /ref/vk/shaders/additive.rahit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/additive.rahit -------------------------------------------------------------------------------- /ref/vk/shaders/alphamask.rahit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/alphamask.rahit -------------------------------------------------------------------------------- /ref/vk/shaders/atrous.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/atrous.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/bluenoise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/bluenoise.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/bounce.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/bounce.comp -------------------------------------------------------------------------------- /ref/vk/shaders/brdf.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/brdf.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/brdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/brdf.h -------------------------------------------------------------------------------- /ref/vk/shaders/brush.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/brush.frag -------------------------------------------------------------------------------- /ref/vk/shaders/brush.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/brush.vert -------------------------------------------------------------------------------- /ref/vk/shaders/color_spaces.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/color_spaces.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/debug.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/debug.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/denoiser.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/denoiser.comp -------------------------------------------------------------------------------- /ref/vk/shaders/denoiser_config.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/denoiser_config.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/denoiser_utils.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/denoiser_utils.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/diffuse_gi_sh_atrous.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/diffuse_gi_sh_atrous.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/empty.rmiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/empty.rmiss -------------------------------------------------------------------------------- /ref/vk/shaders/light.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/light.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/light_common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/light_common.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/light_polygon.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/light_polygon.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/noise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/noise.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_common.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_common_alphatest.rahit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_common_alphatest.rahit -------------------------------------------------------------------------------- /ref/vk/shaders/ray_interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_interop.h -------------------------------------------------------------------------------- /ref/vk/shaders/ray_kusochki.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_kusochki.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_light_direct.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_light_direct.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_light_direct_poly.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_light_direct_poly.comp -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary.comp -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary.rchit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary.rchit -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary.rgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary.rgen -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary.rmiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary.rmiss -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary_common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary_common.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_primary_hit.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_primary_hit.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/ray_shadow.rchit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_shadow.rchit -------------------------------------------------------------------------------- /ref/vk/shaders/ray_shadow.rmiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_shadow.rmiss -------------------------------------------------------------------------------- /ref/vk/shaders/ray_shadow_interface.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/ray_shadow_interface.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/rt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/rt.json -------------------------------------------------------------------------------- /ref/vk/shaders/rt_geometry.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/rt_geometry.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/sky.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/sky.frag -------------------------------------------------------------------------------- /ref/vk/shaders/sky.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/sky.vert -------------------------------------------------------------------------------- /ref/vk/shaders/skybox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/skybox.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/spherical_harmonics.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/spherical_harmonics.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/trace_simple_blending.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/trace_simple_blending.glsl -------------------------------------------------------------------------------- /ref/vk/shaders/utils.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/shaders/utils.glsl -------------------------------------------------------------------------------- /ref/vk/spirv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/spirv.py -------------------------------------------------------------------------------- /ref/vk/std/alolcator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/alolcator.c -------------------------------------------------------------------------------- /ref/vk/std/alolcator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/alolcator.h -------------------------------------------------------------------------------- /ref/vk/std/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/arrays.c -------------------------------------------------------------------------------- /ref/vk/std/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/arrays.h -------------------------------------------------------------------------------- /ref/vk/std/bitarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/bitarray.c -------------------------------------------------------------------------------- /ref/vk/std/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/bitarray.h -------------------------------------------------------------------------------- /ref/vk/std/debugbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/debugbreak.h -------------------------------------------------------------------------------- /ref/vk/std/flipping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/flipping.c -------------------------------------------------------------------------------- /ref/vk/std/flipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/flipping.h -------------------------------------------------------------------------------- /ref/vk/std/pcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/pcg.h -------------------------------------------------------------------------------- /ref/vk/std/profiler.c: -------------------------------------------------------------------------------- 1 | #define APROF_IMPLEMENT 2 | #include "profiler.h" 3 | -------------------------------------------------------------------------------- /ref/vk/std/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/profiler.h -------------------------------------------------------------------------------- /ref/vk/std/stringview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/stringview.c -------------------------------------------------------------------------------- /ref/vk/std/stringview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/stringview.h -------------------------------------------------------------------------------- /ref/vk/std/unordered_roadmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/unordered_roadmap.c -------------------------------------------------------------------------------- /ref/vk/std/unordered_roadmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/std/unordered_roadmap.h -------------------------------------------------------------------------------- /ref/vk/tests/unordered_roadmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/tests/unordered_roadmap.c -------------------------------------------------------------------------------- /ref/vk/vk_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_beams.c -------------------------------------------------------------------------------- /ref/vk/vk_beams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_beams.h -------------------------------------------------------------------------------- /ref/vk/vk_brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_brush.c -------------------------------------------------------------------------------- /ref/vk/vk_brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_brush.h -------------------------------------------------------------------------------- /ref/vk/vk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_common.h -------------------------------------------------------------------------------- /ref/vk/vk_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_const.h -------------------------------------------------------------------------------- /ref/vk/vk_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_core.c -------------------------------------------------------------------------------- /ref/vk/vk_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_core.h -------------------------------------------------------------------------------- /ref/vk/vk_cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_cvar.c -------------------------------------------------------------------------------- /ref/vk/vk_cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_cvar.h -------------------------------------------------------------------------------- /ref/vk/vk_entity_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_entity_data.c -------------------------------------------------------------------------------- /ref/vk/vk_entity_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_entity_data.h -------------------------------------------------------------------------------- /ref/vk/vk_framectl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_framectl.c -------------------------------------------------------------------------------- /ref/vk/vk_framectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_framectl.h -------------------------------------------------------------------------------- /ref/vk/vk_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_geometry.c -------------------------------------------------------------------------------- /ref/vk/vk_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_geometry.h -------------------------------------------------------------------------------- /ref/vk/vk_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_light.c -------------------------------------------------------------------------------- /ref/vk/vk_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_light.h -------------------------------------------------------------------------------- /ref/vk/vk_lightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_lightmap.c -------------------------------------------------------------------------------- /ref/vk/vk_lightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_lightmap.h -------------------------------------------------------------------------------- /ref/vk/vk_logs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_logs.c -------------------------------------------------------------------------------- /ref/vk/vk_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_logs.h -------------------------------------------------------------------------------- /ref/vk/vk_mapents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_mapents.c -------------------------------------------------------------------------------- /ref/vk/vk_mapents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_mapents.h -------------------------------------------------------------------------------- /ref/vk/vk_materials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_materials.c -------------------------------------------------------------------------------- /ref/vk/vk_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_materials.h -------------------------------------------------------------------------------- /ref/vk/vk_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_math.c -------------------------------------------------------------------------------- /ref/vk/vk_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_math.h -------------------------------------------------------------------------------- /ref/vk/vk_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_overlay.c -------------------------------------------------------------------------------- /ref/vk/vk_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_overlay.h -------------------------------------------------------------------------------- /ref/vk/vk_ray_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_ray_accel.h -------------------------------------------------------------------------------- /ref/vk/vk_ray_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_ray_internal.h -------------------------------------------------------------------------------- /ref/vk/vk_ray_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_ray_model.c -------------------------------------------------------------------------------- /ref/vk/vk_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_render.c -------------------------------------------------------------------------------- /ref/vk/vk_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_render.h -------------------------------------------------------------------------------- /ref/vk/vk_renderstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_renderstate.c -------------------------------------------------------------------------------- /ref/vk/vk_renderstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_renderstate.h -------------------------------------------------------------------------------- /ref/vk/vk_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_rmain.c -------------------------------------------------------------------------------- /ref/vk/vk_rpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_rpart.c -------------------------------------------------------------------------------- /ref/vk/vk_rpart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_rpart.h -------------------------------------------------------------------------------- /ref/vk/vk_rtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_rtx.c -------------------------------------------------------------------------------- /ref/vk/vk_rtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_rtx.h -------------------------------------------------------------------------------- /ref/vk/vk_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_scene.c -------------------------------------------------------------------------------- /ref/vk/vk_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_scene.h -------------------------------------------------------------------------------- /ref/vk/vk_speeds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_speeds.c -------------------------------------------------------------------------------- /ref/vk/vk_speeds.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void VK_SpeedsInit(void); 4 | -------------------------------------------------------------------------------- /ref/vk/vk_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_sprite.c -------------------------------------------------------------------------------- /ref/vk/vk_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_sprite.h -------------------------------------------------------------------------------- /ref/vk/vk_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_studio.c -------------------------------------------------------------------------------- /ref/vk/vk_studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_studio.h -------------------------------------------------------------------------------- /ref/vk/vk_studio_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_studio_model.c -------------------------------------------------------------------------------- /ref/vk/vk_studio_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_studio_model.h -------------------------------------------------------------------------------- /ref/vk/vk_textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_textures.c -------------------------------------------------------------------------------- /ref/vk/vk_textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_textures.h -------------------------------------------------------------------------------- /ref/vk/vk_triapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_triapi.c -------------------------------------------------------------------------------- /ref/vk/vk_triapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vk_triapi.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VBarrier.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VBarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VBarrier.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VBuffer.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VBuffer.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VCombuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VCombuf.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VCombuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VCombuf.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VCommandPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VCommandPool.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VCommandPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VCommandPool.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDescriptor.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDescriptor.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDevice.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDevice.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VDevmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDevmem.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VDevmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VDevmem.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VImage.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VImage.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VImageExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VImageExtra.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VMeatpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VMeatpipe.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VMeatpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VMeatpipe.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VMisc.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VNvAftermath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VNvAftermath.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VNvAftermath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VNvAftermath.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VPass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPass.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPass.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VPerfQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPerfQuery.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VPerfQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPerfQuery.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VPipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPipeline.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VPipeline.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VRayAccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VRayAccel.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VResource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VResource.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VResource.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VStaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VStaging.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VStaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VStaging.h -------------------------------------------------------------------------------- /ref/vk/vulkan/VSwapchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VSwapchain.c -------------------------------------------------------------------------------- /ref/vk/vulkan/VSwapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/vulkan/VSwapchain.h -------------------------------------------------------------------------------- /ref/vk/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/ref/vk/wscript -------------------------------------------------------------------------------- /scripts/build-ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/build-ninja.py -------------------------------------------------------------------------------- /scripts/cirrus/build_freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/cirrus/build_freebsd.sh -------------------------------------------------------------------------------- /scripts/configure-ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/configure-ninja.py -------------------------------------------------------------------------------- /scripts/flatpak/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/flatpak/run.sh -------------------------------------------------------------------------------- /scripts/fwgs.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/fwgs.pfx -------------------------------------------------------------------------------- /scripts/gha/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_android.sh -------------------------------------------------------------------------------- /scripts/gha/build_apple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_apple.sh -------------------------------------------------------------------------------- /scripts/gha/build_linux-e2k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_linux-e2k.sh -------------------------------------------------------------------------------- /scripts/gha/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_linux.sh -------------------------------------------------------------------------------- /scripts/gha/build_motomagx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_motomagx.sh -------------------------------------------------------------------------------- /scripts/gha/build_nswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_nswitch.sh -------------------------------------------------------------------------------- /scripts/gha/build_nswitch_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_nswitch_docker.sh -------------------------------------------------------------------------------- /scripts/gha/build_psvita.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_psvita.sh -------------------------------------------------------------------------------- /scripts/gha/build_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/build_win32.sh -------------------------------------------------------------------------------- /scripts/gha/deps_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_android.sh -------------------------------------------------------------------------------- /scripts/gha/deps_apple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_apple.sh -------------------------------------------------------------------------------- /scripts/gha/deps_linux-e2k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_linux-e2k.sh -------------------------------------------------------------------------------- /scripts/gha/deps_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_linux.sh -------------------------------------------------------------------------------- /scripts/gha/deps_motomagx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_motomagx.sh -------------------------------------------------------------------------------- /scripts/gha/deps_nswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_nswitch.sh -------------------------------------------------------------------------------- /scripts/gha/deps_psvita.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_psvita.sh -------------------------------------------------------------------------------- /scripts/gha/deps_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/deps_win32.sh -------------------------------------------------------------------------------- /scripts/gha/linux/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/linux/AppRun -------------------------------------------------------------------------------- /scripts/gha/linux/xash3d-fwgs.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/gha/linux/xash3d-fwgs.desktop -------------------------------------------------------------------------------- /scripts/lib-e2k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/lib-e2k.sh -------------------------------------------------------------------------------- /scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/lib.sh -------------------------------------------------------------------------------- /scripts/makepak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/makepak.py -------------------------------------------------------------------------------- /scripts/sailfish/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/sailfish/build.sh -------------------------------------------------------------------------------- /scripts/sailfish/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/sailfish/deploy.sh -------------------------------------------------------------------------------- /scripts/sailfish/harbour-xash3d-fwgs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/sailfish/harbour-xash3d-fwgs.spec -------------------------------------------------------------------------------- /scripts/sailfish/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/sailfish/run.sh -------------------------------------------------------------------------------- /scripts/waifulib/c_emscripten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/c_emscripten.py -------------------------------------------------------------------------------- /scripts/waifulib/glslc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/glslc.py -------------------------------------------------------------------------------- /scripts/waifulib/ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/ninja.py -------------------------------------------------------------------------------- /scripts/waifulib/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/ninja_syntax.py -------------------------------------------------------------------------------- /scripts/waifulib/nswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/nswitch.py -------------------------------------------------------------------------------- /scripts/waifulib/owcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/owcc.py -------------------------------------------------------------------------------- /scripts/waifulib/psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/psp.py -------------------------------------------------------------------------------- /scripts/waifulib/psvita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/psvita.py -------------------------------------------------------------------------------- /scripts/waifulib/sdl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/sdl2.py -------------------------------------------------------------------------------- /scripts/waifulib/sebastian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/sebastian.py -------------------------------------------------------------------------------- /scripts/waifulib/vgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/vgui.py -------------------------------------------------------------------------------- /scripts/waifulib/xcompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/xcompile.py -------------------------------------------------------------------------------- /scripts/waifulib/xshlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/xshlib.py -------------------------------------------------------------------------------- /scripts/waifulib/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/waifulib/zip.py -------------------------------------------------------------------------------- /scripts/xashds@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/scripts/xashds@.service -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/uncrustify.cfg -------------------------------------------------------------------------------- /utils/mdldec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/Makefile -------------------------------------------------------------------------------- /utils/mdldec/mdldec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/mdldec.c -------------------------------------------------------------------------------- /utils/mdldec/mdldec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/mdldec.h -------------------------------------------------------------------------------- /utils/mdldec/qc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/qc.c -------------------------------------------------------------------------------- /utils/mdldec/qc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/qc.h -------------------------------------------------------------------------------- /utils/mdldec/res/activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/res/activities.txt -------------------------------------------------------------------------------- /utils/mdldec/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/settings.h -------------------------------------------------------------------------------- /utils/mdldec/smd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/smd.c -------------------------------------------------------------------------------- /utils/mdldec/smd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/smd.h -------------------------------------------------------------------------------- /utils/mdldec/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/texture.c -------------------------------------------------------------------------------- /utils/mdldec/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/texture.h -------------------------------------------------------------------------------- /utils/mdldec/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/utils.c -------------------------------------------------------------------------------- /utils/mdldec/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/utils.h -------------------------------------------------------------------------------- /utils/mdldec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/version.h -------------------------------------------------------------------------------- /utils/mdldec/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/mdldec/wscript -------------------------------------------------------------------------------- /utils/run-fuzzer/run-fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/run-fuzzer/run-fuzzer.c -------------------------------------------------------------------------------- /utils/run-fuzzer/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/run-fuzzer/wscript -------------------------------------------------------------------------------- /utils/xar/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/xar/wscript -------------------------------------------------------------------------------- /utils/xar/xar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/utils/xar/xar.c -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/waf -------------------------------------------------------------------------------- /waf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/waf.bat -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w23/xash3d-fwgs/HEAD/wscript --------------------------------------------------------------------------------