├── .editorconfig ├── .github └── README.md ├── .gitignore ├── CMakeLists.txt ├── COMPILING.txt ├── CiScripts ├── build_cmake.py ├── build_msvc_extra.cmd ├── build_msvc_main.cmd ├── conan_build.py ├── conan_rebuild_artefacts.py ├── conan_rebuild_artefacts_ci.py ├── global.conf └── linux_install.py ├── LICENSE.txt ├── MayaImport.vcxproj ├── MayaImport.vcxproj.filters ├── MayaImport ├── Maya6.0 │ └── maya.h ├── exporter.h ├── maya_main.cpp ├── maya_main.h └── mayaimport.def ├── TheDarkMod.sln ├── ThirdParty ├── 1_export_custom.py ├── 2_build_all.py ├── artefacts │ ├── linux_32 │ │ ├── ALSA-Target-debug.cmake │ │ ├── ALSA-Target-release.cmake │ │ ├── ALSA-debug-x86-data.cmake │ │ ├── ALSA-release-x86-data.cmake │ │ ├── ALSAConfig.cmake │ │ ├── ALSAConfigVersion.cmake │ │ ├── ALSATargets.cmake │ │ ├── CURL-Target-debug.cmake │ │ ├── CURL-Target-release.cmake │ │ ├── CURL-debug-x86-data.cmake │ │ ├── CURL-release-x86-data.cmake │ │ ├── CURLConfig.cmake │ │ ├── CURLConfigVersion.cmake │ │ ├── CURLTargets.cmake │ │ ├── FindALSA.cmake │ │ ├── FindCURL.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindOpenAL.cmake │ │ ├── FindPNG.cmake │ │ ├── FindZLIB.cmake │ │ ├── JPEG-Target-debug.cmake │ │ ├── JPEG-Target-release.cmake │ │ ├── JPEG-debug-x86-data.cmake │ │ ├── JPEG-release-x86-data.cmake │ │ ├── JPEGConfig.cmake │ │ ├── JPEGConfigVersion.cmake │ │ ├── JPEGTargets.cmake │ │ ├── MbedTLS-Target-debug.cmake │ │ ├── MbedTLS-Target-release.cmake │ │ ├── MbedTLS-debug-x86-data.cmake │ │ ├── MbedTLS-release-x86-data.cmake │ │ ├── MbedTLSConfig.cmake │ │ ├── MbedTLSConfigVersion.cmake │ │ ├── MbedTLSTargets.cmake │ │ ├── Ogg-Target-debug.cmake │ │ ├── Ogg-Target-release.cmake │ │ ├── Ogg-debug-x86-data.cmake │ │ ├── Ogg-release-x86-data.cmake │ │ ├── OggConfig.cmake │ │ ├── OggConfigVersion.cmake │ │ ├── OggTargets.cmake │ │ ├── OpenAL-Target-debug.cmake │ │ ├── OpenAL-Target-release.cmake │ │ ├── OpenAL-debug-x86-data.cmake │ │ ├── OpenAL-release-x86-data.cmake │ │ ├── OpenALConfig.cmake │ │ ├── OpenALConfigVersion.cmake │ │ ├── OpenALTargets.cmake │ │ ├── PNG-Target-debug.cmake │ │ ├── PNG-Target-release.cmake │ │ ├── PNG-debug-x86-data.cmake │ │ ├── PNG-release-x86-data.cmake │ │ ├── PNGConfig.cmake │ │ ├── PNGConfigVersion.cmake │ │ ├── PNGTargets.cmake │ │ ├── Vorbis-Target-debug.cmake │ │ ├── Vorbis-Target-release.cmake │ │ ├── Vorbis-debug-x86-data.cmake │ │ ├── Vorbis-release-x86-data.cmake │ │ ├── VorbisConfig.cmake │ │ ├── VorbisConfigVersion.cmake │ │ ├── VorbisTargets.cmake │ │ ├── ZLIB-Target-debug.cmake │ │ ├── ZLIB-Target-release.cmake │ │ ├── ZLIB-debug-x86-data.cmake │ │ ├── ZLIB-release-x86-data.cmake │ │ ├── ZLIBConfig.cmake │ │ ├── ZLIBConfigVersion.cmake │ │ ├── ZLIBTargets.cmake │ │ ├── blake2-Target-debug.cmake │ │ ├── blake2-Target-release.cmake │ │ ├── blake2-config-version.cmake │ │ ├── blake2-config.cmake │ │ ├── blake2-debug-x86-data.cmake │ │ ├── blake2-release-x86-data.cmake │ │ ├── blake2Targets.cmake │ │ ├── cmakedeps_macros.cmake │ │ ├── conanbuild.sh │ │ ├── conanbuildenv-debug-x86.sh │ │ ├── conanbuildenv-release-x86.sh │ │ ├── conandeps_legacy.cmake │ │ ├── conanrun.sh │ │ ├── conanrunenv-debug-x86.sh │ │ ├── conanrunenv-release-x86.sh │ │ ├── deactivate_conanbuild.sh │ │ ├── deactivate_conanrun.sh │ │ ├── doctest-Target-debug.cmake │ │ ├── doctest-Target-release.cmake │ │ ├── doctest-config-version.cmake │ │ ├── doctest-config.cmake │ │ ├── doctest-debug-x86-data.cmake │ │ ├── doctest-release-x86-data.cmake │ │ ├── doctestTargets.cmake │ │ ├── ffmpeg-Target-debug.cmake │ │ ├── ffmpeg-Target-release.cmake │ │ ├── ffmpeg-config-version.cmake │ │ ├── ffmpeg-config.cmake │ │ ├── ffmpeg-debug-x86-data.cmake │ │ ├── ffmpeg-release-x86-data.cmake │ │ ├── ffmpegTargets.cmake │ │ ├── fltk-Target-debug.cmake │ │ ├── fltk-Target-release.cmake │ │ ├── fltk-config-version.cmake │ │ ├── fltk-config.cmake │ │ ├── fltk-debug-x86-data.cmake │ │ ├── fltk-release-x86-data.cmake │ │ ├── fltkTargets.cmake │ │ ├── glfw3-Target-debug.cmake │ │ ├── glfw3-Target-release.cmake │ │ ├── glfw3-config-version.cmake │ │ ├── glfw3-config.cmake │ │ ├── glfw3-debug-x86-data.cmake │ │ ├── glfw3-release-x86-data.cmake │ │ ├── glfw3Targets.cmake │ │ ├── glu-Target-debug.cmake │ │ ├── glu-Target-release.cmake │ │ ├── glu-config-version.cmake │ │ ├── glu-config.cmake │ │ ├── glu-debug-x86-data.cmake │ │ ├── glu-release-x86-data.cmake │ │ ├── gluTargets.cmake │ │ ├── minizip-Target-debug.cmake │ │ ├── minizip-Target-release.cmake │ │ ├── minizip-config-version.cmake │ │ ├── minizip-config.cmake │ │ ├── minizip-debug-x86-data.cmake │ │ ├── minizip-release-x86-data.cmake │ │ ├── minizipTargets.cmake │ │ ├── module-ALSA-Target-debug.cmake │ │ ├── module-ALSA-Target-release.cmake │ │ ├── module-ALSA-debug-x86-data.cmake │ │ ├── module-ALSA-release-x86-data.cmake │ │ ├── module-ALSATargets.cmake │ │ ├── module-CURL-Target-debug.cmake │ │ ├── module-CURL-Target-release.cmake │ │ ├── module-CURL-debug-x86-data.cmake │ │ ├── module-CURL-release-x86-data.cmake │ │ ├── module-CURLTargets.cmake │ │ ├── module-JPEG-Target-debug.cmake │ │ ├── module-JPEG-Target-release.cmake │ │ ├── module-JPEG-debug-x86-data.cmake │ │ ├── module-JPEG-release-x86-data.cmake │ │ ├── module-JPEGTargets.cmake │ │ ├── module-OpenAL-Target-debug.cmake │ │ ├── module-OpenAL-Target-release.cmake │ │ ├── module-OpenAL-debug-x86-data.cmake │ │ ├── module-OpenAL-release-x86-data.cmake │ │ ├── module-OpenALTargets.cmake │ │ ├── module-PNG-Target-debug.cmake │ │ ├── module-PNG-Target-release.cmake │ │ ├── module-PNG-debug-x86-data.cmake │ │ ├── module-PNG-release-x86-data.cmake │ │ ├── module-PNGTargets.cmake │ │ ├── module-ZLIB-Target-debug.cmake │ │ ├── module-ZLIB-Target-release.cmake │ │ ├── module-ZLIB-debug-x86-data.cmake │ │ ├── module-ZLIB-release-x86-data.cmake │ │ ├── module-ZLIBTargets.cmake │ │ ├── opengl_system-Target-debug.cmake │ │ ├── opengl_system-Target-release.cmake │ │ ├── opengl_system-config-version.cmake │ │ ├── opengl_system-config.cmake │ │ ├── opengl_system-debug-x86-data.cmake │ │ ├── opengl_system-release-x86-data.cmake │ │ ├── opengl_systemTargets.cmake │ │ ├── pugixml-Target-debug.cmake │ │ ├── pugixml-Target-release.cmake │ │ ├── pugixml-config-version.cmake │ │ ├── pugixml-config.cmake │ │ ├── pugixml-debug-x86-data.cmake │ │ ├── pugixml-release-x86-data.cmake │ │ ├── pugixmlTargets.cmake │ │ ├── tinyformat-Target-debug.cmake │ │ ├── tinyformat-Target-release.cmake │ │ ├── tinyformat-config-version.cmake │ │ ├── tinyformat-config.cmake │ │ ├── tinyformat-debug-x86-data.cmake │ │ ├── tinyformat-release-x86-data.cmake │ │ ├── tinyformatTargets.cmake │ │ ├── tracy-Target-debug.cmake │ │ ├── tracy-Target-release.cmake │ │ ├── tracy-config-version.cmake │ │ ├── tracy-config.cmake │ │ ├── tracy-debug-x86-data.cmake │ │ ├── tracy-release-x86-data.cmake │ │ ├── tracyTargets.cmake │ │ ├── xorg-Target-debug.cmake │ │ ├── xorg-Target-release.cmake │ │ ├── xorg-config-version.cmake │ │ ├── xorg-config.cmake │ │ ├── xorg-debug-x86-data.cmake │ │ ├── xorg-release-x86-data.cmake │ │ └── xorgTargets.cmake │ ├── linux_64 │ │ ├── ALSA-Target-debug.cmake │ │ ├── ALSA-Target-release.cmake │ │ ├── ALSA-debug-x86_64-data.cmake │ │ ├── ALSA-release-x86_64-data.cmake │ │ ├── ALSAConfig.cmake │ │ ├── ALSAConfigVersion.cmake │ │ ├── ALSATargets.cmake │ │ ├── CURL-Target-debug.cmake │ │ ├── CURL-Target-release.cmake │ │ ├── CURL-debug-x86_64-data.cmake │ │ ├── CURL-release-x86_64-data.cmake │ │ ├── CURLConfig.cmake │ │ ├── CURLConfigVersion.cmake │ │ ├── CURLTargets.cmake │ │ ├── FindALSA.cmake │ │ ├── FindCURL.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindOpenAL.cmake │ │ ├── FindPNG.cmake │ │ ├── FindZLIB.cmake │ │ ├── JPEG-Target-debug.cmake │ │ ├── JPEG-Target-release.cmake │ │ ├── JPEG-debug-x86_64-data.cmake │ │ ├── JPEG-release-x86_64-data.cmake │ │ ├── JPEGConfig.cmake │ │ ├── JPEGConfigVersion.cmake │ │ ├── JPEGTargets.cmake │ │ ├── MbedTLS-Target-debug.cmake │ │ ├── MbedTLS-Target-release.cmake │ │ ├── MbedTLS-debug-x86_64-data.cmake │ │ ├── MbedTLS-release-x86_64-data.cmake │ │ ├── MbedTLSConfig.cmake │ │ ├── MbedTLSConfigVersion.cmake │ │ ├── MbedTLSTargets.cmake │ │ ├── Ogg-Target-debug.cmake │ │ ├── Ogg-Target-release.cmake │ │ ├── Ogg-debug-x86_64-data.cmake │ │ ├── Ogg-release-x86_64-data.cmake │ │ ├── OggConfig.cmake │ │ ├── OggConfigVersion.cmake │ │ ├── OggTargets.cmake │ │ ├── OpenAL-Target-debug.cmake │ │ ├── OpenAL-Target-release.cmake │ │ ├── OpenAL-debug-x86_64-data.cmake │ │ ├── OpenAL-release-x86_64-data.cmake │ │ ├── OpenALConfig.cmake │ │ ├── OpenALConfigVersion.cmake │ │ ├── OpenALTargets.cmake │ │ ├── PNG-Target-debug.cmake │ │ ├── PNG-Target-release.cmake │ │ ├── PNG-debug-x86_64-data.cmake │ │ ├── PNG-release-x86_64-data.cmake │ │ ├── PNGConfig.cmake │ │ ├── PNGConfigVersion.cmake │ │ ├── PNGTargets.cmake │ │ ├── Vorbis-Target-debug.cmake │ │ ├── Vorbis-Target-release.cmake │ │ ├── Vorbis-debug-x86_64-data.cmake │ │ ├── Vorbis-release-x86_64-data.cmake │ │ ├── VorbisConfig.cmake │ │ ├── VorbisConfigVersion.cmake │ │ ├── VorbisTargets.cmake │ │ ├── ZLIB-Target-debug.cmake │ │ ├── ZLIB-Target-release.cmake │ │ ├── ZLIB-debug-x86_64-data.cmake │ │ ├── ZLIB-release-x86_64-data.cmake │ │ ├── ZLIBConfig.cmake │ │ ├── ZLIBConfigVersion.cmake │ │ ├── ZLIBTargets.cmake │ │ ├── blake2-Target-debug.cmake │ │ ├── blake2-Target-release.cmake │ │ ├── blake2-config-version.cmake │ │ ├── blake2-config.cmake │ │ ├── blake2-debug-x86_64-data.cmake │ │ ├── blake2-release-x86_64-data.cmake │ │ ├── blake2Targets.cmake │ │ ├── cmakedeps_macros.cmake │ │ ├── conanbuild.sh │ │ ├── conanbuildenv-debug-x86_64.sh │ │ ├── conanbuildenv-release-x86_64.sh │ │ ├── conandeps_legacy.cmake │ │ ├── conanrun.sh │ │ ├── conanrunenv-debug-x86_64.sh │ │ ├── conanrunenv-release-x86_64.sh │ │ ├── deactivate_conanbuild.sh │ │ ├── deactivate_conanrun.sh │ │ ├── doctest-Target-debug.cmake │ │ ├── doctest-Target-release.cmake │ │ ├── doctest-config-version.cmake │ │ ├── doctest-config.cmake │ │ ├── doctest-debug-x86_64-data.cmake │ │ ├── doctest-release-x86_64-data.cmake │ │ ├── doctestTargets.cmake │ │ ├── ffmpeg-Target-debug.cmake │ │ ├── ffmpeg-Target-release.cmake │ │ ├── ffmpeg-config-version.cmake │ │ ├── ffmpeg-config.cmake │ │ ├── ffmpeg-debug-x86_64-data.cmake │ │ ├── ffmpeg-release-x86_64-data.cmake │ │ ├── ffmpegTargets.cmake │ │ ├── fltk-Target-debug.cmake │ │ ├── fltk-Target-release.cmake │ │ ├── fltk-config-version.cmake │ │ ├── fltk-config.cmake │ │ ├── fltk-debug-x86_64-data.cmake │ │ ├── fltk-release-x86_64-data.cmake │ │ ├── fltkTargets.cmake │ │ ├── glfw3-Target-debug.cmake │ │ ├── glfw3-Target-release.cmake │ │ ├── glfw3-config-version.cmake │ │ ├── glfw3-config.cmake │ │ ├── glfw3-debug-x86_64-data.cmake │ │ ├── glfw3-release-x86_64-data.cmake │ │ ├── glfw3Targets.cmake │ │ ├── glu-Target-debug.cmake │ │ ├── glu-Target-release.cmake │ │ ├── glu-config-version.cmake │ │ ├── glu-config.cmake │ │ ├── glu-debug-x86_64-data.cmake │ │ ├── glu-release-x86_64-data.cmake │ │ ├── gluTargets.cmake │ │ ├── minizip-Target-debug.cmake │ │ ├── minizip-Target-release.cmake │ │ ├── minizip-config-version.cmake │ │ ├── minizip-config.cmake │ │ ├── minizip-debug-x86_64-data.cmake │ │ ├── minizip-release-x86_64-data.cmake │ │ ├── minizipTargets.cmake │ │ ├── module-ALSA-Target-debug.cmake │ │ ├── module-ALSA-Target-release.cmake │ │ ├── module-ALSA-debug-x86_64-data.cmake │ │ ├── module-ALSA-release-x86_64-data.cmake │ │ ├── module-ALSATargets.cmake │ │ ├── module-CURL-Target-debug.cmake │ │ ├── module-CURL-Target-release.cmake │ │ ├── module-CURL-debug-x86_64-data.cmake │ │ ├── module-CURL-release-x86_64-data.cmake │ │ ├── module-CURLTargets.cmake │ │ ├── module-JPEG-Target-debug.cmake │ │ ├── module-JPEG-Target-release.cmake │ │ ├── module-JPEG-debug-x86_64-data.cmake │ │ ├── module-JPEG-release-x86_64-data.cmake │ │ ├── module-JPEGTargets.cmake │ │ ├── module-OpenAL-Target-debug.cmake │ │ ├── module-OpenAL-Target-release.cmake │ │ ├── module-OpenAL-debug-x86_64-data.cmake │ │ ├── module-OpenAL-release-x86_64-data.cmake │ │ ├── module-OpenALTargets.cmake │ │ ├── module-PNG-Target-debug.cmake │ │ ├── module-PNG-Target-release.cmake │ │ ├── module-PNG-debug-x86_64-data.cmake │ │ ├── module-PNG-release-x86_64-data.cmake │ │ ├── module-PNGTargets.cmake │ │ ├── module-ZLIB-Target-debug.cmake │ │ ├── module-ZLIB-Target-release.cmake │ │ ├── module-ZLIB-debug-x86_64-data.cmake │ │ ├── module-ZLIB-release-x86_64-data.cmake │ │ ├── module-ZLIBTargets.cmake │ │ ├── opengl_system-Target-debug.cmake │ │ ├── opengl_system-Target-release.cmake │ │ ├── opengl_system-config-version.cmake │ │ ├── opengl_system-config.cmake │ │ ├── opengl_system-debug-x86_64-data.cmake │ │ ├── opengl_system-release-x86_64-data.cmake │ │ ├── opengl_systemTargets.cmake │ │ ├── pugixml-Target-debug.cmake │ │ ├── pugixml-Target-release.cmake │ │ ├── pugixml-config-version.cmake │ │ ├── pugixml-config.cmake │ │ ├── pugixml-debug-x86_64-data.cmake │ │ ├── pugixml-release-x86_64-data.cmake │ │ ├── pugixmlTargets.cmake │ │ ├── tinyformat-Target-debug.cmake │ │ ├── tinyformat-Target-release.cmake │ │ ├── tinyformat-config-version.cmake │ │ ├── tinyformat-config.cmake │ │ ├── tinyformat-debug-x86_64-data.cmake │ │ ├── tinyformat-release-x86_64-data.cmake │ │ ├── tinyformatTargets.cmake │ │ ├── tracy-Target-debug.cmake │ │ ├── tracy-Target-release.cmake │ │ ├── tracy-config-version.cmake │ │ ├── tracy-config.cmake │ │ ├── tracy-debug-x86_64-data.cmake │ │ ├── tracy-release-x86_64-data.cmake │ │ ├── tracyTargets.cmake │ │ ├── xorg-Target-debug.cmake │ │ ├── xorg-Target-release.cmake │ │ ├── xorg-config-version.cmake │ │ ├── xorg-config.cmake │ │ ├── xorg-debug-x86_64-data.cmake │ │ ├── xorg-release-x86_64-data.cmake │ │ └── xorgTargets.cmake │ ├── tdm_deploy │ │ ├── blake2 │ │ │ ├── include │ │ │ │ ├── blake2-config.h │ │ │ │ ├── blake2-impl.h │ │ │ │ ├── blake2.h │ │ │ │ ├── blake2b-load-sse2.h │ │ │ │ ├── blake2b-load-sse41.h │ │ │ │ ├── blake2b-round.h │ │ │ │ ├── blake2s-load-sse2.h │ │ │ │ ├── blake2s-load-sse41.h │ │ │ │ ├── blake2s-load-xop.h │ │ │ │ └── blake2s-round.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libBLAKE2.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libBLAKE2.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── BLAKE2.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── BLAKE2.lib │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── doctest │ │ │ ├── include │ │ │ │ ├── doctest │ │ │ │ │ └── doctest.h │ │ │ │ └── scripts │ │ │ │ │ └── development_only │ │ │ │ │ └── doctest │ │ │ │ │ └── doctest.h │ │ │ └── licenses │ │ │ │ └── LICENSE.txt │ │ ├── ffmpeg │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── ac3_parser.h │ │ │ │ │ ├── adts_parser.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── bsf.h │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── codec_desc.h │ │ │ │ │ ├── codec_id.h │ │ │ │ │ ├── codec_par.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── defs.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── packet.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── version_major.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── version_major.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── ambient_viewing_environment.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── csp.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── detection_bbox.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── dovi_meta.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── encryption_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── executor.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── film_grain_params.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ │ ├── hdr_dynamic_vivid_metadata.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ │ ├── hwcontext_opencl.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── hwcontext_vulkan.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── tx.h │ │ │ │ │ ├── uuid.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── video_enc_params.h │ │ │ │ │ ├── video_hint.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── version_major.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── version_major.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libavcodec.a │ │ │ │ │ ├── libavformat.a │ │ │ │ │ ├── libavutil.a │ │ │ │ │ ├── libswresample.a │ │ │ │ │ └── libswscale.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── libavcodec.a │ │ │ │ │ ├── libavformat.a │ │ │ │ │ ├── libavutil.a │ │ │ │ │ ├── libswresample.a │ │ │ │ │ └── libswscale.a │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── avcodec.lib │ │ │ │ │ ├── avformat.lib │ │ │ │ │ ├── avutil.lib │ │ │ │ │ ├── swresample.lib │ │ │ │ │ └── swscale.lib │ │ │ │ └── windows64_rel │ │ │ │ │ ├── avcodec.lib │ │ │ │ │ ├── avformat.lib │ │ │ │ │ ├── avutil.lib │ │ │ │ │ ├── swresample.lib │ │ │ │ │ └── swscale.lib │ │ │ └── licenses │ │ │ │ └── LICENSE.md │ │ ├── fltk │ │ │ ├── bin │ │ │ │ ├── linux32_rel │ │ │ │ │ └── fluid │ │ │ │ ├── linux64_rel │ │ │ │ │ └── fluid │ │ │ │ ├── windows32_rel │ │ │ │ │ └── fluid.exe │ │ │ │ └── windows64_rel │ │ │ │ │ └── fluid.exe │ │ │ ├── include │ │ │ │ └── FL │ │ │ │ │ ├── Enumerations.H │ │ │ │ │ ├── Fl.H │ │ │ │ │ ├── Fl_Adjuster.H │ │ │ │ │ ├── Fl_BMP_Image.H │ │ │ │ │ ├── Fl_Bitmap.H │ │ │ │ │ ├── Fl_Box.H │ │ │ │ │ ├── Fl_Browser.H │ │ │ │ │ ├── Fl_Browser_.H │ │ │ │ │ ├── Fl_Button.H │ │ │ │ │ ├── Fl_Cairo.H │ │ │ │ │ ├── Fl_Cairo_Window.H │ │ │ │ │ ├── Fl_Chart.H │ │ │ │ │ ├── Fl_Check_Browser.H │ │ │ │ │ ├── Fl_Check_Button.H │ │ │ │ │ ├── Fl_Choice.H │ │ │ │ │ ├── Fl_Clock.H │ │ │ │ │ ├── Fl_Color_Chooser.H │ │ │ │ │ ├── Fl_Copy_Surface.H │ │ │ │ │ ├── Fl_Counter.H │ │ │ │ │ ├── Fl_Device.H │ │ │ │ │ ├── Fl_Dial.H │ │ │ │ │ ├── Fl_Double_Window.H │ │ │ │ │ ├── Fl_Export.H │ │ │ │ │ ├── Fl_File_Browser.H │ │ │ │ │ ├── Fl_File_Chooser.H │ │ │ │ │ ├── Fl_File_Icon.H │ │ │ │ │ ├── Fl_File_Input.H │ │ │ │ │ ├── Fl_Fill_Dial.H │ │ │ │ │ ├── Fl_Fill_Slider.H │ │ │ │ │ ├── Fl_Float_Input.H │ │ │ │ │ ├── Fl_FormsBitmap.H │ │ │ │ │ ├── Fl_FormsPixmap.H │ │ │ │ │ ├── Fl_Free.H │ │ │ │ │ ├── Fl_GIF_Image.H │ │ │ │ │ ├── Fl_Gl_Window.H │ │ │ │ │ ├── Fl_Group.H │ │ │ │ │ ├── Fl_Help_Dialog.H │ │ │ │ │ ├── Fl_Help_View.H │ │ │ │ │ ├── Fl_Hold_Browser.H │ │ │ │ │ ├── Fl_Hor_Fill_Slider.H │ │ │ │ │ ├── Fl_Hor_Nice_Slider.H │ │ │ │ │ ├── Fl_Hor_Slider.H │ │ │ │ │ ├── Fl_Hor_Value_Slider.H │ │ │ │ │ ├── Fl_Image.H │ │ │ │ │ ├── Fl_Image_Surface.H │ │ │ │ │ ├── Fl_Input.H │ │ │ │ │ ├── Fl_Input_.H │ │ │ │ │ ├── Fl_Input_Choice.H │ │ │ │ │ ├── Fl_Int_Input.H │ │ │ │ │ ├── Fl_JPEG_Image.H │ │ │ │ │ ├── Fl_Light_Button.H │ │ │ │ │ ├── Fl_Line_Dial.H │ │ │ │ │ ├── Fl_Menu.H │ │ │ │ │ ├── Fl_Menu_.H │ │ │ │ │ ├── Fl_Menu_Bar.H │ │ │ │ │ ├── Fl_Menu_Button.H │ │ │ │ │ ├── Fl_Menu_Item.H │ │ │ │ │ ├── Fl_Menu_Window.H │ │ │ │ │ ├── Fl_Multi_Browser.H │ │ │ │ │ ├── Fl_Multi_Label.H │ │ │ │ │ ├── Fl_Multiline_Input.H │ │ │ │ │ ├── Fl_Multiline_Output.H │ │ │ │ │ ├── Fl_Native_File_Chooser.H │ │ │ │ │ ├── Fl_Nice_Slider.H │ │ │ │ │ ├── Fl_Object.H │ │ │ │ │ ├── Fl_Output.H │ │ │ │ │ ├── Fl_Overlay_Window.H │ │ │ │ │ ├── Fl_PNG_Image.H │ │ │ │ │ ├── Fl_PNM_Image.H │ │ │ │ │ ├── Fl_Pack.H │ │ │ │ │ ├── Fl_Paged_Device.H │ │ │ │ │ ├── Fl_Pixmap.H │ │ │ │ │ ├── Fl_Plugin.H │ │ │ │ │ ├── Fl_Positioner.H │ │ │ │ │ ├── Fl_PostScript.H │ │ │ │ │ ├── Fl_Preferences.H │ │ │ │ │ ├── Fl_Printer.H │ │ │ │ │ ├── Fl_Progress.H │ │ │ │ │ ├── Fl_RGB_Image.H │ │ │ │ │ ├── Fl_Radio_Button.H │ │ │ │ │ ├── Fl_Radio_Light_Button.H │ │ │ │ │ ├── Fl_Radio_Round_Button.H │ │ │ │ │ ├── Fl_Repeat_Button.H │ │ │ │ │ ├── Fl_Return_Button.H │ │ │ │ │ ├── Fl_Roller.H │ │ │ │ │ ├── Fl_Round_Button.H │ │ │ │ │ ├── Fl_Round_Clock.H │ │ │ │ │ ├── Fl_Scroll.H │ │ │ │ │ ├── Fl_Scrollbar.H │ │ │ │ │ ├── Fl_Secret_Input.H │ │ │ │ │ ├── Fl_Select_Browser.H │ │ │ │ │ ├── Fl_Shared_Image.H │ │ │ │ │ ├── Fl_Simple_Counter.H │ │ │ │ │ ├── Fl_Single_Window.H │ │ │ │ │ ├── Fl_Slider.H │ │ │ │ │ ├── Fl_Spinner.H │ │ │ │ │ ├── Fl_Sys_Menu_Bar.H │ │ │ │ │ ├── Fl_Table.H │ │ │ │ │ ├── Fl_Table_Row.H │ │ │ │ │ ├── Fl_Tabs.H │ │ │ │ │ ├── Fl_Text_Buffer.H │ │ │ │ │ ├── Fl_Text_Display.H │ │ │ │ │ ├── Fl_Text_Editor.H │ │ │ │ │ ├── Fl_Tile.H │ │ │ │ │ ├── Fl_Tiled_Image.H │ │ │ │ │ ├── Fl_Timer.H │ │ │ │ │ ├── Fl_Toggle_Button.H │ │ │ │ │ ├── Fl_Toggle_Light_Button.H │ │ │ │ │ ├── Fl_Toggle_Round_Button.H │ │ │ │ │ ├── Fl_Tooltip.H │ │ │ │ │ ├── Fl_Tree.H │ │ │ │ │ ├── Fl_Tree_Item.H │ │ │ │ │ ├── Fl_Tree_Item_Array.H │ │ │ │ │ ├── Fl_Tree_Prefs.H │ │ │ │ │ ├── Fl_Valuator.H │ │ │ │ │ ├── Fl_Value_Input.H │ │ │ │ │ ├── Fl_Value_Output.H │ │ │ │ │ ├── Fl_Value_Slider.H │ │ │ │ │ ├── Fl_Widget.H │ │ │ │ │ ├── Fl_Window.H │ │ │ │ │ ├── Fl_Wizard.H │ │ │ │ │ ├── Fl_XBM_Image.H │ │ │ │ │ ├── Fl_XPM_Image.H │ │ │ │ │ ├── abi-version.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── filename.H │ │ │ │ │ ├── fl_ask.H │ │ │ │ │ ├── fl_draw.H │ │ │ │ │ ├── fl_message.H │ │ │ │ │ ├── fl_show_colormap.H │ │ │ │ │ ├── fl_show_input.H │ │ │ │ │ ├── fl_types.h │ │ │ │ │ ├── fl_utf8.h │ │ │ │ │ ├── forms.H │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── gl2opengl.h │ │ │ │ │ ├── gl_draw.H │ │ │ │ │ ├── glu.h │ │ │ │ │ ├── glut.H │ │ │ │ │ ├── mac.H │ │ │ │ │ ├── math.h │ │ │ │ │ ├── names.h │ │ │ │ │ ├── platform.H │ │ │ │ │ ├── win32.H │ │ │ │ │ └── x.H │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libfltk.a │ │ │ │ │ ├── libfltk_forms.a │ │ │ │ │ ├── libfltk_gl.a │ │ │ │ │ └── libfltk_images.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── libfltk.a │ │ │ │ │ ├── libfltk_forms.a │ │ │ │ │ ├── libfltk_gl.a │ │ │ │ │ └── libfltk_images.a │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── fltk.lib │ │ │ │ │ ├── fltk_forms.lib │ │ │ │ │ ├── fltk_gl.lib │ │ │ │ │ └── fltk_images.lib │ │ │ │ └── windows64_rel │ │ │ │ │ ├── fltk.lib │ │ │ │ │ ├── fltk_forms.lib │ │ │ │ │ ├── fltk_gl.lib │ │ │ │ │ └── fltk_images.lib │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── glfw │ │ │ ├── include │ │ │ │ └── GLFW │ │ │ │ │ ├── glfw3.h │ │ │ │ │ └── glfw3native.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── conan-official-glfw-targets.cmake │ │ │ │ │ └── libglfw3.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── conan-official-glfw-targets.cmake │ │ │ │ │ └── libglfw3.a │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── conan-official-glfw-targets.cmake │ │ │ │ │ └── glfw3.lib │ │ │ │ └── windows64_rel │ │ │ │ │ ├── cmake │ │ │ │ │ └── conan-official-glfw-targets.cmake │ │ │ │ │ └── glfw3.lib │ │ │ └── licenses │ │ │ │ └── LICENSE.md │ │ ├── libalsa │ │ │ ├── bin │ │ │ │ ├── linux32_rel │ │ │ │ │ └── aserver │ │ │ │ └── linux64_rel │ │ │ │ │ └── aserver │ │ │ ├── include │ │ │ │ ├── alsa │ │ │ │ │ ├── asoundef.h │ │ │ │ │ ├── asoundlib.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── control.h │ │ │ │ │ ├── control_external.h │ │ │ │ │ ├── control_plugin.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── global.h │ │ │ │ │ ├── hwdep.h │ │ │ │ │ ├── input.h │ │ │ │ │ ├── mixer.h │ │ │ │ │ ├── mixer_abst.h │ │ │ │ │ ├── output.h │ │ │ │ │ ├── pcm.h │ │ │ │ │ ├── pcm_external.h │ │ │ │ │ ├── pcm_extplug.h │ │ │ │ │ ├── pcm_ioplug.h │ │ │ │ │ ├── pcm_old.h │ │ │ │ │ ├── pcm_plugin.h │ │ │ │ │ ├── pcm_rate.h │ │ │ │ │ ├── rawmidi.h │ │ │ │ │ ├── seq.h │ │ │ │ │ ├── seq_event.h │ │ │ │ │ ├── seq_midi_event.h │ │ │ │ │ ├── seqmid.h │ │ │ │ │ ├── sound │ │ │ │ │ │ ├── asoc.h │ │ │ │ │ │ ├── asound_fm.h │ │ │ │ │ │ ├── emu10k1.h │ │ │ │ │ │ ├── hdsp.h │ │ │ │ │ │ ├── hdspm.h │ │ │ │ │ │ ├── sb16_csp.h │ │ │ │ │ │ ├── sscape_ioctl.h │ │ │ │ │ │ ├── tlv.h │ │ │ │ │ │ ├── type_compat.h │ │ │ │ │ │ └── uapi │ │ │ │ │ │ │ ├── asoc.h │ │ │ │ │ │ │ ├── asound_fm.h │ │ │ │ │ │ │ ├── emu10k1.h │ │ │ │ │ │ │ ├── hdsp.h │ │ │ │ │ │ │ ├── hdspm.h │ │ │ │ │ │ │ ├── sb16_csp.h │ │ │ │ │ │ │ ├── sscape_ioctl.h │ │ │ │ │ │ │ └── tlv.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── topology.h │ │ │ │ │ ├── use-case.h │ │ │ │ │ └── version.h │ │ │ │ ├── asoundlib.h │ │ │ │ └── sys │ │ │ │ │ └── asoundlib.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libasound.a │ │ │ │ │ └── libatopology.a │ │ │ │ └── linux64_rel │ │ │ │ │ ├── libasound.a │ │ │ │ │ └── libatopology.a │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── libcurl │ │ │ ├── bin │ │ │ │ ├── linux32_rel │ │ │ │ │ └── curl-config │ │ │ │ ├── linux64_rel │ │ │ │ │ └── curl-config │ │ │ │ ├── windows32_rel │ │ │ │ │ └── curl-config │ │ │ │ └── windows64_rel │ │ │ │ │ └── curl-config │ │ │ ├── include │ │ │ │ └── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── header.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ ├── urlapi.h │ │ │ │ │ └── websockets.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libcurl.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libcurl.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── libcurl.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── libcurl.lib │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── libjpeg │ │ │ ├── include │ │ │ │ ├── linux │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpegint.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ └── transupp.h │ │ │ │ └── windows │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpegint.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ └── transupp.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libjpeg.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libjpeg.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── libjpeg.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── libjpeg.lib │ │ │ └── licenses │ │ │ │ └── README │ │ ├── libpng │ │ │ ├── include │ │ │ │ ├── libpng16 │ │ │ │ │ ├── png.h │ │ │ │ │ ├── pngconf.h │ │ │ │ │ └── pnglibconf.h │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libpng.a │ │ │ │ │ └── libpng16.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── libpng.a │ │ │ │ │ └── libpng16.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── libpng16_static.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── libpng16_static.lib │ │ │ └── licenses │ │ │ │ └── LICENSE │ │ ├── mbedtls │ │ │ ├── include │ │ │ │ ├── everest │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ ├── everest.h │ │ │ │ │ ├── kremlib.h │ │ │ │ │ ├── kremlib │ │ │ │ │ │ ├── FStar_UInt128.h │ │ │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h │ │ │ │ │ ├── kremlin │ │ │ │ │ │ ├── c_endianness.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── builtin.h │ │ │ │ │ │ │ ├── callconv.h │ │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── wasmsupport.h │ │ │ │ │ ├── vs2013 │ │ │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ └── stdbool.h │ │ │ │ │ └── x25519.h │ │ │ │ ├── mbedtls │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aria.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1write.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bignum.h │ │ │ │ │ ├── block_cipher.h │ │ │ │ │ ├── build_info.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── ccm.h │ │ │ │ │ ├── chacha20.h │ │ │ │ │ ├── chachapoly.h │ │ │ │ │ ├── check_config.h │ │ │ │ │ ├── cipher.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── compat-2.x.h │ │ │ │ │ ├── config_adjust_legacy_crypto.h │ │ │ │ │ ├── config_adjust_legacy_from_psa.h │ │ │ │ │ ├── config_adjust_psa_from_legacy.h │ │ │ │ │ ├── config_adjust_psa_superset_legacy.h │ │ │ │ │ ├── config_adjust_ssl.h │ │ │ │ │ ├── config_adjust_x509.h │ │ │ │ │ ├── config_psa.h │ │ │ │ │ ├── constant_time.h │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dhm.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gcm.h │ │ │ │ │ ├── hkdf.h │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ ├── lms.h │ │ │ │ │ ├── mbedtls_config.h │ │ │ │ │ ├── md.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ ├── nist_kw.h │ │ │ │ │ ├── oid.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pk.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform_time.h │ │ │ │ │ ├── platform_util.h │ │ │ │ │ ├── poly1305.h │ │ │ │ │ ├── private_access.h │ │ │ │ │ ├── psa_util.h │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── sha3.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ ├── ssl_ticket.h │ │ │ │ │ ├── threading.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ └── x509_csr.h │ │ │ │ └── psa │ │ │ │ │ ├── build_info.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── crypto_adjust_auto_enabled.h │ │ │ │ │ ├── crypto_adjust_config_key_pair_types.h │ │ │ │ │ ├── crypto_adjust_config_synonyms.h │ │ │ │ │ ├── crypto_builtin_composites.h │ │ │ │ │ ├── crypto_builtin_key_derivation.h │ │ │ │ │ ├── crypto_builtin_primitives.h │ │ │ │ │ ├── crypto_compat.h │ │ │ │ │ ├── crypto_config.h │ │ │ │ │ ├── crypto_driver_common.h │ │ │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ │ │ ├── crypto_driver_contexts_key_derivation.h │ │ │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ │ │ ├── crypto_extra.h │ │ │ │ │ ├── crypto_legacy.h │ │ │ │ │ ├── crypto_platform.h │ │ │ │ │ ├── crypto_se_driver.h │ │ │ │ │ ├── crypto_sizes.h │ │ │ │ │ ├── crypto_struct.h │ │ │ │ │ ├── crypto_types.h │ │ │ │ │ └── crypto_values.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libeverest.a │ │ │ │ │ ├── libmbedcrypto.a │ │ │ │ │ ├── libmbedtls.a │ │ │ │ │ ├── libmbedx509.a │ │ │ │ │ └── libp256m.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── libeverest.a │ │ │ │ │ ├── libmbedcrypto.a │ │ │ │ │ ├── libmbedtls.a │ │ │ │ │ ├── libmbedx509.a │ │ │ │ │ └── libp256m.a │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── everest.lib │ │ │ │ │ ├── mbedcrypto.lib │ │ │ │ │ ├── mbedtls.lib │ │ │ │ │ ├── mbedx509.lib │ │ │ │ │ └── p256m.lib │ │ │ │ └── windows64_rel │ │ │ │ │ ├── everest.lib │ │ │ │ │ ├── mbedcrypto.lib │ │ │ │ │ ├── mbedtls.lib │ │ │ │ │ ├── mbedx509.lib │ │ │ │ │ └── p256m.lib │ │ │ └── licenses │ │ │ │ └── LICENSE │ │ ├── minizip │ │ │ ├── include │ │ │ │ └── minizip │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.h │ │ │ │ │ └── zip.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libminizip.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libminizip.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── minizip.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── minizip.lib │ │ │ └── licenses │ │ │ │ └── LICENSE │ │ ├── ogg │ │ │ ├── include │ │ │ │ └── ogg │ │ │ │ │ ├── config_types.h │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libogg.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libogg.a │ │ │ │ ├── windows32_rel │ │ │ │ │ └── ogg.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── ogg.lib │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── openal │ │ │ ├── include │ │ │ │ └── AL │ │ │ │ │ ├── al.h │ │ │ │ │ ├── alc.h │ │ │ │ │ ├── alext.h │ │ │ │ │ ├── efx-creative.h │ │ │ │ │ ├── efx-presets.h │ │ │ │ │ └── efx.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ │ │ └── libopenal.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ │ │ └── libopenal.a │ │ │ │ ├── windows32_dbg │ │ │ │ │ ├── OpenAL32.lib │ │ │ │ │ └── cmake │ │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── OpenAL32.lib │ │ │ │ │ └── cmake │ │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ │ ├── windows64_dbg │ │ │ │ │ ├── OpenAL32.lib │ │ │ │ │ └── cmake │ │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ │ └── windows64_rel │ │ │ │ │ ├── OpenAL32.lib │ │ │ │ │ └── cmake │ │ │ │ │ └── conan-official-openal-variables.cmake │ │ │ └── licenses │ │ │ │ └── COPYING │ │ ├── pugixml │ │ │ ├── include │ │ │ │ ├── pugiconfig.hpp │ │ │ │ └── pugixml.hpp │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ └── libpugixml.a │ │ │ │ ├── linux64_rel │ │ │ │ │ └── libpugixml.a │ │ │ │ ├── windows32_dbg │ │ │ │ │ └── pugixml.lib │ │ │ │ ├── windows32_rel │ │ │ │ │ └── pugixml.lib │ │ │ │ ├── windows64_dbg │ │ │ │ │ └── pugixml.lib │ │ │ │ └── windows64_rel │ │ │ │ │ └── pugixml.lib │ │ │ └── licenses │ │ │ │ └── LICENSE │ │ ├── tinyformat │ │ │ ├── include │ │ │ │ └── tinyformat.h │ │ │ └── licenses │ │ │ │ └── LICENSE.txt │ │ ├── tracy │ │ │ ├── include │ │ │ │ ├── TracyClient.cpp │ │ │ │ ├── client │ │ │ │ │ ├── TracyAlloc.cpp │ │ │ │ │ ├── TracyArmCpuTable.hpp │ │ │ │ │ ├── TracyCallstack.cpp │ │ │ │ │ ├── TracyCallstack.h │ │ │ │ │ ├── TracyCallstack.hpp │ │ │ │ │ ├── TracyCpuid.hpp │ │ │ │ │ ├── TracyDebug.hpp │ │ │ │ │ ├── TracyDxt1.cpp │ │ │ │ │ ├── TracyDxt1.hpp │ │ │ │ │ ├── TracyFastVector.hpp │ │ │ │ │ ├── TracyLock.hpp │ │ │ │ │ ├── TracyOverride.cpp │ │ │ │ │ ├── TracyProfiler.cpp │ │ │ │ │ ├── TracyProfiler.hpp │ │ │ │ │ ├── TracyRingBuffer.hpp │ │ │ │ │ ├── TracyScoped.hpp │ │ │ │ │ ├── TracyStringHelpers.hpp │ │ │ │ │ ├── TracySysPower.cpp │ │ │ │ │ ├── TracySysPower.hpp │ │ │ │ │ ├── TracySysTime.cpp │ │ │ │ │ ├── TracySysTime.hpp │ │ │ │ │ ├── TracySysTrace.cpp │ │ │ │ │ ├── TracySysTrace.hpp │ │ │ │ │ ├── TracyThread.hpp │ │ │ │ │ ├── tracy_SPSCQueue.h │ │ │ │ │ ├── tracy_concurrentqueue.h │ │ │ │ │ ├── tracy_rpmalloc.cpp │ │ │ │ │ └── tracy_rpmalloc.hpp │ │ │ │ ├── common │ │ │ │ │ ├── TracyAlign.hpp │ │ │ │ │ ├── TracyAlloc.hpp │ │ │ │ │ ├── TracyApi.h │ │ │ │ │ ├── TracyColor.hpp │ │ │ │ │ ├── TracyForceInline.hpp │ │ │ │ │ ├── TracyMutex.hpp │ │ │ │ │ ├── TracyProtocol.hpp │ │ │ │ │ ├── TracyQueue.hpp │ │ │ │ │ ├── TracySocket.cpp │ │ │ │ │ ├── TracySocket.hpp │ │ │ │ │ ├── TracyStackFrames.cpp │ │ │ │ │ ├── TracyStackFrames.hpp │ │ │ │ │ ├── TracySystem.cpp │ │ │ │ │ ├── TracySystem.hpp │ │ │ │ │ ├── TracyUwp.hpp │ │ │ │ │ ├── TracyVersion.hpp │ │ │ │ │ ├── TracyYield.hpp │ │ │ │ │ ├── tracy_lz4.cpp │ │ │ │ │ ├── tracy_lz4.hpp │ │ │ │ │ ├── tracy_lz4hc.cpp │ │ │ │ │ └── tracy_lz4hc.hpp │ │ │ │ ├── libbacktrace │ │ │ │ │ ├── alloc.cpp │ │ │ │ │ ├── backtrace.hpp │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dwarf.cpp │ │ │ │ │ ├── elf.cpp │ │ │ │ │ ├── fileline.cpp │ │ │ │ │ ├── filenames.hpp │ │ │ │ │ ├── internal.hpp │ │ │ │ │ ├── macho.cpp │ │ │ │ │ ├── mmapio.cpp │ │ │ │ │ ├── posix.cpp │ │ │ │ │ ├── sort.cpp │ │ │ │ │ └── state.cpp │ │ │ │ └── tracy │ │ │ │ │ ├── Tracy.hpp │ │ │ │ │ ├── TracyC.h │ │ │ │ │ ├── TracyD3D11.hpp │ │ │ │ │ ├── TracyD3D12.hpp │ │ │ │ │ ├── TracyLua.hpp │ │ │ │ │ ├── TracyOpenCL.hpp │ │ │ │ │ ├── TracyOpenGL.hpp │ │ │ │ │ └── TracyVulkan.hpp │ │ │ └── licenses │ │ │ │ ├── LICENSE │ │ │ │ └── libbacktrace │ │ │ │ └── LICENSE │ │ ├── vorbis │ │ │ ├── include │ │ │ │ └── vorbis │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ ├── lib │ │ │ │ ├── linux32_rel │ │ │ │ │ ├── libvorbis.a │ │ │ │ │ ├── libvorbisenc.a │ │ │ │ │ └── libvorbisfile.a │ │ │ │ ├── linux64_rel │ │ │ │ │ ├── libvorbis.a │ │ │ │ │ ├── libvorbisenc.a │ │ │ │ │ └── libvorbisfile.a │ │ │ │ ├── windows32_rel │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ └── vorbisfile.lib │ │ │ │ └── windows64_rel │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ └── vorbisfile.lib │ │ │ └── licenses │ │ │ │ └── COPYING │ │ └── zlib │ │ │ ├── include │ │ │ ├── linux │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ └── windows │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ ├── lib │ │ │ ├── linux32_rel │ │ │ │ └── libz.a │ │ │ ├── linux64_rel │ │ │ │ └── libz.a │ │ │ ├── windows32_rel │ │ │ │ └── zlib.lib │ │ │ └── windows64_rel │ │ │ │ └── zlib.lib │ │ │ └── licenses │ │ │ └── LICENSE │ ├── windows_32 │ │ ├── CURL-Target-debug.cmake │ │ ├── CURL-Target-release.cmake │ │ ├── CURL-debug-x86-data.cmake │ │ ├── CURL-release-x86-data.cmake │ │ ├── CURLConfig.cmake │ │ ├── CURLConfigVersion.cmake │ │ ├── CURLTargets.cmake │ │ ├── FindCURL.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindOpenAL.cmake │ │ ├── FindPNG.cmake │ │ ├── FindZLIB.cmake │ │ ├── JPEG-Target-debug.cmake │ │ ├── JPEG-Target-release.cmake │ │ ├── JPEG-debug-x86-data.cmake │ │ ├── JPEG-release-x86-data.cmake │ │ ├── JPEGConfig.cmake │ │ ├── JPEGConfigVersion.cmake │ │ ├── JPEGTargets.cmake │ │ ├── MbedTLS-Target-debug.cmake │ │ ├── MbedTLS-Target-release.cmake │ │ ├── MbedTLS-debug-x86-data.cmake │ │ ├── MbedTLS-release-x86-data.cmake │ │ ├── MbedTLSConfig.cmake │ │ ├── MbedTLSConfigVersion.cmake │ │ ├── MbedTLSTargets.cmake │ │ ├── Ogg-Target-debug.cmake │ │ ├── Ogg-Target-release.cmake │ │ ├── Ogg-debug-x86-data.cmake │ │ ├── Ogg-release-x86-data.cmake │ │ ├── OggConfig.cmake │ │ ├── OggConfigVersion.cmake │ │ ├── OggTargets.cmake │ │ ├── OpenAL-Target-debug.cmake │ │ ├── OpenAL-Target-release.cmake │ │ ├── OpenAL-debug-x86-data.cmake │ │ ├── OpenAL-release-x86-data.cmake │ │ ├── OpenALConfig.cmake │ │ ├── OpenALConfigVersion.cmake │ │ ├── OpenALTargets.cmake │ │ ├── PNG-Target-debug.cmake │ │ ├── PNG-Target-release.cmake │ │ ├── PNG-debug-x86-data.cmake │ │ ├── PNG-release-x86-data.cmake │ │ ├── PNGConfig.cmake │ │ ├── PNGConfigVersion.cmake │ │ ├── PNGTargets.cmake │ │ ├── Vorbis-Target-debug.cmake │ │ ├── Vorbis-Target-release.cmake │ │ ├── Vorbis-debug-x86-data.cmake │ │ ├── Vorbis-release-x86-data.cmake │ │ ├── VorbisConfig.cmake │ │ ├── VorbisConfigVersion.cmake │ │ ├── VorbisTargets.cmake │ │ ├── ZLIB-Target-debug.cmake │ │ ├── ZLIB-Target-release.cmake │ │ ├── ZLIB-debug-x86-data.cmake │ │ ├── ZLIB-release-x86-data.cmake │ │ ├── ZLIBConfig.cmake │ │ ├── ZLIBConfigVersion.cmake │ │ ├── ZLIBTargets.cmake │ │ ├── blake2-Target-debug.cmake │ │ ├── blake2-Target-release.cmake │ │ ├── blake2-config-version.cmake │ │ ├── blake2-config.cmake │ │ ├── blake2-debug-x86-data.cmake │ │ ├── blake2-release-x86-data.cmake │ │ ├── blake2Targets.cmake │ │ ├── cmakedeps_macros.cmake │ │ ├── conan_blake2.props │ │ ├── conan_blake2_debug editable_win32.props │ │ ├── conan_blake2_debug fast_win32.props │ │ ├── conan_blake2_debug_win32.props │ │ ├── conan_blake2_release_win32.props │ │ ├── conan_blake2_sanitize_win32.props │ │ ├── conan_blake2_vars_debug editable_win32.props │ │ ├── conan_blake2_vars_debug fast_win32.props │ │ ├── conan_blake2_vars_debug_win32.props │ │ ├── conan_blake2_vars_release_win32.props │ │ ├── conan_blake2_vars_sanitize_win32.props │ │ ├── conan_doctest.props │ │ ├── conan_doctest_debug editable_win32.props │ │ ├── conan_doctest_debug fast_win32.props │ │ ├── conan_doctest_debug_win32.props │ │ ├── conan_doctest_release_win32.props │ │ ├── conan_doctest_sanitize_win32.props │ │ ├── conan_doctest_vars_debug editable_win32.props │ │ ├── conan_doctest_vars_debug fast_win32.props │ │ ├── conan_doctest_vars_debug_win32.props │ │ ├── conan_doctest_vars_release_win32.props │ │ ├── conan_doctest_vars_sanitize_win32.props │ │ ├── conan_ffmpeg.props │ │ ├── conan_ffmpeg_avcodec.props │ │ ├── conan_ffmpeg_avcodec_debug editable_win32.props │ │ ├── conan_ffmpeg_avcodec_debug fast_win32.props │ │ ├── conan_ffmpeg_avcodec_debug_win32.props │ │ ├── conan_ffmpeg_avcodec_release_win32.props │ │ ├── conan_ffmpeg_avcodec_sanitize_win32.props │ │ ├── conan_ffmpeg_avcodec_vars_debug editable_win32.props │ │ ├── conan_ffmpeg_avcodec_vars_debug fast_win32.props │ │ ├── conan_ffmpeg_avcodec_vars_debug_win32.props │ │ ├── conan_ffmpeg_avcodec_vars_release_win32.props │ │ ├── conan_ffmpeg_avcodec_vars_sanitize_win32.props │ │ ├── conan_ffmpeg_avformat.props │ │ ├── conan_ffmpeg_avformat_debug editable_win32.props │ │ ├── conan_ffmpeg_avformat_debug fast_win32.props │ │ ├── conan_ffmpeg_avformat_debug_win32.props │ │ ├── conan_ffmpeg_avformat_release_win32.props │ │ ├── conan_ffmpeg_avformat_sanitize_win32.props │ │ ├── conan_ffmpeg_avformat_vars_debug editable_win32.props │ │ ├── conan_ffmpeg_avformat_vars_debug fast_win32.props │ │ ├── conan_ffmpeg_avformat_vars_debug_win32.props │ │ ├── conan_ffmpeg_avformat_vars_release_win32.props │ │ ├── conan_ffmpeg_avformat_vars_sanitize_win32.props │ │ ├── conan_ffmpeg_avutil.props │ │ ├── conan_ffmpeg_avutil_debug editable_win32.props │ │ ├── conan_ffmpeg_avutil_debug fast_win32.props │ │ ├── conan_ffmpeg_avutil_debug_win32.props │ │ ├── conan_ffmpeg_avutil_release_win32.props │ │ ├── conan_ffmpeg_avutil_sanitize_win32.props │ │ ├── conan_ffmpeg_avutil_vars_debug editable_win32.props │ │ ├── conan_ffmpeg_avutil_vars_debug fast_win32.props │ │ ├── conan_ffmpeg_avutil_vars_debug_win32.props │ │ ├── conan_ffmpeg_avutil_vars_release_win32.props │ │ ├── conan_ffmpeg_avutil_vars_sanitize_win32.props │ │ ├── conan_ffmpeg_swresample.props │ │ ├── conan_ffmpeg_swresample_debug editable_win32.props │ │ ├── conan_ffmpeg_swresample_debug fast_win32.props │ │ ├── conan_ffmpeg_swresample_debug_win32.props │ │ ├── conan_ffmpeg_swresample_release_win32.props │ │ ├── conan_ffmpeg_swresample_sanitize_win32.props │ │ ├── conan_ffmpeg_swresample_vars_debug editable_win32.props │ │ ├── conan_ffmpeg_swresample_vars_debug fast_win32.props │ │ ├── conan_ffmpeg_swresample_vars_debug_win32.props │ │ ├── conan_ffmpeg_swresample_vars_release_win32.props │ │ ├── conan_ffmpeg_swresample_vars_sanitize_win32.props │ │ ├── conan_ffmpeg_swscale.props │ │ ├── conan_ffmpeg_swscale_debug editable_win32.props │ │ ├── conan_ffmpeg_swscale_debug fast_win32.props │ │ ├── conan_ffmpeg_swscale_debug_win32.props │ │ ├── conan_ffmpeg_swscale_release_win32.props │ │ ├── conan_ffmpeg_swscale_sanitize_win32.props │ │ ├── conan_ffmpeg_swscale_vars_debug editable_win32.props │ │ ├── conan_ffmpeg_swscale_vars_debug fast_win32.props │ │ ├── conan_ffmpeg_swscale_vars_debug_win32.props │ │ ├── conan_ffmpeg_swscale_vars_release_win32.props │ │ ├── conan_ffmpeg_swscale_vars_sanitize_win32.props │ │ ├── conan_fltk.props │ │ ├── conan_fltk_debug editable_win32.props │ │ ├── conan_fltk_debug fast_win32.props │ │ ├── conan_fltk_debug_win32.props │ │ ├── conan_fltk_release_win32.props │ │ ├── conan_fltk_sanitize_win32.props │ │ ├── conan_fltk_vars_debug editable_win32.props │ │ ├── conan_fltk_vars_debug fast_win32.props │ │ ├── conan_fltk_vars_debug_win32.props │ │ ├── conan_fltk_vars_release_win32.props │ │ ├── conan_fltk_vars_sanitize_win32.props │ │ ├── conan_glfw.props │ │ ├── conan_glfw_debug editable_win32.props │ │ ├── conan_glfw_debug fast_win32.props │ │ ├── conan_glfw_debug_win32.props │ │ ├── conan_glfw_release_win32.props │ │ ├── conan_glfw_sanitize_win32.props │ │ ├── conan_glfw_vars_debug editable_win32.props │ │ ├── conan_glfw_vars_debug fast_win32.props │ │ ├── conan_glfw_vars_debug_win32.props │ │ ├── conan_glfw_vars_release_win32.props │ │ ├── conan_glfw_vars_sanitize_win32.props │ │ ├── conan_libcurl.props │ │ ├── conan_libcurl_curl.props │ │ ├── conan_libcurl_curl_debug editable_win32.props │ │ ├── conan_libcurl_curl_debug fast_win32.props │ │ ├── conan_libcurl_curl_debug_win32.props │ │ ├── conan_libcurl_curl_release_win32.props │ │ ├── conan_libcurl_curl_sanitize_win32.props │ │ ├── conan_libcurl_curl_vars_debug editable_win32.props │ │ ├── conan_libcurl_curl_vars_debug fast_win32.props │ │ ├── conan_libcurl_curl_vars_debug_win32.props │ │ ├── conan_libcurl_curl_vars_release_win32.props │ │ ├── conan_libcurl_curl_vars_sanitize_win32.props │ │ ├── conan_libjpeg.props │ │ ├── conan_libjpeg_debug editable_win32.props │ │ ├── conan_libjpeg_debug fast_win32.props │ │ ├── conan_libjpeg_debug_win32.props │ │ ├── conan_libjpeg_release_win32.props │ │ ├── conan_libjpeg_sanitize_win32.props │ │ ├── conan_libjpeg_vars_debug editable_win32.props │ │ ├── conan_libjpeg_vars_debug fast_win32.props │ │ ├── conan_libjpeg_vars_debug_win32.props │ │ ├── conan_libjpeg_vars_release_win32.props │ │ ├── conan_libjpeg_vars_sanitize_win32.props │ │ ├── conan_libpng.props │ │ ├── conan_libpng_debug editable_win32.props │ │ ├── conan_libpng_debug fast_win32.props │ │ ├── conan_libpng_debug_win32.props │ │ ├── conan_libpng_release_win32.props │ │ ├── conan_libpng_sanitize_win32.props │ │ ├── conan_libpng_vars_debug editable_win32.props │ │ ├── conan_libpng_vars_debug fast_win32.props │ │ ├── conan_libpng_vars_debug_win32.props │ │ ├── conan_libpng_vars_release_win32.props │ │ ├── conan_libpng_vars_sanitize_win32.props │ │ ├── conan_mbedtls.props │ │ ├── conan_mbedtls_libembedtls.props │ │ ├── conan_mbedtls_libembedtls_debug editable_win32.props │ │ ├── conan_mbedtls_libembedtls_debug fast_win32.props │ │ ├── conan_mbedtls_libembedtls_debug_win32.props │ │ ├── conan_mbedtls_libembedtls_release_win32.props │ │ ├── conan_mbedtls_libembedtls_sanitize_win32.props │ │ ├── conan_mbedtls_libembedtls_vars_debug editable_win32.props │ │ ├── conan_mbedtls_libembedtls_vars_debug fast_win32.props │ │ ├── conan_mbedtls_libembedtls_vars_debug_win32.props │ │ ├── conan_mbedtls_libembedtls_vars_release_win32.props │ │ ├── conan_mbedtls_libembedtls_vars_sanitize_win32.props │ │ ├── conan_mbedtls_mbedcrypto.props │ │ ├── conan_mbedtls_mbedcrypto_debug editable_win32.props │ │ ├── conan_mbedtls_mbedcrypto_debug fast_win32.props │ │ ├── conan_mbedtls_mbedcrypto_debug_win32.props │ │ ├── conan_mbedtls_mbedcrypto_release_win32.props │ │ ├── conan_mbedtls_mbedcrypto_sanitize_win32.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug editable_win32.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug fast_win32.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug_win32.props │ │ ├── conan_mbedtls_mbedcrypto_vars_release_win32.props │ │ ├── conan_mbedtls_mbedcrypto_vars_sanitize_win32.props │ │ ├── conan_mbedtls_mbedx509.props │ │ ├── conan_mbedtls_mbedx509_debug editable_win32.props │ │ ├── conan_mbedtls_mbedx509_debug fast_win32.props │ │ ├── conan_mbedtls_mbedx509_debug_win32.props │ │ ├── conan_mbedtls_mbedx509_release_win32.props │ │ ├── conan_mbedtls_mbedx509_sanitize_win32.props │ │ ├── conan_mbedtls_mbedx509_vars_debug editable_win32.props │ │ ├── conan_mbedtls_mbedx509_vars_debug fast_win32.props │ │ ├── conan_mbedtls_mbedx509_vars_debug_win32.props │ │ ├── conan_mbedtls_mbedx509_vars_release_win32.props │ │ ├── conan_mbedtls_mbedx509_vars_sanitize_win32.props │ │ ├── conan_minizip.props │ │ ├── conan_minizip_debug editable_win32.props │ │ ├── conan_minizip_debug fast_win32.props │ │ ├── conan_minizip_debug_win32.props │ │ ├── conan_minizip_release_win32.props │ │ ├── conan_minizip_sanitize_win32.props │ │ ├── conan_minizip_vars_debug editable_win32.props │ │ ├── conan_minizip_vars_debug fast_win32.props │ │ ├── conan_minizip_vars_debug_win32.props │ │ ├── conan_minizip_vars_release_win32.props │ │ ├── conan_minizip_vars_sanitize_win32.props │ │ ├── conan_ogg.props │ │ ├── conan_ogg_ogglib.props │ │ ├── conan_ogg_ogglib_debug editable_win32.props │ │ ├── conan_ogg_ogglib_debug fast_win32.props │ │ ├── conan_ogg_ogglib_debug_win32.props │ │ ├── conan_ogg_ogglib_release_win32.props │ │ ├── conan_ogg_ogglib_sanitize_win32.props │ │ ├── conan_ogg_ogglib_vars_debug editable_win32.props │ │ ├── conan_ogg_ogglib_vars_debug fast_win32.props │ │ ├── conan_ogg_ogglib_vars_debug_win32.props │ │ ├── conan_ogg_ogglib_vars_release_win32.props │ │ ├── conan_ogg_ogglib_vars_sanitize_win32.props │ │ ├── conan_openal.props │ │ ├── conan_openal_debug editable_win32.props │ │ ├── conan_openal_debug fast_win32.props │ │ ├── conan_openal_debug_win32.props │ │ ├── conan_openal_release_win32.props │ │ ├── conan_openal_sanitize_win32.props │ │ ├── conan_openal_vars_debug editable_win32.props │ │ ├── conan_openal_vars_debug fast_win32.props │ │ ├── conan_openal_vars_debug_win32.props │ │ ├── conan_openal_vars_release_win32.props │ │ ├── conan_openal_vars_sanitize_win32.props │ │ ├── conan_opengl.props │ │ ├── conan_opengl_debug editable_win32.props │ │ ├── conan_opengl_debug fast_win32.props │ │ ├── conan_opengl_debug_win32.props │ │ ├── conan_opengl_release_win32.props │ │ ├── conan_opengl_sanitize_win32.props │ │ ├── conan_opengl_vars_debug editable_win32.props │ │ ├── conan_opengl_vars_debug fast_win32.props │ │ ├── conan_opengl_vars_debug_win32.props │ │ ├── conan_opengl_vars_release_win32.props │ │ ├── conan_opengl_vars_sanitize_win32.props │ │ ├── conan_pugixml.props │ │ ├── conan_pugixml_debug editable_win32.props │ │ ├── conan_pugixml_debug fast_win32.props │ │ ├── conan_pugixml_debug_win32.props │ │ ├── conan_pugixml_release_win32.props │ │ ├── conan_pugixml_sanitize_win32.props │ │ ├── conan_pugixml_vars_debug editable_win32.props │ │ ├── conan_pugixml_vars_debug fast_win32.props │ │ ├── conan_pugixml_vars_debug_win32.props │ │ ├── conan_pugixml_vars_release_win32.props │ │ ├── conan_pugixml_vars_sanitize_win32.props │ │ ├── conan_tinyformat.props │ │ ├── conan_tinyformat_debug editable_win32.props │ │ ├── conan_tinyformat_debug fast_win32.props │ │ ├── conan_tinyformat_debug_win32.props │ │ ├── conan_tinyformat_release_win32.props │ │ ├── conan_tinyformat_sanitize_win32.props │ │ ├── conan_tinyformat_vars_debug editable_win32.props │ │ ├── conan_tinyformat_vars_debug fast_win32.props │ │ ├── conan_tinyformat_vars_debug_win32.props │ │ ├── conan_tinyformat_vars_release_win32.props │ │ ├── conan_tinyformat_vars_sanitize_win32.props │ │ ├── conan_tracy.props │ │ ├── conan_tracy_debug editable_win32.props │ │ ├── conan_tracy_debug fast_win32.props │ │ ├── conan_tracy_debug_win32.props │ │ ├── conan_tracy_release_win32.props │ │ ├── conan_tracy_sanitize_win32.props │ │ ├── conan_tracy_vars_debug editable_win32.props │ │ ├── conan_tracy_vars_debug fast_win32.props │ │ ├── conan_tracy_vars_debug_win32.props │ │ ├── conan_tracy_vars_release_win32.props │ │ ├── conan_tracy_vars_sanitize_win32.props │ │ ├── conan_vorbis.props │ │ ├── conan_vorbis_vorbisenc-alias.props │ │ ├── conan_vorbis_vorbisenc-alias_debug editable_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_debug fast_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_debug_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_release_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_sanitize_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug editable_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug fast_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_release_win32.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_sanitize_win32.props │ │ ├── conan_vorbis_vorbisenc.props │ │ ├── conan_vorbis_vorbisenc_debug editable_win32.props │ │ ├── conan_vorbis_vorbisenc_debug fast_win32.props │ │ ├── conan_vorbis_vorbisenc_debug_win32.props │ │ ├── conan_vorbis_vorbisenc_release_win32.props │ │ ├── conan_vorbis_vorbisenc_sanitize_win32.props │ │ ├── conan_vorbis_vorbisenc_vars_debug editable_win32.props │ │ ├── conan_vorbis_vorbisenc_vars_debug fast_win32.props │ │ ├── conan_vorbis_vorbisenc_vars_debug_win32.props │ │ ├── conan_vorbis_vorbisenc_vars_release_win32.props │ │ ├── conan_vorbis_vorbisenc_vars_sanitize_win32.props │ │ ├── conan_vorbis_vorbisfile-alias.props │ │ ├── conan_vorbis_vorbisfile-alias_debug editable_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_debug fast_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_debug_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_release_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_sanitize_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug editable_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug fast_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_release_win32.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_sanitize_win32.props │ │ ├── conan_vorbis_vorbisfile.props │ │ ├── conan_vorbis_vorbisfile_debug editable_win32.props │ │ ├── conan_vorbis_vorbisfile_debug fast_win32.props │ │ ├── conan_vorbis_vorbisfile_debug_win32.props │ │ ├── conan_vorbis_vorbisfile_release_win32.props │ │ ├── conan_vorbis_vorbisfile_sanitize_win32.props │ │ ├── conan_vorbis_vorbisfile_vars_debug editable_win32.props │ │ ├── conan_vorbis_vorbisfile_vars_debug fast_win32.props │ │ ├── conan_vorbis_vorbisfile_vars_debug_win32.props │ │ ├── conan_vorbis_vorbisfile_vars_release_win32.props │ │ ├── conan_vorbis_vorbisfile_vars_sanitize_win32.props │ │ ├── conan_vorbis_vorbismain.props │ │ ├── conan_vorbis_vorbismain_debug editable_win32.props │ │ ├── conan_vorbis_vorbismain_debug fast_win32.props │ │ ├── conan_vorbis_vorbismain_debug_win32.props │ │ ├── conan_vorbis_vorbismain_release_win32.props │ │ ├── conan_vorbis_vorbismain_sanitize_win32.props │ │ ├── conan_vorbis_vorbismain_vars_debug editable_win32.props │ │ ├── conan_vorbis_vorbismain_vars_debug fast_win32.props │ │ ├── conan_vorbis_vorbismain_vars_debug_win32.props │ │ ├── conan_vorbis_vorbismain_vars_release_win32.props │ │ ├── conan_vorbis_vorbismain_vars_sanitize_win32.props │ │ ├── conan_zlib.props │ │ ├── conan_zlib_debug editable_win32.props │ │ ├── conan_zlib_debug fast_win32.props │ │ ├── conan_zlib_debug_win32.props │ │ ├── conan_zlib_release_win32.props │ │ ├── conan_zlib_sanitize_win32.props │ │ ├── conan_zlib_vars_debug editable_win32.props │ │ ├── conan_zlib_vars_debug fast_win32.props │ │ ├── conan_zlib_vars_debug_win32.props │ │ ├── conan_zlib_vars_release_win32.props │ │ ├── conan_zlib_vars_sanitize_win32.props │ │ ├── conanbuild.bat │ │ ├── conanbuildenv-debug-x86.bat │ │ ├── conanbuildenv-release-x86.bat │ │ ├── conandeps.props │ │ ├── conandeps_legacy.cmake │ │ ├── conanrun.bat │ │ ├── conanrunenv-debug-x86.bat │ │ ├── conanrunenv-release-x86.bat │ │ ├── deactivate_conanbuild.bat │ │ ├── deactivate_conanrun.bat │ │ ├── doctest-Target-debug.cmake │ │ ├── doctest-Target-release.cmake │ │ ├── doctest-config-version.cmake │ │ ├── doctest-config.cmake │ │ ├── doctest-debug-x86-data.cmake │ │ ├── doctest-release-x86-data.cmake │ │ ├── doctestTargets.cmake │ │ ├── ffmpeg-Target-debug.cmake │ │ ├── ffmpeg-Target-release.cmake │ │ ├── ffmpeg-config-version.cmake │ │ ├── ffmpeg-config.cmake │ │ ├── ffmpeg-debug-x86-data.cmake │ │ ├── ffmpeg-release-x86-data.cmake │ │ ├── ffmpegTargets.cmake │ │ ├── fltk-Target-debug.cmake │ │ ├── fltk-Target-release.cmake │ │ ├── fltk-config-version.cmake │ │ ├── fltk-config.cmake │ │ ├── fltk-debug-x86-data.cmake │ │ ├── fltk-release-x86-data.cmake │ │ ├── fltkTargets.cmake │ │ ├── glfw3-Target-debug.cmake │ │ ├── glfw3-Target-release.cmake │ │ ├── glfw3-config-version.cmake │ │ ├── glfw3-config.cmake │ │ ├── glfw3-debug-x86-data.cmake │ │ ├── glfw3-release-x86-data.cmake │ │ ├── glfw3Targets.cmake │ │ ├── minizip-Target-debug.cmake │ │ ├── minizip-Target-release.cmake │ │ ├── minizip-config-version.cmake │ │ ├── minizip-config.cmake │ │ ├── minizip-debug-x86-data.cmake │ │ ├── minizip-release-x86-data.cmake │ │ ├── minizipTargets.cmake │ │ ├── module-CURL-Target-debug.cmake │ │ ├── module-CURL-Target-release.cmake │ │ ├── module-CURL-debug-x86-data.cmake │ │ ├── module-CURL-release-x86-data.cmake │ │ ├── module-CURLTargets.cmake │ │ ├── module-JPEG-Target-debug.cmake │ │ ├── module-JPEG-Target-release.cmake │ │ ├── module-JPEG-debug-x86-data.cmake │ │ ├── module-JPEG-release-x86-data.cmake │ │ ├── module-JPEGTargets.cmake │ │ ├── module-OpenAL-Target-debug.cmake │ │ ├── module-OpenAL-Target-release.cmake │ │ ├── module-OpenAL-debug-x86-data.cmake │ │ ├── module-OpenAL-release-x86-data.cmake │ │ ├── module-OpenALTargets.cmake │ │ ├── module-PNG-Target-debug.cmake │ │ ├── module-PNG-Target-release.cmake │ │ ├── module-PNG-debug-x86-data.cmake │ │ ├── module-PNG-release-x86-data.cmake │ │ ├── module-PNGTargets.cmake │ │ ├── module-ZLIB-Target-debug.cmake │ │ ├── module-ZLIB-Target-release.cmake │ │ ├── module-ZLIB-debug-x86-data.cmake │ │ ├── module-ZLIB-release-x86-data.cmake │ │ ├── module-ZLIBTargets.cmake │ │ ├── opengl_system-Target-debug.cmake │ │ ├── opengl_system-Target-release.cmake │ │ ├── opengl_system-config-version.cmake │ │ ├── opengl_system-config.cmake │ │ ├── opengl_system-debug-x86-data.cmake │ │ ├── opengl_system-release-x86-data.cmake │ │ ├── opengl_systemTargets.cmake │ │ ├── pugixml-Target-debug.cmake │ │ ├── pugixml-Target-release.cmake │ │ ├── pugixml-config-version.cmake │ │ ├── pugixml-config.cmake │ │ ├── pugixml-debug-x86-data.cmake │ │ ├── pugixml-release-x86-data.cmake │ │ ├── pugixmlTargets.cmake │ │ ├── tinyformat-Target-debug.cmake │ │ ├── tinyformat-Target-release.cmake │ │ ├── tinyformat-config-version.cmake │ │ ├── tinyformat-config.cmake │ │ ├── tinyformat-debug-x86-data.cmake │ │ ├── tinyformat-release-x86-data.cmake │ │ ├── tinyformatTargets.cmake │ │ ├── tracy-Target-debug.cmake │ │ ├── tracy-Target-release.cmake │ │ ├── tracy-config-version.cmake │ │ ├── tracy-config.cmake │ │ ├── tracy-debug-x86-data.cmake │ │ ├── tracy-release-x86-data.cmake │ │ └── tracyTargets.cmake │ └── windows_64 │ │ ├── CURL-Target-debug.cmake │ │ ├── CURL-Target-release.cmake │ │ ├── CURL-debug-x86_64-data.cmake │ │ ├── CURL-release-x86_64-data.cmake │ │ ├── CURLConfig.cmake │ │ ├── CURLConfigVersion.cmake │ │ ├── CURLTargets.cmake │ │ ├── FindCURL.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindOpenAL.cmake │ │ ├── FindPNG.cmake │ │ ├── FindZLIB.cmake │ │ ├── JPEG-Target-debug.cmake │ │ ├── JPEG-Target-release.cmake │ │ ├── JPEG-debug-x86_64-data.cmake │ │ ├── JPEG-release-x86_64-data.cmake │ │ ├── JPEGConfig.cmake │ │ ├── JPEGConfigVersion.cmake │ │ ├── JPEGTargets.cmake │ │ ├── MbedTLS-Target-debug.cmake │ │ ├── MbedTLS-Target-release.cmake │ │ ├── MbedTLS-debug-x86_64-data.cmake │ │ ├── MbedTLS-release-x86_64-data.cmake │ │ ├── MbedTLSConfig.cmake │ │ ├── MbedTLSConfigVersion.cmake │ │ ├── MbedTLSTargets.cmake │ │ ├── Ogg-Target-debug.cmake │ │ ├── Ogg-Target-release.cmake │ │ ├── Ogg-debug-x86_64-data.cmake │ │ ├── Ogg-release-x86_64-data.cmake │ │ ├── OggConfig.cmake │ │ ├── OggConfigVersion.cmake │ │ ├── OggTargets.cmake │ │ ├── OpenAL-Target-debug.cmake │ │ ├── OpenAL-Target-release.cmake │ │ ├── OpenAL-debug-x86_64-data.cmake │ │ ├── OpenAL-release-x86_64-data.cmake │ │ ├── OpenALConfig.cmake │ │ ├── OpenALConfigVersion.cmake │ │ ├── OpenALTargets.cmake │ │ ├── PNG-Target-debug.cmake │ │ ├── PNG-Target-release.cmake │ │ ├── PNG-debug-x86_64-data.cmake │ │ ├── PNG-release-x86_64-data.cmake │ │ ├── PNGConfig.cmake │ │ ├── PNGConfigVersion.cmake │ │ ├── PNGTargets.cmake │ │ ├── Vorbis-Target-debug.cmake │ │ ├── Vorbis-Target-release.cmake │ │ ├── Vorbis-debug-x86_64-data.cmake │ │ ├── Vorbis-release-x86_64-data.cmake │ │ ├── VorbisConfig.cmake │ │ ├── VorbisConfigVersion.cmake │ │ ├── VorbisTargets.cmake │ │ ├── ZLIB-Target-debug.cmake │ │ ├── ZLIB-Target-release.cmake │ │ ├── ZLIB-debug-x86_64-data.cmake │ │ ├── ZLIB-release-x86_64-data.cmake │ │ ├── ZLIBConfig.cmake │ │ ├── ZLIBConfigVersion.cmake │ │ ├── ZLIBTargets.cmake │ │ ├── blake2-Target-debug.cmake │ │ ├── blake2-Target-release.cmake │ │ ├── blake2-config-version.cmake │ │ ├── blake2-config.cmake │ │ ├── blake2-debug-x86_64-data.cmake │ │ ├── blake2-release-x86_64-data.cmake │ │ ├── blake2Targets.cmake │ │ ├── cmakedeps_macros.cmake │ │ ├── conan_blake2.props │ │ ├── conan_blake2_debug editable_x64.props │ │ ├── conan_blake2_debug fast_x64.props │ │ ├── conan_blake2_debug_x64.props │ │ ├── conan_blake2_release_x64.props │ │ ├── conan_blake2_sanitize_x64.props │ │ ├── conan_blake2_vars_debug editable_x64.props │ │ ├── conan_blake2_vars_debug fast_x64.props │ │ ├── conan_blake2_vars_debug_x64.props │ │ ├── conan_blake2_vars_release_x64.props │ │ ├── conan_blake2_vars_sanitize_x64.props │ │ ├── conan_doctest.props │ │ ├── conan_doctest_debug editable_x64.props │ │ ├── conan_doctest_debug fast_x64.props │ │ ├── conan_doctest_debug_x64.props │ │ ├── conan_doctest_release_x64.props │ │ ├── conan_doctest_sanitize_x64.props │ │ ├── conan_doctest_vars_debug editable_x64.props │ │ ├── conan_doctest_vars_debug fast_x64.props │ │ ├── conan_doctest_vars_debug_x64.props │ │ ├── conan_doctest_vars_release_x64.props │ │ ├── conan_doctest_vars_sanitize_x64.props │ │ ├── conan_ffmpeg.props │ │ ├── conan_ffmpeg_avcodec.props │ │ ├── conan_ffmpeg_avcodec_debug editable_x64.props │ │ ├── conan_ffmpeg_avcodec_debug fast_x64.props │ │ ├── conan_ffmpeg_avcodec_debug_x64.props │ │ ├── conan_ffmpeg_avcodec_release_x64.props │ │ ├── conan_ffmpeg_avcodec_sanitize_x64.props │ │ ├── conan_ffmpeg_avcodec_vars_debug editable_x64.props │ │ ├── conan_ffmpeg_avcodec_vars_debug fast_x64.props │ │ ├── conan_ffmpeg_avcodec_vars_debug_x64.props │ │ ├── conan_ffmpeg_avcodec_vars_release_x64.props │ │ ├── conan_ffmpeg_avcodec_vars_sanitize_x64.props │ │ ├── conan_ffmpeg_avformat.props │ │ ├── conan_ffmpeg_avformat_debug editable_x64.props │ │ ├── conan_ffmpeg_avformat_debug fast_x64.props │ │ ├── conan_ffmpeg_avformat_debug_x64.props │ │ ├── conan_ffmpeg_avformat_release_x64.props │ │ ├── conan_ffmpeg_avformat_sanitize_x64.props │ │ ├── conan_ffmpeg_avformat_vars_debug editable_x64.props │ │ ├── conan_ffmpeg_avformat_vars_debug fast_x64.props │ │ ├── conan_ffmpeg_avformat_vars_debug_x64.props │ │ ├── conan_ffmpeg_avformat_vars_release_x64.props │ │ ├── conan_ffmpeg_avformat_vars_sanitize_x64.props │ │ ├── conan_ffmpeg_avutil.props │ │ ├── conan_ffmpeg_avutil_debug editable_x64.props │ │ ├── conan_ffmpeg_avutil_debug fast_x64.props │ │ ├── conan_ffmpeg_avutil_debug_x64.props │ │ ├── conan_ffmpeg_avutil_release_x64.props │ │ ├── conan_ffmpeg_avutil_sanitize_x64.props │ │ ├── conan_ffmpeg_avutil_vars_debug editable_x64.props │ │ ├── conan_ffmpeg_avutil_vars_debug fast_x64.props │ │ ├── conan_ffmpeg_avutil_vars_debug_x64.props │ │ ├── conan_ffmpeg_avutil_vars_release_x64.props │ │ ├── conan_ffmpeg_avutil_vars_sanitize_x64.props │ │ ├── conan_ffmpeg_swresample.props │ │ ├── conan_ffmpeg_swresample_debug editable_x64.props │ │ ├── conan_ffmpeg_swresample_debug fast_x64.props │ │ ├── conan_ffmpeg_swresample_debug_x64.props │ │ ├── conan_ffmpeg_swresample_release_x64.props │ │ ├── conan_ffmpeg_swresample_sanitize_x64.props │ │ ├── conan_ffmpeg_swresample_vars_debug editable_x64.props │ │ ├── conan_ffmpeg_swresample_vars_debug fast_x64.props │ │ ├── conan_ffmpeg_swresample_vars_debug_x64.props │ │ ├── conan_ffmpeg_swresample_vars_release_x64.props │ │ ├── conan_ffmpeg_swresample_vars_sanitize_x64.props │ │ ├── conan_ffmpeg_swscale.props │ │ ├── conan_ffmpeg_swscale_debug editable_x64.props │ │ ├── conan_ffmpeg_swscale_debug fast_x64.props │ │ ├── conan_ffmpeg_swscale_debug_x64.props │ │ ├── conan_ffmpeg_swscale_release_x64.props │ │ ├── conan_ffmpeg_swscale_sanitize_x64.props │ │ ├── conan_ffmpeg_swscale_vars_debug editable_x64.props │ │ ├── conan_ffmpeg_swscale_vars_debug fast_x64.props │ │ ├── conan_ffmpeg_swscale_vars_debug_x64.props │ │ ├── conan_ffmpeg_swscale_vars_release_x64.props │ │ ├── conan_ffmpeg_swscale_vars_sanitize_x64.props │ │ ├── conan_fltk.props │ │ ├── conan_fltk_debug editable_x64.props │ │ ├── conan_fltk_debug fast_x64.props │ │ ├── conan_fltk_debug_x64.props │ │ ├── conan_fltk_release_x64.props │ │ ├── conan_fltk_sanitize_x64.props │ │ ├── conan_fltk_vars_debug editable_x64.props │ │ ├── conan_fltk_vars_debug fast_x64.props │ │ ├── conan_fltk_vars_debug_x64.props │ │ ├── conan_fltk_vars_release_x64.props │ │ ├── conan_fltk_vars_sanitize_x64.props │ │ ├── conan_glfw.props │ │ ├── conan_glfw_debug editable_x64.props │ │ ├── conan_glfw_debug fast_x64.props │ │ ├── conan_glfw_debug_x64.props │ │ ├── conan_glfw_release_x64.props │ │ ├── conan_glfw_sanitize_x64.props │ │ ├── conan_glfw_vars_debug editable_x64.props │ │ ├── conan_glfw_vars_debug fast_x64.props │ │ ├── conan_glfw_vars_debug_x64.props │ │ ├── conan_glfw_vars_release_x64.props │ │ ├── conan_glfw_vars_sanitize_x64.props │ │ ├── conan_libcurl.props │ │ ├── conan_libcurl_curl.props │ │ ├── conan_libcurl_curl_debug editable_x64.props │ │ ├── conan_libcurl_curl_debug fast_x64.props │ │ ├── conan_libcurl_curl_debug_x64.props │ │ ├── conan_libcurl_curl_release_x64.props │ │ ├── conan_libcurl_curl_sanitize_x64.props │ │ ├── conan_libcurl_curl_vars_debug editable_x64.props │ │ ├── conan_libcurl_curl_vars_debug fast_x64.props │ │ ├── conan_libcurl_curl_vars_debug_x64.props │ │ ├── conan_libcurl_curl_vars_release_x64.props │ │ ├── conan_libcurl_curl_vars_sanitize_x64.props │ │ ├── conan_libjpeg.props │ │ ├── conan_libjpeg_debug editable_x64.props │ │ ├── conan_libjpeg_debug fast_x64.props │ │ ├── conan_libjpeg_debug_x64.props │ │ ├── conan_libjpeg_release_x64.props │ │ ├── conan_libjpeg_sanitize_x64.props │ │ ├── conan_libjpeg_vars_debug editable_x64.props │ │ ├── conan_libjpeg_vars_debug fast_x64.props │ │ ├── conan_libjpeg_vars_debug_x64.props │ │ ├── conan_libjpeg_vars_release_x64.props │ │ ├── conan_libjpeg_vars_sanitize_x64.props │ │ ├── conan_libpng.props │ │ ├── conan_libpng_debug editable_x64.props │ │ ├── conan_libpng_debug fast_x64.props │ │ ├── conan_libpng_debug_x64.props │ │ ├── conan_libpng_release_x64.props │ │ ├── conan_libpng_sanitize_x64.props │ │ ├── conan_libpng_vars_debug editable_x64.props │ │ ├── conan_libpng_vars_debug fast_x64.props │ │ ├── conan_libpng_vars_debug_x64.props │ │ ├── conan_libpng_vars_release_x64.props │ │ ├── conan_libpng_vars_sanitize_x64.props │ │ ├── conan_mbedtls.props │ │ ├── conan_mbedtls_libembedtls.props │ │ ├── conan_mbedtls_libembedtls_debug editable_x64.props │ │ ├── conan_mbedtls_libembedtls_debug fast_x64.props │ │ ├── conan_mbedtls_libembedtls_debug_x64.props │ │ ├── conan_mbedtls_libembedtls_release_x64.props │ │ ├── conan_mbedtls_libembedtls_sanitize_x64.props │ │ ├── conan_mbedtls_libembedtls_vars_debug editable_x64.props │ │ ├── conan_mbedtls_libembedtls_vars_debug fast_x64.props │ │ ├── conan_mbedtls_libembedtls_vars_debug_x64.props │ │ ├── conan_mbedtls_libembedtls_vars_release_x64.props │ │ ├── conan_mbedtls_libembedtls_vars_sanitize_x64.props │ │ ├── conan_mbedtls_mbedcrypto.props │ │ ├── conan_mbedtls_mbedcrypto_debug editable_x64.props │ │ ├── conan_mbedtls_mbedcrypto_debug fast_x64.props │ │ ├── conan_mbedtls_mbedcrypto_debug_x64.props │ │ ├── conan_mbedtls_mbedcrypto_release_x64.props │ │ ├── conan_mbedtls_mbedcrypto_sanitize_x64.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug editable_x64.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug fast_x64.props │ │ ├── conan_mbedtls_mbedcrypto_vars_debug_x64.props │ │ ├── conan_mbedtls_mbedcrypto_vars_release_x64.props │ │ ├── conan_mbedtls_mbedcrypto_vars_sanitize_x64.props │ │ ├── conan_mbedtls_mbedx509.props │ │ ├── conan_mbedtls_mbedx509_debug editable_x64.props │ │ ├── conan_mbedtls_mbedx509_debug fast_x64.props │ │ ├── conan_mbedtls_mbedx509_debug_x64.props │ │ ├── conan_mbedtls_mbedx509_release_x64.props │ │ ├── conan_mbedtls_mbedx509_sanitize_x64.props │ │ ├── conan_mbedtls_mbedx509_vars_debug editable_x64.props │ │ ├── conan_mbedtls_mbedx509_vars_debug fast_x64.props │ │ ├── conan_mbedtls_mbedx509_vars_debug_x64.props │ │ ├── conan_mbedtls_mbedx509_vars_release_x64.props │ │ ├── conan_mbedtls_mbedx509_vars_sanitize_x64.props │ │ ├── conan_minizip.props │ │ ├── conan_minizip_debug editable_x64.props │ │ ├── conan_minizip_debug fast_x64.props │ │ ├── conan_minizip_debug_x64.props │ │ ├── conan_minizip_release_x64.props │ │ ├── conan_minizip_sanitize_x64.props │ │ ├── conan_minizip_vars_debug editable_x64.props │ │ ├── conan_minizip_vars_debug fast_x64.props │ │ ├── conan_minizip_vars_debug_x64.props │ │ ├── conan_minizip_vars_release_x64.props │ │ ├── conan_minizip_vars_sanitize_x64.props │ │ ├── conan_ogg.props │ │ ├── conan_ogg_ogglib.props │ │ ├── conan_ogg_ogglib_debug editable_x64.props │ │ ├── conan_ogg_ogglib_debug fast_x64.props │ │ ├── conan_ogg_ogglib_debug_x64.props │ │ ├── conan_ogg_ogglib_release_x64.props │ │ ├── conan_ogg_ogglib_sanitize_x64.props │ │ ├── conan_ogg_ogglib_vars_debug editable_x64.props │ │ ├── conan_ogg_ogglib_vars_debug fast_x64.props │ │ ├── conan_ogg_ogglib_vars_debug_x64.props │ │ ├── conan_ogg_ogglib_vars_release_x64.props │ │ ├── conan_ogg_ogglib_vars_sanitize_x64.props │ │ ├── conan_openal.props │ │ ├── conan_openal_debug editable_x64.props │ │ ├── conan_openal_debug fast_x64.props │ │ ├── conan_openal_debug_x64.props │ │ ├── conan_openal_release_x64.props │ │ ├── conan_openal_sanitize_x64.props │ │ ├── conan_openal_vars_debug editable_x64.props │ │ ├── conan_openal_vars_debug fast_x64.props │ │ ├── conan_openal_vars_debug_x64.props │ │ ├── conan_openal_vars_release_x64.props │ │ ├── conan_openal_vars_sanitize_x64.props │ │ ├── conan_opengl.props │ │ ├── conan_opengl_debug editable_x64.props │ │ ├── conan_opengl_debug fast_x64.props │ │ ├── conan_opengl_debug_x64.props │ │ ├── conan_opengl_release_x64.props │ │ ├── conan_opengl_sanitize_x64.props │ │ ├── conan_opengl_vars_debug editable_x64.props │ │ ├── conan_opengl_vars_debug fast_x64.props │ │ ├── conan_opengl_vars_debug_x64.props │ │ ├── conan_opengl_vars_release_x64.props │ │ ├── conan_opengl_vars_sanitize_x64.props │ │ ├── conan_pugixml.props │ │ ├── conan_pugixml_debug editable_x64.props │ │ ├── conan_pugixml_debug fast_x64.props │ │ ├── conan_pugixml_debug_x64.props │ │ ├── conan_pugixml_release_x64.props │ │ ├── conan_pugixml_sanitize_x64.props │ │ ├── conan_pugixml_vars_debug editable_x64.props │ │ ├── conan_pugixml_vars_debug fast_x64.props │ │ ├── conan_pugixml_vars_debug_x64.props │ │ ├── conan_pugixml_vars_release_x64.props │ │ ├── conan_pugixml_vars_sanitize_x64.props │ │ ├── conan_tinyformat.props │ │ ├── conan_tinyformat_debug editable_x64.props │ │ ├── conan_tinyformat_debug fast_x64.props │ │ ├── conan_tinyformat_debug_x64.props │ │ ├── conan_tinyformat_release_x64.props │ │ ├── conan_tinyformat_sanitize_x64.props │ │ ├── conan_tinyformat_vars_debug editable_x64.props │ │ ├── conan_tinyformat_vars_debug fast_x64.props │ │ ├── conan_tinyformat_vars_debug_x64.props │ │ ├── conan_tinyformat_vars_release_x64.props │ │ ├── conan_tinyformat_vars_sanitize_x64.props │ │ ├── conan_tracy.props │ │ ├── conan_tracy_debug editable_x64.props │ │ ├── conan_tracy_debug fast_x64.props │ │ ├── conan_tracy_debug_x64.props │ │ ├── conan_tracy_release_x64.props │ │ ├── conan_tracy_sanitize_x64.props │ │ ├── conan_tracy_vars_debug editable_x64.props │ │ ├── conan_tracy_vars_debug fast_x64.props │ │ ├── conan_tracy_vars_debug_x64.props │ │ ├── conan_tracy_vars_release_x64.props │ │ ├── conan_tracy_vars_sanitize_x64.props │ │ ├── conan_vorbis.props │ │ ├── conan_vorbis_vorbisenc-alias.props │ │ ├── conan_vorbis_vorbisenc-alias_debug editable_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_debug fast_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_debug_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_release_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_sanitize_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug editable_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug fast_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_debug_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_release_x64.props │ │ ├── conan_vorbis_vorbisenc-alias_vars_sanitize_x64.props │ │ ├── conan_vorbis_vorbisenc.props │ │ ├── conan_vorbis_vorbisenc_debug editable_x64.props │ │ ├── conan_vorbis_vorbisenc_debug fast_x64.props │ │ ├── conan_vorbis_vorbisenc_debug_x64.props │ │ ├── conan_vorbis_vorbisenc_release_x64.props │ │ ├── conan_vorbis_vorbisenc_sanitize_x64.props │ │ ├── conan_vorbis_vorbisenc_vars_debug editable_x64.props │ │ ├── conan_vorbis_vorbisenc_vars_debug fast_x64.props │ │ ├── conan_vorbis_vorbisenc_vars_debug_x64.props │ │ ├── conan_vorbis_vorbisenc_vars_release_x64.props │ │ ├── conan_vorbis_vorbisenc_vars_sanitize_x64.props │ │ ├── conan_vorbis_vorbisfile-alias.props │ │ ├── conan_vorbis_vorbisfile-alias_debug editable_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_debug fast_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_debug_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_release_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_sanitize_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug editable_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug fast_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_debug_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_release_x64.props │ │ ├── conan_vorbis_vorbisfile-alias_vars_sanitize_x64.props │ │ ├── conan_vorbis_vorbisfile.props │ │ ├── conan_vorbis_vorbisfile_debug editable_x64.props │ │ ├── conan_vorbis_vorbisfile_debug fast_x64.props │ │ ├── conan_vorbis_vorbisfile_debug_x64.props │ │ ├── conan_vorbis_vorbisfile_release_x64.props │ │ ├── conan_vorbis_vorbisfile_sanitize_x64.props │ │ ├── conan_vorbis_vorbisfile_vars_debug editable_x64.props │ │ ├── conan_vorbis_vorbisfile_vars_debug fast_x64.props │ │ ├── conan_vorbis_vorbisfile_vars_debug_x64.props │ │ ├── conan_vorbis_vorbisfile_vars_release_x64.props │ │ ├── conan_vorbis_vorbisfile_vars_sanitize_x64.props │ │ ├── conan_vorbis_vorbismain.props │ │ ├── conan_vorbis_vorbismain_debug editable_x64.props │ │ ├── conan_vorbis_vorbismain_debug fast_x64.props │ │ ├── conan_vorbis_vorbismain_debug_x64.props │ │ ├── conan_vorbis_vorbismain_release_x64.props │ │ ├── conan_vorbis_vorbismain_sanitize_x64.props │ │ ├── conan_vorbis_vorbismain_vars_debug editable_x64.props │ │ ├── conan_vorbis_vorbismain_vars_debug fast_x64.props │ │ ├── conan_vorbis_vorbismain_vars_debug_x64.props │ │ ├── conan_vorbis_vorbismain_vars_release_x64.props │ │ ├── conan_vorbis_vorbismain_vars_sanitize_x64.props │ │ ├── conan_zlib.props │ │ ├── conan_zlib_debug editable_x64.props │ │ ├── conan_zlib_debug fast_x64.props │ │ ├── conan_zlib_debug_x64.props │ │ ├── conan_zlib_release_x64.props │ │ ├── conan_zlib_sanitize_x64.props │ │ ├── conan_zlib_vars_debug editable_x64.props │ │ ├── conan_zlib_vars_debug fast_x64.props │ │ ├── conan_zlib_vars_debug_x64.props │ │ ├── conan_zlib_vars_release_x64.props │ │ ├── conan_zlib_vars_sanitize_x64.props │ │ ├── conanbuild.bat │ │ ├── conanbuildenv-debug-x86_64.bat │ │ ├── conanbuildenv-release-x86_64.bat │ │ ├── conandeps.props │ │ ├── conandeps_legacy.cmake │ │ ├── conanrun.bat │ │ ├── conanrunenv-debug-x86_64.bat │ │ ├── conanrunenv-release-x86_64.bat │ │ ├── deactivate_conanbuild.bat │ │ ├── deactivate_conanrun.bat │ │ ├── doctest-Target-debug.cmake │ │ ├── doctest-Target-release.cmake │ │ ├── doctest-config-version.cmake │ │ ├── doctest-config.cmake │ │ ├── doctest-debug-x86_64-data.cmake │ │ ├── doctest-release-x86_64-data.cmake │ │ ├── doctestTargets.cmake │ │ ├── ffmpeg-Target-debug.cmake │ │ ├── ffmpeg-Target-release.cmake │ │ ├── ffmpeg-config-version.cmake │ │ ├── ffmpeg-config.cmake │ │ ├── ffmpeg-debug-x86_64-data.cmake │ │ ├── ffmpeg-release-x86_64-data.cmake │ │ ├── ffmpegTargets.cmake │ │ ├── fltk-Target-debug.cmake │ │ ├── fltk-Target-release.cmake │ │ ├── fltk-config-version.cmake │ │ ├── fltk-config.cmake │ │ ├── fltk-debug-x86_64-data.cmake │ │ ├── fltk-release-x86_64-data.cmake │ │ ├── fltkTargets.cmake │ │ ├── glfw3-Target-debug.cmake │ │ ├── glfw3-Target-release.cmake │ │ ├── glfw3-config-version.cmake │ │ ├── glfw3-config.cmake │ │ ├── glfw3-debug-x86_64-data.cmake │ │ ├── glfw3-release-x86_64-data.cmake │ │ ├── glfw3Targets.cmake │ │ ├── minizip-Target-debug.cmake │ │ ├── minizip-Target-release.cmake │ │ ├── minizip-config-version.cmake │ │ ├── minizip-config.cmake │ │ ├── minizip-debug-x86_64-data.cmake │ │ ├── minizip-release-x86_64-data.cmake │ │ ├── minizipTargets.cmake │ │ ├── module-CURL-Target-debug.cmake │ │ ├── module-CURL-Target-release.cmake │ │ ├── module-CURL-debug-x86_64-data.cmake │ │ ├── module-CURL-release-x86_64-data.cmake │ │ ├── module-CURLTargets.cmake │ │ ├── module-JPEG-Target-debug.cmake │ │ ├── module-JPEG-Target-release.cmake │ │ ├── module-JPEG-debug-x86_64-data.cmake │ │ ├── module-JPEG-release-x86_64-data.cmake │ │ ├── module-JPEGTargets.cmake │ │ ├── module-OpenAL-Target-debug.cmake │ │ ├── module-OpenAL-Target-release.cmake │ │ ├── module-OpenAL-debug-x86_64-data.cmake │ │ ├── module-OpenAL-release-x86_64-data.cmake │ │ ├── module-OpenALTargets.cmake │ │ ├── module-PNG-Target-debug.cmake │ │ ├── module-PNG-Target-release.cmake │ │ ├── module-PNG-debug-x86_64-data.cmake │ │ ├── module-PNG-release-x86_64-data.cmake │ │ ├── module-PNGTargets.cmake │ │ ├── module-ZLIB-Target-debug.cmake │ │ ├── module-ZLIB-Target-release.cmake │ │ ├── module-ZLIB-debug-x86_64-data.cmake │ │ ├── module-ZLIB-release-x86_64-data.cmake │ │ ├── module-ZLIBTargets.cmake │ │ ├── opengl_system-Target-debug.cmake │ │ ├── opengl_system-Target-release.cmake │ │ ├── opengl_system-config-version.cmake │ │ ├── opengl_system-config.cmake │ │ ├── opengl_system-debug-x86_64-data.cmake │ │ ├── opengl_system-release-x86_64-data.cmake │ │ ├── opengl_systemTargets.cmake │ │ ├── pugixml-Target-debug.cmake │ │ ├── pugixml-Target-release.cmake │ │ ├── pugixml-config-version.cmake │ │ ├── pugixml-config.cmake │ │ ├── pugixml-debug-x86_64-data.cmake │ │ ├── pugixml-release-x86_64-data.cmake │ │ ├── pugixmlTargets.cmake │ │ ├── tinyformat-Target-debug.cmake │ │ ├── tinyformat-Target-release.cmake │ │ ├── tinyformat-config-version.cmake │ │ ├── tinyformat-config.cmake │ │ ├── tinyformat-debug-x86_64-data.cmake │ │ ├── tinyformat-release-x86_64-data.cmake │ │ ├── tinyformatTargets.cmake │ │ ├── tracy-Target-debug.cmake │ │ ├── tracy-Target-release.cmake │ │ ├── tracy-config-version.cmake │ │ ├── tracy-config.cmake │ │ ├── tracy-debug-x86_64-data.cmake │ │ ├── tracy-release-x86_64-data.cmake │ │ └── tracyTargets.cmake ├── conanfile.py ├── custom │ ├── blake2 │ │ ├── LICENSE.txt │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ └── src │ │ │ └── CMakeLists.txt │ ├── ffmpeg │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ ├── conanfile.py.original │ │ └── patches │ │ │ ├── 4.2-0001-fix-aom_codec_av1_dx_algo.patch │ │ │ ├── 4.4-0001-fix-aom_codec_av1_dx_algo.patch │ │ │ ├── 4.4-fix-negative-shift-in-assembly.patch │ │ │ ├── 5.0-0001-fix-hwcontext_vulkan.patch │ │ │ ├── 5.1-0001-fix-libsvtav1-compressed_ten_bit_format.patch │ │ │ ├── 5.1-0002-fix-libsvtav1-vbv_bufsize-1.patch │ │ │ └── 5.1-0003-fix-libsvtav1-vbv_bufsize-2.patch │ ├── fltk │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ ├── conanfile.py.original │ │ └── patches │ │ │ ├── 1.3.8-0001-remove-fluid.patch │ │ │ ├── 1.3.8-0002-fix-resources.patch │ │ │ └── 1.3.8-0003-build-static-only-on-static.patch │ ├── libcurl │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ ├── conanfile.py.original │ │ └── lib_Makefile_add.am │ ├── libjpeg │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ ├── conanfile.py.original │ │ └── patches │ │ │ ├── 0001-9e-libjpeg-add-msvc-dll-support.patch │ │ │ ├── 0001-9f-libjpeg-add-msvc-dll-support.patch │ │ │ ├── 0001-libjpeg-add-msvc-dll-support.patch │ │ │ ├── 9f-tdm-boolean-always-unsigned-char.patch │ │ │ └── tdm-boolean-always-unsigned-char.patch │ ├── openal │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ └── patches │ │ │ ├── 1.19.1-0001-aligned-alloc.patch │ │ │ ├── 1.19.1-0002-gcc-10-fnocommon.patch │ │ │ ├── 1.19.1-0003-fix-windows-sdk.patch │ │ │ ├── 1.20.1-0001-fix-windows-sdk.patch │ │ │ ├── 1.21.0-0001-c++14-does-not-have-std-aligned_alloc.patch │ │ │ ├── 1.21.0-0002-fix-windows-sdk.patch │ │ │ ├── 1.21.1-tdm-mxcsr-availability.patch │ │ │ ├── 1.22.2-0001-fix-al-optional-in-if-compile-error.patch │ │ │ ├── 1.22.2-0002-fix-pulseaudio-find-package-vars.patch │ │ │ └── 1.22.2-tdm-mxcsr-availability.patch │ ├── tinyformat │ │ ├── conandata.yml │ │ └── conanfile.py │ ├── tracy │ │ ├── conandata.yml │ │ ├── conanfile.py │ │ └── patches │ │ │ └── 0.10 │ │ │ └── RecreateQueries.patch │ └── xorg │ │ ├── conanfile.py │ │ └── conanfile.py.original ├── packages.yaml ├── profiles │ ├── arch_32 │ ├── arch_64 │ ├── base_linux │ ├── base_windows │ ├── build_debug │ ├── build_debugfast │ ├── build_debugfast.py │ ├── build_release │ ├── os_linux │ └── os_windows ├── readme.md ├── tdm_deploy.py └── use_artefacts.cmake ├── TypeInfo ├── TypeInfoGen.cpp ├── TypeInfoGen.h └── main.cpp ├── appveyor.yml ├── base └── default.cfg ├── cm ├── CollisionModel.h ├── CollisionModel_contacts.cpp ├── CollisionModel_contents.cpp ├── CollisionModel_debug.cpp ├── CollisionModel_files.cpp ├── CollisionModel_load.cpp ├── CollisionModel_local.h ├── CollisionModel_rotate.cpp ├── CollisionModel_trace.cpp └── CollisionModel_translate.cpp ├── engine.vcxproj ├── engine.vcxproj.filters ├── engine.vcxproj.user ├── framework ├── BuildDefines.h ├── CVarSystem.cpp ├── CVarSystem.h ├── CmdSystem.cpp ├── CmdSystem.h ├── Common.cpp ├── Common.h ├── CompressionParameters.h ├── Compressor.cpp ├── Compressor.h ├── Console.cpp ├── Console.h ├── DeclAF.cpp ├── DeclAF.h ├── DeclEntityDef.cpp ├── DeclEntityDef.h ├── DeclFX.cpp ├── DeclFX.h ├── DeclManager.cpp ├── DeclManager.h ├── DeclParticle.cpp ├── DeclParticle.h ├── DeclSkin.cpp ├── DeclSkin.h ├── DeclSubtitles.cpp ├── DeclSubtitles.h ├── DeclTable.cpp ├── DeclTable.h ├── DemoFile.cpp ├── DemoFile.h ├── EditField.cpp ├── EditField.h ├── EventLoop.cpp ├── EventLoop.h ├── File.cpp ├── File.h ├── FileSystem.cpp ├── FileSystem.h ├── GamepadInput.cpp ├── GamepadInput.h ├── I18N.cpp ├── I18N.h ├── KeyInput.cpp ├── KeyInput.h ├── Licensee.h ├── LoadStack.cpp ├── LoadStack.h ├── Session.cpp ├── Session.h ├── Session_local.h ├── Session_menu.cpp ├── Tracing.cpp ├── Tracing.h ├── TracingEmbeddedSourceCode.cpp ├── UsercmdGen.cpp ├── UsercmdGen.h ├── async │ ├── AsyncClient.cpp │ ├── AsyncClient.h │ ├── AsyncNetwork.cpp │ ├── AsyncNetwork.h │ ├── AsyncServer.cpp │ ├── AsyncServer.h │ ├── MsgChannel.cpp │ ├── MsgChannel.h │ ├── NetworkSystem.cpp │ ├── NetworkSystem.h │ ├── ServerScan.cpp │ └── ServerScan.h └── minizip │ ├── minizip_extra.c │ ├── minizip_extra.h │ ├── minizip_info.txt │ └── minizip_private.h ├── game ├── AF.cpp ├── AF.h ├── AFEntity.cpp ├── AFEntity.h ├── AIComm_Message.cpp ├── AIComm_Message.h ├── AIVehicle.cpp ├── AIVehicle.h ├── AbsenceMarker.cpp ├── AbsenceMarker.h ├── Actor.cpp ├── Actor.h ├── BinaryFrobMover.cpp ├── BinaryFrobMover.h ├── BloodMarker.cpp ├── BloodMarker.h ├── BrittleFracture.cpp ├── BrittleFracture.h ├── ButtonStateTracker.cpp ├── ButtonStateTracker.h ├── Camera.cpp ├── Camera.h ├── DarkModGlobals.cpp ├── DarkModGlobals.h ├── DarkmodAASHidingSpotFinder.cpp ├── DarkmodAASHidingSpotFinder.h ├── DifficultyManager.cpp ├── DifficultyManager.h ├── DifficultySettings.cpp ├── DifficultySettings.h ├── DownloadMenu.cpp ├── DownloadMenu.h ├── Emitter.cpp ├── Emitter.h ├── Entity.cpp ├── Entity.h ├── EntityList.cpp ├── EntityList.h ├── EscapePointEvaluator.cpp ├── EscapePointEvaluator.h ├── EscapePointManager.cpp ├── EscapePointManager.h ├── FX.cpp ├── FX.h ├── Force_Grab.cpp ├── Force_Grab.h ├── FrobButton.cpp ├── FrobButton.h ├── FrobDoor.cpp ├── FrobDoor.h ├── FrobDoorHandle.cpp ├── FrobDoorHandle.h ├── FrobHandle.cpp ├── FrobHandle.h ├── FrobHelper.cpp ├── FrobHelper.h ├── FrobLever.cpp ├── FrobLever.h ├── FrobLock.cpp ├── FrobLock.h ├── FrobLockHandle.cpp ├── FrobLockHandle.h ├── Func_Shooter.cpp ├── Func_Shooter.h ├── Game.h ├── GameEdit.cpp ├── GameEdit.h ├── GamePlayTimer.h ├── Game_local.cpp ├── Game_local.h ├── Game_network.cpp ├── Grabber.cpp ├── Grabber.h ├── HidingSpotSearchCollection.cpp ├── HidingSpotSearchCollection.h ├── Http │ ├── HttpConnection.cpp │ ├── HttpConnection.h │ ├── HttpRequest.cpp │ ├── HttpRequest.h │ ├── MessageTcp.cpp │ └── MessageTcp.h ├── IK.cpp ├── IK.h ├── IniFile.cpp ├── IniFile.h ├── Intersection.cpp ├── Intersection.h ├── Inventory │ ├── Category.cpp │ ├── Category.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Inventory.cpp │ ├── Inventory.h │ ├── InventoryItem.cpp │ ├── InventoryItem.h │ ├── LootType.h │ ├── WeaponItem.cpp │ └── WeaponItem.h ├── Item.cpp ├── Item.h ├── Light.cpp ├── Light.h ├── LightController.cpp ├── LightController.h ├── LightEstimateSystem.cpp ├── LightEstimateSystem.h ├── LightGem.cpp ├── LightGem.h ├── Liquid.cpp ├── Liquid.h ├── Listener.cpp ├── Listener.h ├── LodComponent.cpp ├── LodComponent.h ├── MatrixSq.h ├── MeleeWeapon.cpp ├── MeleeWeapon.h ├── Misc.cpp ├── Misc.h ├── Missions │ ├── Download.cpp │ ├── Download.h │ ├── DownloadManager.cpp │ ├── DownloadManager.h │ ├── MissionDB.cpp │ ├── MissionDB.h │ ├── MissionManager.cpp │ ├── MissionManager.h │ ├── ModInfo.cpp │ ├── ModInfo.h │ ├── ModInfoDecl.cpp │ └── ModInfoDecl.h ├── ModMenu.cpp ├── ModMenu.h ├── ModelGenerator.cpp ├── ModelGenerator.h ├── Moveable.cpp ├── Moveable.h ├── Mover.cpp ├── Mover.h ├── MultiStateMover.cpp ├── MultiStateMover.h ├── MultiStateMoverButton.cpp ├── MultiStateMoverButton.h ├── MultiStateMoverPosition.cpp ├── MultiStateMoverPosition.h ├── MultiplayerGame.cpp ├── MultiplayerGame.h ├── Objectives │ ├── BoolParseNode.h │ ├── CampaignStatistics.cpp │ ├── CampaignStatistics.h │ ├── EMissionResult.h │ ├── MissionData.cpp │ ├── MissionData.h │ ├── MissionStatistics.cpp │ ├── MissionStatistics.h │ ├── Objective.cpp │ ├── Objective.h │ ├── ObjectiveComponent.cpp │ ├── ObjectiveComponent.h │ ├── ObjectiveCondition.cpp │ ├── ObjectiveCondition.h │ ├── ObjectiveLocation.cpp │ └── ObjectiveLocation.h ├── OverlaySys.cpp ├── OverlaySys.h ├── PVSToAASMapping.cpp ├── PVSToAASMapping.h ├── PickableLock.cpp ├── PickableLock.h ├── Player.cpp ├── Player.h ├── PlayerIcon.cpp ├── PlayerIcon.h ├── PlayerView.cpp ├── PlayerView.h ├── PositionWithinRangeFinder.cpp ├── PositionWithinRangeFinder.h ├── Projectile.cpp ├── Projectile.h ├── ProjectileResult.cpp ├── ProjectileResult.h ├── Pvs.cpp ├── Pvs.h ├── RawVector.cpp ├── RawVector.h ├── Relations.cpp ├── Relations.h ├── SEED.cpp ├── SEED.h ├── SearchManager.cpp ├── SearchManager.h ├── SecurityCamera.cpp ├── SecurityCamera.h ├── Shop │ ├── LootRuleSet.cpp │ ├── LootRuleSet.h │ ├── Shop.cpp │ ├── Shop.h │ ├── ShopItem.cpp │ └── ShopItem.h ├── SmokeParticles.cpp ├── SmokeParticles.h ├── SndProp.cpp ├── SndProp.h ├── SndPropLoader.cpp ├── SndPropLoader.h ├── Sound.cpp ├── Sound.h ├── StaticMulti.cpp ├── StaticMulti.h ├── StimResponse │ ├── Response.cpp │ ├── Response.h │ ├── ResponseEffect.cpp │ ├── ResponseEffect.h │ ├── Stim.cpp │ ├── Stim.h │ ├── StimResponse.cpp │ ├── StimResponse.h │ ├── StimResponseCollection.cpp │ ├── StimResponseCollection.h │ ├── StimResponseTimer.cpp │ ├── StimResponseTimer.h │ └── StimType.h ├── Target.cpp ├── Target.h ├── TimerManager.cpp ├── TimerManager.h ├── Trigger.cpp ├── Trigger.h ├── Turret.cpp ├── Turret.h ├── UserManager.cpp ├── UserManager.h ├── Weapon.cpp ├── Weapon.h ├── WorldSpawn.cpp ├── WorldSpawn.h ├── ZipLoader │ ├── ZipLoader.cpp │ └── ZipLoader.h ├── ai │ ├── AAS.cpp │ ├── AAS.h │ ├── AAS_debug.cpp │ ├── AAS_local.h │ ├── AAS_pathing.cpp │ ├── AAS_routing.cpp │ ├── AI.cpp │ ├── AI.h │ ├── AI_events.cpp │ ├── AI_pathing.cpp │ ├── AreaManager.cpp │ ├── AreaManager.h │ ├── CommunicationSubsystem.cpp │ ├── CommunicationSubsystem.h │ ├── Conversation │ │ ├── Conversation.cpp │ │ ├── Conversation.h │ │ ├── ConversationCommand.cpp │ │ ├── ConversationCommand.h │ │ ├── ConversationSystem.cpp │ │ └── ConversationSystem.h │ ├── DoorInfo.cpp │ ├── DoorInfo.h │ ├── EAS │ │ ├── ClusterInfo.h │ │ ├── EAS.cpp │ │ ├── EAS.h │ │ ├── ElevatorStationInfo.h │ │ ├── RouteInfo.cpp │ │ ├── RouteInfo.h │ │ ├── RouteNode.cpp │ │ └── RouteNode.h │ ├── Library.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Mind.cpp │ ├── Mind.h │ ├── MoveState.cpp │ ├── MoveState.h │ ├── MovementSubsystem.cpp │ ├── MovementSubsystem.h │ ├── Queue.h │ ├── States │ │ ├── AgitatedSearchingState.cpp │ │ ├── AgitatedSearchingState.h │ │ ├── AgitatedSearchingStateLanternBot.cpp │ │ ├── AgitatedSearchingStateLanternBot.h │ │ ├── AlertIdleState.cpp │ │ ├── AlertIdleState.h │ │ ├── BlindedState.cpp │ │ ├── BlindedState.h │ │ ├── CombatState.cpp │ │ ├── CombatState.h │ │ ├── ConversationState.cpp │ │ ├── ConversationState.h │ │ ├── DeadState.cpp │ │ ├── DeadState.h │ │ ├── EmergeFromCoverState.cpp │ │ ├── EmergeFromCoverState.h │ │ ├── ExamineRopeState.cpp │ │ ├── ExamineRopeState.h │ │ ├── FailedKnockoutState.cpp │ │ ├── FailedKnockoutState.h │ │ ├── FleeDoneState.cpp │ │ ├── FleeDoneState.h │ │ ├── FleeState.cpp │ │ ├── FleeState.h │ │ ├── HitByMoveableState.cpp │ │ ├── HitByMoveableState.h │ │ ├── IdleSleepState.cpp │ │ ├── IdleSleepState.h │ │ ├── IdleState.cpp │ │ ├── IdleState.h │ │ ├── KnockedOutState.cpp │ │ ├── KnockedOutState.h │ │ ├── LostTrackOfEnemyState.cpp │ │ ├── LostTrackOfEnemyState.h │ │ ├── ObservantState.cpp │ │ ├── ObservantState.h │ │ ├── PainState.cpp │ │ ├── PainState.h │ │ ├── PocketPickedState.cpp │ │ ├── PocketPickedState.h │ │ ├── SearchingState.cpp │ │ ├── SearchingState.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── StayInCoverState.cpp │ │ ├── StayInCoverState.h │ │ ├── SuspiciousState.cpp │ │ ├── SuspiciousState.h │ │ ├── SwitchOnLightState.cpp │ │ ├── SwitchOnLightState.h │ │ ├── TakeCoverState.cpp │ │ ├── TakeCoverState.h │ │ ├── UnreachableTargetState.cpp │ │ └── UnreachableTargetState.h │ ├── Subsystem.cpp │ ├── Subsystem.h │ ├── Tasks │ │ ├── AnimalPatrolTask.cpp │ │ ├── AnimalPatrolTask.h │ │ ├── ChaseEnemyRangedTask.cpp │ │ ├── ChaseEnemyRangedTask.h │ │ ├── ChaseEnemyTask.cpp │ │ ├── ChaseEnemyTask.h │ │ ├── CombatTask.cpp │ │ ├── CombatTask.h │ │ ├── CommWaitTask.cpp │ │ ├── CommWaitTask.h │ │ ├── CommunicationTask.cpp │ │ ├── CommunicationTask.h │ │ ├── FleeTask.cpp │ │ ├── FleeTask.h │ │ ├── FollowActorTask.cpp │ │ ├── FollowActorTask.h │ │ ├── GreetingBarkTask.cpp │ │ ├── GreetingBarkTask.h │ │ ├── GuardSpotTask.cpp │ │ ├── GuardSpotTask.h │ │ ├── HandleDoorTask.cpp │ │ ├── HandleDoorTask.h │ │ ├── HandleElevatorTask.cpp │ │ ├── HandleElevatorTask.h │ │ ├── IdleAnimationTask.cpp │ │ ├── IdleAnimationTask.h │ │ ├── InteractionTask.cpp │ │ ├── InteractionTask.h │ │ ├── InvestigateSpotTask.cpp │ │ ├── InvestigateSpotTask.h │ │ ├── MeleeCombatTask.cpp │ │ ├── MeleeCombatTask.h │ │ ├── MoveToCoverTask.cpp │ │ ├── MoveToCoverTask.h │ │ ├── MoveToPositionTask.cpp │ │ ├── MoveToPositionTask.h │ │ ├── PathAnimTask.cpp │ │ ├── PathAnimTask.h │ │ ├── PathCornerTask.cpp │ │ ├── PathCornerTask.h │ │ ├── PathCycleAnimTask.cpp │ │ ├── PathCycleAnimTask.h │ │ ├── PathHideTask.cpp │ │ ├── PathHideTask.h │ │ ├── PathInteractTask.cpp │ │ ├── PathInteractTask.h │ │ ├── PathLookatTask.cpp │ │ ├── PathLookatTask.h │ │ ├── PathSetMovetypeTask.cpp │ │ ├── PathSetMovetypeTask.h │ │ ├── PathShowTask.cpp │ │ ├── PathShowTask.h │ │ ├── PathSitTask.cpp │ │ ├── PathSitTask.h │ │ ├── PathSleepTask.cpp │ │ ├── PathSleepTask.h │ │ ├── PathTask.cpp │ │ ├── PathTask.h │ │ ├── PathTurnTask.cpp │ │ ├── PathTurnTask.h │ │ ├── PathWaitForTriggerTask.cpp │ │ ├── PathWaitForTriggerTask.h │ │ ├── PathWaitTask.cpp │ │ ├── PathWaitTask.h │ │ ├── PathWakeupTask.cpp │ │ ├── PathWakeupTask.h │ │ ├── PlayAnimationTask.cpp │ │ ├── PlayAnimationTask.h │ │ ├── RandomHeadturnTask.cpp │ │ ├── RandomHeadturnTask.h │ │ ├── RandomTurningTask.cpp │ │ ├── RandomTurningTask.h │ │ ├── RangedCombatTask.cpp │ │ ├── RangedCombatTask.h │ │ ├── RepeatedBarkTask.cpp │ │ ├── RepeatedBarkTask.h │ │ ├── ResolveMovementBlockTask.cpp │ │ ├── ResolveMovementBlockTask.h │ │ ├── ScriptTask.cpp │ │ ├── ScriptTask.h │ │ ├── SingleBarkTask.cpp │ │ ├── SingleBarkTask.h │ │ ├── Task.h │ │ ├── ThrowObjectTask.cpp │ │ ├── ThrowObjectTask.h │ │ ├── WaitTask.cpp │ │ ├── WaitTask.h │ │ ├── WanderInLocationTask.cpp │ │ └── WanderInLocationTask.h │ ├── tdmAASFindEscape.cpp │ └── tdmAASFindEscape.h ├── anim │ ├── Anim.cpp │ ├── Anim.h │ ├── Anim_Blend.cpp │ ├── Anim_Import.cpp │ ├── Anim_Testmodel.cpp │ └── Anim_Testmodel.h ├── darkModLAS.cpp ├── darkModLAS.h ├── darkmodHidingSpotTree.cpp ├── darkmodHidingSpotTree.h ├── declxdata.cpp ├── declxdata.h ├── game.def ├── gamesys │ ├── Automation.cpp │ ├── Automation.h │ ├── Automation_local.h │ ├── Callbacks.cpp │ ├── Class.cpp │ ├── Class.h │ ├── DebugGraph.cpp │ ├── DebugGraph.h │ ├── Event.cpp │ ├── Event.h │ ├── EventArgs.h │ ├── NoGameTypeInfo.h │ ├── SaveGame.cpp │ ├── SaveGame.h │ ├── SysCmds.cpp │ ├── SysCmds.h │ ├── SysCvar.cpp │ ├── SysCvar.h │ ├── TypeInfo.cpp │ ├── TypeInfo.h │ ├── TypeInfo_GenHelper.cpp │ └── TypeInfo_GenHelper.h ├── physics │ ├── Clip.cpp │ ├── Clip.h │ ├── Force.cpp │ ├── Force.h │ ├── Force_Constant.cpp │ ├── Force_Constant.h │ ├── Force_Drag.cpp │ ├── Force_Drag.h │ ├── Force_Field.cpp │ ├── Force_Field.h │ ├── Force_Push.cpp │ ├── Force_Push.h │ ├── Force_Spring.cpp │ ├── Force_Spring.h │ ├── Physics.cpp │ ├── Physics.h │ ├── Physics_AF.cpp │ ├── Physics_AF.h │ ├── Physics_Actor.cpp │ ├── Physics_Actor.h │ ├── Physics_Base.cpp │ ├── Physics_Base.h │ ├── Physics_Liquid.cpp │ ├── Physics_Liquid.h │ ├── Physics_Monster.cpp │ ├── Physics_Monster.h │ ├── Physics_Parametric.cpp │ ├── Physics_Parametric.h │ ├── Physics_Player.cpp │ ├── Physics_Player.h │ ├── Physics_RigidBody.cpp │ ├── Physics_RigidBody.h │ ├── Physics_Static.cpp │ ├── Physics_Static.h │ ├── Physics_StaticMulti.cpp │ ├── Physics_StaticMulti.h │ ├── Push.cpp │ └── Push.h ├── precompiled_game.cpp ├── precompiled_game.h └── script │ ├── Script_Compiler.cpp │ ├── Script_Compiler.h │ ├── Script_Doc_Export.cpp │ ├── Script_Doc_Export.h │ ├── Script_Interpreter.cpp │ ├── Script_Interpreter.h │ ├── Script_Program.cpp │ ├── Script_Program.h │ ├── Script_Thread.cpp │ └── Script_Thread.h ├── gen_svnversion.cmd ├── glprogs ├── HeatHazeWithMaskAndDepth.fs ├── HeatHazeWithMaskAndDepth.vs ├── ambientEnvironment.fs ├── ambientEnvironment.vs ├── bloom_apply.frag.glsl ├── bloom_downsample.frag.glsl ├── bloom_upsample.frag.glsl ├── doublevision.fs ├── doublevision.vs ├── fresnel.fs ├── fresnel.vs ├── fullscreen_tri.vert.glsl ├── gaussian_blur.frag.glsl ├── heatHaze.fs ├── heatHaze.vs ├── heatHazeCommon.glsl ├── heatHazeWithAlphaDepth.fs ├── heatHazeWithAlphaDepth.vs ├── heatHazeWithDepth.fs ├── heatHazeWithDepth.vs ├── heatHazeWithMask.fs ├── heatHazeWithMask.vs ├── heatHazeWithMaskAndBlur.fs ├── heatHazeWithMaskAndBlur.vs ├── heatHaze_v2.fs ├── heatHaze_v2.vs ├── heatHaze_v2.vs.glsl ├── parallaxCubeReflect.fs ├── parallaxCubeReflect.vs ├── renderTools.fs ├── renderTools.vs ├── rotoedge.fs ├── rotoedge.vs ├── ssao.frag.glsl ├── ssao.vert.glsl ├── ssao_blur.frag.glsl ├── ssao_depth.frag.glsl ├── ssao_depthmip.frag.glsl ├── ssao_show.frag.glsl ├── stages │ ├── depth │ │ ├── depth.frag.glsl │ │ └── depth.vert.glsl │ ├── frob │ │ ├── frob.vert.glsl │ │ ├── frob_apply.frag.glsl │ │ ├── frob_extrude.geom.glsl │ │ ├── frob_flat.frag.glsl │ │ ├── frob_highlight.frag.glsl │ │ └── frob_modalpha.frag.glsl │ ├── interaction │ │ ├── interaction.ambient.fs.glsl │ │ ├── interaction.ambient.vs.glsl │ │ ├── interaction.common.fs.glsl │ │ ├── interaction.common.vs.glsl │ │ ├── interaction.shadowmap.fs.glsl │ │ ├── interaction.shadowmap.vs.glsl │ │ ├── interaction.stencil.fs.glsl │ │ └── interaction.stencil.vs.glsl │ ├── light_passes │ │ ├── blend_light.frag.glsl │ │ ├── blend_light.vert.glsl │ │ ├── fog_light.frag.glsl │ │ └── fog_light.vert.glsl │ ├── shadow_map │ │ ├── shadow_map.frag.glsl │ │ └── shadow_map.vert.glsl │ ├── stencil │ │ └── stencil_shadow.vert.glsl │ ├── surface_passes │ │ ├── environment.frag.glsl │ │ ├── environment.vert.glsl │ │ ├── simple_texture.frag.glsl │ │ ├── simple_texture.vert.glsl │ │ ├── soft_particle.frag.glsl │ │ ├── soft_particle.vert.glsl │ │ └── texgen_shared.glsl │ └── tonemap │ │ └── tonemap.frag.glsl ├── tdm_compression.glsl ├── tdm_constants_shared.glsl ├── tdm_dither.glsl ├── tdm_interaction.glsl ├── tdm_lightproject.glsl ├── tdm_parallax.glsl ├── tdm_poissondisk.glsl ├── tdm_querylod.glsl ├── tdm_shadowmaps.glsl ├── tdm_shadowstencilsoft.glsl ├── tdm_shadowstencilsoft_shared.glsl ├── tdm_transform.glsl ├── tdm_utils.glsl ├── testImageCube.fs ├── testImageCube.vs ├── tiled_custom_mipmap.frag.glsl ├── volumetric.vs ├── volumetric_blur.fs ├── volumetric_common.glsl ├── volumetric_compositing.fs └── volumetric_raymarching.fs ├── idlib ├── Allocators.h ├── BitMsg.cpp ├── BitMsg.h ├── CmdArgs.cpp ├── CmdArgs.h ├── Debug.cpp ├── Debug.h ├── Dict.cpp ├── Dict.h ├── Heap.cpp ├── Heap.h ├── Heap_Embedded.cpp ├── Heap_Embedded.h ├── LangDict.cpp ├── LangDict.h ├── Lexer.cpp ├── Lexer.h ├── Lib.cpp ├── Lib.h ├── MapFile.cpp ├── MapFile.h ├── ParallelJobList.cpp ├── ParallelJobList.h ├── ParallelJobList_JobHeaders.h ├── Parser.cpp ├── Parser.h ├── RevisionTracker.cpp ├── RevisionTracker.h ├── StdFilesystem.cpp ├── StdFilesystem.h ├── StdString.cpp ├── StdString.h ├── Str.cpp ├── Str.h ├── Thread.cpp ├── Thread.h ├── Timer.cpp ├── Timer.h ├── Token.cpp ├── Token.h ├── bv │ ├── Bounds.cpp │ ├── Bounds.h │ ├── Box.cpp │ ├── Box.h │ ├── BoxOctree.cpp │ ├── BoxOctree.h │ ├── Bvh.cpp │ ├── Bvh.h │ ├── CircCone.cpp │ ├── CircCone.h │ ├── Frustum.cpp │ ├── Frustum.h │ ├── Sphere.cpp │ └── Sphere.h ├── containers │ ├── BTree.h │ ├── BinHeap.h │ ├── BinSearch.cpp │ ├── BinSearch.h │ ├── BitArray.cpp │ ├── BitArray.h │ ├── DisjointSets.cpp │ ├── DisjointSets.h │ ├── FlexList.h │ ├── HashIndex.cpp │ ├── HashIndex.h │ ├── HashMap.cpp │ ├── HashMap.h │ ├── HashTable.h │ ├── Hierarchy.h │ ├── LinkList.cpp │ ├── LinkList.h │ ├── List.h │ ├── PlaneSet.cpp │ ├── PlaneSet.h │ ├── ProducerConsumerQueue.h │ ├── Queue.h │ ├── Stack.h │ ├── StaticList.h │ ├── StrList.h │ ├── StrPool.cpp │ ├── StrPool.h │ └── VectorSet.h ├── geometry │ ├── DrawVert.cpp │ ├── DrawVert.h │ ├── JointTransform.cpp │ ├── JointTransform.h │ ├── RenderMatrix.cpp │ ├── RenderMatrix.h │ ├── Surface.cpp │ ├── Surface.h │ ├── Surface_Patch.cpp │ ├── Surface_Patch.h │ ├── Surface_Polytope.cpp │ ├── Surface_Polytope.h │ ├── Surface_SweptSpline.cpp │ ├── Surface_SweptSpline.h │ ├── TraceModel.cpp │ ├── TraceModel.h │ ├── Winding.cpp │ ├── Winding.h │ ├── Winding2D.cpp │ ├── Winding2D.h │ └── sys_intrinsics.h ├── hashing │ ├── MD4.cpp │ ├── MD4.h │ ├── MD5.cpp │ ├── MD5.h │ ├── sha256.c │ └── sha256.h ├── math │ ├── Angles.cpp │ ├── Angles.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Curve.h │ ├── Extrapolate.h │ ├── Interpolate.h │ ├── Lcp.cpp │ ├── Lcp.h │ ├── Line.cpp │ ├── Line.h │ ├── Math.cpp │ ├── Math.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Ode.cpp │ ├── Ode.h │ ├── Plane.cpp │ ├── Plane.h │ ├── Pluecker.cpp │ ├── Pluecker.h │ ├── PoissonSampling.cpp │ ├── PoissonSampling.h │ ├── Polynomial.cpp │ ├── Polynomial.h │ ├── Quat.cpp │ ├── Quat.h │ ├── Random.h │ ├── Rotation.cpp │ ├── Rotation.h │ ├── Simd.cpp │ ├── Simd.h │ ├── Simd_AVX.cpp │ ├── Simd_AVX.h │ ├── Simd_AVX2.cpp │ ├── Simd_AVX2.h │ ├── Simd_AltiVec.cpp │ ├── Simd_AltiVec.h │ ├── Simd_Generic.cpp │ ├── Simd_Generic.h │ ├── Simd_IdAsm.cpp │ ├── Simd_IdAsm.h │ ├── Simd_SSE.cpp │ ├── Simd_SSE.h │ ├── Simd_SSE2.cpp │ ├── Simd_SSE2.h │ ├── Simd_SSSE3.cpp │ ├── Simd_SSSE3.h │ ├── Vector.cpp │ └── Vector.h ├── precompiled.cpp ├── precompiled.h ├── svnversion.cmake.h ├── svnversion_template.h └── sys │ ├── posix │ └── posix_thread.cpp │ ├── sys_assert.cpp │ ├── sys_assert.h │ ├── sys_defines.h │ ├── sys_includes.h │ ├── sys_threading.h │ ├── sys_types.h │ └── win32 │ └── win_thread.cpp ├── renderer ├── RenderSystem.cpp ├── RenderSystem.h ├── RenderSystem_init.cpp ├── VertexCache.cpp ├── VertexCache.h ├── backend │ ├── FrameBuffer.cpp │ ├── FrameBuffer.h │ ├── FrameBufferManager.cpp │ ├── FrameBufferManager.h │ ├── GLSLProgram.cpp │ ├── GLSLProgram.h │ ├── GLSLProgramManager.cpp │ ├── GLSLProgramManager.h │ ├── GLSLUniforms.cpp │ ├── GLSLUniforms.h │ ├── GpuBuffer.cpp │ ├── GpuBuffer.h │ ├── ImmediateRendering.cpp │ ├── ImmediateRendering.h │ ├── RenderBackend.cpp │ ├── RenderBackend.h │ ├── VertexArrayState.cpp │ ├── VertexArrayState.h │ ├── qgl │ │ ├── glad.c │ │ ├── glad.h │ │ ├── glad_glx.c │ │ ├── glad_glx.h │ │ ├── glad_wgl.c │ │ ├── glad_wgl.h │ │ ├── qgl.cpp │ │ └── qgl.h │ ├── simplex.h │ ├── stages │ │ ├── AmbientOcclusionStage.cpp │ │ ├── AmbientOcclusionStage.h │ │ ├── BloomStage.cpp │ │ ├── BloomStage.h │ │ ├── DepthStage.cpp │ │ ├── DepthStage.h │ │ ├── FrobOutlineStage.cpp │ │ ├── FrobOutlineStage.h │ │ ├── InteractionStage.cpp │ │ ├── InteractionStage.h │ │ ├── LightPassesStage.cpp │ │ ├── LightPassesStage.h │ │ ├── ShadowMapStage.cpp │ │ ├── ShadowMapStage.h │ │ ├── StencilShadowStage.cpp │ │ ├── StencilShadowStage.h │ │ ├── SurfacePassesStage.cpp │ │ ├── SurfacePassesStage.h │ │ ├── TiledCustomMipmapStage.cpp │ │ ├── TiledCustomMipmapStage.h │ │ ├── TonemapStage.cpp │ │ ├── TonemapStage.h │ │ ├── VolumetricStage.cpp │ │ └── VolumetricStage.h │ ├── tr_backend.cpp │ ├── tr_render.cpp │ └── tr_rendertools.cpp ├── frontend │ ├── GuiModel.cpp │ ├── GuiModel.h │ ├── Interaction.cpp │ ├── Interaction.h │ ├── LightQuerySystem.cpp │ ├── LightQuerySystem.h │ ├── RenderEntity.cpp │ ├── RenderWorld.cpp │ ├── RenderWorld.h │ ├── RenderWorld_demo.cpp │ ├── RenderWorld_load.cpp │ ├── RenderWorld_local.h │ ├── RenderWorld_portals.cpp │ ├── tr_deform.cpp │ ├── tr_guisurf.cpp │ ├── tr_light.cpp │ ├── tr_lightrun.cpp │ ├── tr_orderIndexes.cpp │ ├── tr_polytope.cpp │ ├── tr_shadowbounds.cpp │ ├── tr_stencilshadow.cpp │ ├── tr_subview.cpp │ ├── tr_trace.cpp │ ├── tr_trisurf.cpp │ └── tr_turboshadow.cpp ├── resources │ ├── Cinematic.cpp │ ├── Cinematic.h │ ├── CinematicFFMpeg.cpp │ ├── CinematicFFMpeg.h │ ├── CinematicID.cpp │ ├── CinematicID.h │ ├── Image.h │ ├── Image_compress.cpp │ ├── Image_files.cpp │ ├── Image_init.cpp │ ├── Image_load.cpp │ ├── Image_process.cpp │ ├── Image_program.cpp │ ├── Material.cpp │ ├── Material.h │ ├── Model.cpp │ ├── Model.h │ ├── ModelDecal.cpp │ ├── ModelDecal.h │ ├── ModelManager.cpp │ ├── ModelManager.h │ ├── ModelOverlay.cpp │ ├── ModelOverlay.h │ ├── Model_ase.cpp │ ├── Model_ase.h │ ├── Model_beam.cpp │ ├── Model_liquid.cpp │ ├── Model_local.h │ ├── Model_lwo.cpp │ ├── Model_lwo.h │ ├── Model_ma.cpp │ ├── Model_ma.h │ ├── Model_md3.cpp │ ├── Model_md3.h │ ├── Model_md5.cpp │ ├── Model_obj.cpp │ ├── Model_obj.h │ ├── Model_prt.cpp │ ├── Model_sprite.cpp │ ├── ParticleSystem.cpp │ ├── ParticleSystem.h │ ├── ParticleSystem_decl.h │ ├── ParticleSystem_def.h │ └── tr_font.cpp ├── tr_local.h └── tr_main.cpp ├── sound ├── efxlib.h ├── snd_cache.cpp ├── snd_decoder.cpp ├── snd_efxfile.cpp ├── snd_efxpresets.cpp ├── snd_efxpresets.h ├── snd_emitter.cpp ├── snd_local.h ├── snd_shader.cpp ├── snd_system.cpp ├── snd_wavefile.cpp ├── snd_world.cpp └── sound.h ├── sys ├── cmake │ ├── PrecompiledHeader.cmake │ ├── SvnVersion.cmake │ ├── gcc_32bit.cmake │ └── ucm.cmake ├── linux │ ├── casedir.patch │ ├── dedicated.cpp │ ├── glimp.cpp │ ├── input.cpp │ ├── local.h │ ├── main.cpp │ ├── setup │ │ └── binary.conf │ └── test_scheduler.c ├── msvc │ ├── natvis │ │ ├── game.natvis │ │ └── idlib.natvis │ └── properties │ │ ├── AddressSanitizer.props │ │ ├── Common_x64.props │ │ ├── Common_x86.props │ │ ├── _Common.props │ │ ├── _Debug.props │ │ ├── _DebugEditable.props │ │ ├── _DebugFast.props │ │ ├── _DoomDLL.props │ │ ├── _MayaImport.props │ │ ├── _Release.props │ │ └── unused │ │ ├── _Curl.props │ │ ├── _Dedicated.props │ │ ├── _Game.props │ │ ├── _TypeInfo.props │ │ ├── _WithMemoryLog.props │ │ └── _idlib.props ├── osx │ ├── DLL.OSX.txt │ ├── DOOMController.h │ ├── DOOMController.mm │ ├── Doom 3.rsrc │ ├── Doom3.icns │ ├── Doom3.xcodeproj │ │ └── project.pbxproj │ ├── English.lproj │ │ ├── ASLCore.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.xib │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ │ └── locversion.plist │ ├── French.lproj │ │ ├── ASLCore.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.xib │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ ├── Info.plist │ ├── PickMonitor.cpp │ ├── PickMonitor.h │ ├── PreferencesDialog.cpp │ ├── PreferencesDialog.h │ ├── SubProjects │ │ └── curl.xcodeproj │ │ │ └── project.pbxproj │ ├── d3xp.xcodeproj │ │ └── project.pbxproj │ ├── devil.xcodeproj │ │ └── project.pbxproj │ ├── game.xcodeproj │ │ └── project.pbxproj │ ├── idlib.xcodeproj │ │ └── project.pbxproj │ ├── jpeg.xcodeproj │ │ └── project.pbxproj │ ├── macosx_common.h │ ├── macosx_display.h │ ├── macosx_event.mm │ ├── macosx_glimp.h │ ├── macosx_glimp.mm │ ├── macosx_guids.cpp │ ├── macosx_local.h │ ├── macosx_misc.mm │ ├── macosx_sys.h │ ├── macosx_sys.mm │ ├── macosx_timers.h │ ├── macosx_utils.mm │ ├── misc │ │ └── ftoi.patch │ ├── oggVorbis.xcodeproj │ │ └── project.pbxproj │ ├── png.xcodeproj │ │ └── project.pbxproj │ ├── showcursor │ ├── showcursor.c │ ├── version.plist │ └── ziploader.xcodeproj │ │ └── project.pbxproj ├── posix │ ├── platform_linux.cpp │ ├── platform_osx.cpp │ ├── posix_input.cpp │ ├── posix_main.cpp │ ├── posix_net.cpp │ ├── posix_public.h │ ├── posix_signal.cpp │ └── posix_threads.cpp ├── stub │ ├── openal_stub.cpp │ ├── stub_gl.cpp │ ├── sys_stub.cpp │ └── util_stub.cpp ├── sys_cpu.cpp ├── sys_local.cpp ├── sys_local.h ├── sys_padinput.cpp ├── sys_padinput.h ├── sys_public.h └── win32 │ ├── rc │ ├── AFEditor.rc │ ├── AFEditor_resource.h │ ├── Common.rc │ ├── Common_resource.h │ ├── CreateResourceIDs.cpp │ ├── CreateResourceIDs.h │ ├── Debugger.rc │ ├── Debugger_resource.h │ ├── DeclEditor.rc │ ├── DeclEditor_resource.h │ ├── GuiEd.rc │ ├── GuiEd_resource.h │ ├── MaterialEditor.rc │ ├── MaterialEditor_Resource.h │ ├── PDAEditor.rc │ ├── PDAEditor_resource.h │ ├── ParticleEditor.rc │ ├── ParticleEditor_resource.h │ ├── PropTree.rc │ ├── PropTree_resource.h │ ├── Radiant.rc │ ├── Radiant_resource.h │ ├── ScriptEditor.rc │ ├── ScriptEditor_resource.h │ ├── SoundEditor.rc │ ├── SoundEditor_resource.h │ ├── doom.rc │ ├── doom_resource.h │ └── res │ │ ├── BEVEL.BMP │ │ ├── BITMAP2.BMP │ │ ├── BMP00001.BMP │ │ ├── BMP0002.BMP │ │ ├── DEFTEX.WAL │ │ ├── ENDCAP.BMP │ │ ├── GetString.htm │ │ ├── IBEVEL.BMP │ │ ├── IENDCAP.BMP │ │ ├── MEFileToolbar.bmp │ │ ├── MEtoolbar.bmp │ │ ├── MaterialEditor.ico │ │ ├── PropTree.rc2 │ │ ├── Q.BMP │ │ ├── RADIANT3.GIF │ │ ├── Radiant.ico │ │ ├── RadiantDoc.ico │ │ ├── TOOLBAR1.BMP │ │ ├── TOOLBAR2.BMP │ │ ├── Toolbar.bmp │ │ ├── VIEWDEFA.BMP │ │ ├── VIEWOPPO.BMP │ │ ├── bmp00002.bmp │ │ ├── bmp00003.bmp │ │ ├── bmp00004.bmp │ │ ├── bmp00005.bmp │ │ ├── cchsb.bmp │ │ ├── ccrgb.bmp │ │ ├── darkmod.ico │ │ ├── dbg_back.bmp │ │ ├── dbg_breakpoint.ico │ │ ├── dbg_current.ico │ │ ├── dbg_currentline.ico │ │ ├── dbg_empty.ico │ │ ├── dbg_open.bmp │ │ ├── dbg_toolbar.bmp │ │ ├── doom.ico │ │ ├── fpoint.cur │ │ ├── fxed_link.ico │ │ ├── fxed_toolbar.bmp │ │ ├── fxeditor.ico │ │ ├── guied.ico │ │ ├── guied_collapse.ico │ │ ├── guied_expand.ico │ │ ├── guied_hand.cur │ │ ├── guied_nav_visible.ico │ │ ├── guied_nav_visibledisabled.ico │ │ ├── guied_scripts.ico │ │ ├── guied_scripts_white.ico │ │ ├── guied_viewer_toolbar.bmp │ │ ├── icon2.ico │ │ ├── logo_sm3dfx.bmp │ │ ├── matedtree.bmp │ │ ├── me_disabled_icon.ico │ │ ├── me_enabled.ico │ │ ├── me_off_icon.ico │ │ ├── me_on_icon.ico │ │ ├── qe3.ico │ │ ├── shaderbar.bmp │ │ ├── shaderdoc.ico │ │ ├── shaderframe.ico │ │ └── spliter.cur │ ├── win_cpu.cpp │ ├── win_gamma.cpp │ ├── win_glimp.cpp │ ├── win_input.cpp │ ├── win_local.h │ ├── win_main.cpp │ ├── win_net.cpp │ ├── win_shared.cpp │ ├── win_syscon.cpp │ └── win_wndproc.cpp ├── tdm_installer ├── Actions.cpp ├── Actions.h ├── CMakeLists.txt ├── Constants.h ├── GuiFluidAutoGen.cxx ├── GuiFluidAutoGen.fl ├── GuiFluidAutoGen.h ├── GuiGlobal.cpp ├── GuiGlobal.h ├── GuiPageConfirm.cpp ├── GuiPageConfirm.h ├── GuiPageInstall.cpp ├── GuiPageInstall.h ├── GuiPageSettings.cpp ├── GuiPageSettings.h ├── GuiPageVersion.cpp ├── GuiPageVersion.h ├── GuiUtils.cpp ├── GuiUtils.h ├── InstallerConfig.cpp ├── InstallerConfig.h ├── InstallerMain.cpp ├── LeftPanelImage.jpg ├── LogUtils.cpp ├── LogUtils.h ├── OsUtils.cpp ├── OsUtils.h ├── ProgressIndicatorGui.cpp ├── ProgressIndicatorGui.h ├── State.cpp ├── State.h ├── StoredState.cpp ├── StoredState.h ├── WinIcon.ico ├── WinResource.rc ├── tdm_installer.ini └── zipsync │ ├── .editorconfig │ ├── .hgignore │ ├── BLAKE2-conan │ ├── LICENSE.txt │ ├── conandata.yml │ ├── conanfile.py │ └── src │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── ChecksummedZip.cpp │ ├── ChecksummedZip.h │ ├── CommandLine.cpp │ ├── CommandLine.h │ ├── CommandLineMain.cpp │ ├── Downloader.cpp │ ├── Downloader.h │ ├── Fuzzer.cpp │ ├── Fuzzer.h │ ├── Hash.cpp │ ├── Hash.h │ ├── HttpServer.cpp │ ├── HttpServer.h │ ├── Ini.cpp │ ├── Ini.h │ ├── LICENSE │ ├── LocalCache.cpp │ ├── LocalCache.h │ ├── Logging.cpp │ ├── Logging.h │ ├── Manifest.cpp │ ├── Manifest.h │ ├── Path.cpp │ ├── Path.h │ ├── README.md │ ├── StdFilesystem.cpp │ ├── StdFilesystem.h │ ├── StdString.cpp │ ├── StdString.h │ ├── TestCreator.cpp │ ├── TestCreator.h │ ├── TestsMain.cpp │ ├── Utils.cpp │ ├── Utils.h │ ├── Wildcards.cpp │ ├── Wildcards.h │ ├── ZipSync.cpp │ ├── ZipSync.h │ ├── ZipSync.natvis │ ├── ZipUtils.cpp │ ├── ZipUtils.h │ ├── args-conan │ ├── args.hxx │ └── conanfile.py │ ├── conan_build.bat │ ├── conanfile.py │ ├── export_embedded_recipes.bat │ ├── minizip_extra.c │ ├── minizip_extra.h │ └── minizip_private.h ├── tdm_package ├── CMakeLists.txt ├── CRC.h ├── Constants.h ├── File.cpp ├── File.h ├── LogWriters.h ├── PackageInstructions.h ├── Packager │ ├── Packager.cpp │ ├── Packager.h │ └── PackagerOptions.h ├── Pk4Mappings.h ├── ProgramOptions.h ├── ReleaseManifest.h ├── StdFilesystem.cpp ├── StdFilesystem.h ├── StdFormat.h ├── StdString.cpp ├── StdString.h ├── SvnClient.cpp ├── SvnClient.h ├── ThreadPool.h ├── TraceLog.cpp ├── TraceLog.h ├── Zip │ ├── TdmZip.cpp │ └── TdmZip.h └── tdm_package.cpp ├── tests ├── TestRun.cpp ├── TestRun.h └── testing.h ├── tools ├── Help │ ├── MT_help.htm │ ├── MVH_Controls.htm │ ├── MVH_Issues.htm │ ├── MVH_Misc.htm │ ├── MVH_Mouse.htm │ ├── MVH_Overview.htm │ ├── Tools.hhc │ ├── Tools.hhk │ ├── Tools.hhp │ ├── default.htm │ └── images │ │ ├── FirstAnim.png │ │ ├── OpenAnim.png │ │ ├── OpenMesh.png │ │ ├── Play.png │ │ ├── PrevAnim.png │ │ ├── animloop.png │ │ ├── diffuse.png │ │ ├── lastanim.png │ │ ├── nextanim.png │ │ ├── orgoff.png │ │ ├── reloadtex.png │ │ ├── resetcam.png │ │ ├── showbones.png │ │ ├── shownorms.png │ │ ├── showoverdraw.png │ │ ├── showskel.png │ │ ├── showsurf.png │ │ ├── showtris.png │ │ ├── specular.png │ │ └── stop.png ├── af │ ├── DialogAF.cpp │ ├── DialogAF.h │ ├── DialogAFBody.cpp │ ├── DialogAFBody.h │ ├── DialogAFConstraint.cpp │ ├── DialogAFConstraint.h │ ├── DialogAFConstraintBallAndSocket.cpp │ ├── DialogAFConstraintBallAndSocket.h │ ├── DialogAFConstraintFixed.cpp │ ├── DialogAFConstraintFixed.h │ ├── DialogAFConstraintHinge.cpp │ ├── DialogAFConstraintHinge.h │ ├── DialogAFConstraintSlider.cpp │ ├── DialogAFConstraintSlider.h │ ├── DialogAFConstraintSpring.cpp │ ├── DialogAFConstraintSpring.h │ ├── DialogAFConstraintUniversal.cpp │ ├── DialogAFConstraintUniversal.h │ ├── DialogAFName.cpp │ ├── DialogAFName.h │ ├── DialogAFProperties.cpp │ ├── DialogAFProperties.h │ ├── DialogAFView.cpp │ └── DialogAFView.h ├── comafx │ ├── CDIB.cpp │ ├── CDIB.h │ ├── CPathTreeCtrl.cpp │ ├── CPathTreeCtrl.h │ ├── CSyntaxRichEditCtrl.cpp │ ├── CSyntaxRichEditCtrl.h │ ├── DialogColorPicker.cpp │ ├── DialogColorPicker.h │ ├── DialogGoToLine.cpp │ ├── DialogGoToLine.h │ ├── DialogName.cpp │ ├── DialogName.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── VectorCtl.cpp │ ├── VectorCtl.h │ └── riched20.tlh ├── common │ ├── AlphaPopup.cpp │ ├── ColorButton.cpp │ ├── ColorButton.h │ ├── DialogHelpers.h │ ├── MaskEdit.cpp │ ├── MaskEdit.h │ ├── OpenFileDialog.cpp │ ├── OpenFileDialog.h │ ├── PropTree │ │ ├── PropTree.cpp │ │ ├── PropTree.h │ │ ├── PropTreeInfo.cpp │ │ ├── PropTreeInfo.h │ │ ├── PropTreeItem.cpp │ │ ├── PropTreeItem.h │ │ ├── PropTreeItemButton.cpp │ │ ├── PropTreeItemButton.h │ │ ├── PropTreeItemCheck.cpp │ │ ├── PropTreeItemCheck.h │ │ ├── PropTreeItemColor.cpp │ │ ├── PropTreeItemColor.h │ │ ├── PropTreeItemCombo.cpp │ │ ├── PropTreeItemCombo.h │ │ ├── PropTreeItemEdit.cpp │ │ ├── PropTreeItemEdit.h │ │ ├── PropTreeItemEditButton.cpp │ │ ├── PropTreeItemEditButton.h │ │ ├── PropTreeItemFileEdit.cpp │ │ ├── PropTreeItemFileEdit.h │ │ ├── PropTreeItemStatic.cpp │ │ ├── PropTreeItemStatic.h │ │ ├── PropTreeList.cpp │ │ ├── PropTreeList.h │ │ ├── PropTreeView.cpp │ │ └── PropTreeView.h │ ├── PropertyGrid.cpp │ ├── PropertyGrid.h │ ├── RegistryOptions.cpp │ ├── RegistryOptions.h │ ├── RenderBumpFlatDialog.cpp │ ├── RenderBumpFlatDialog.h │ ├── RollupPanel.cpp │ ├── RollupPanel.h │ ├── SpinButton.cpp │ └── SpinButton.h ├── compilers │ ├── aas │ │ ├── AASBuild.cpp │ │ ├── AASBuild_file.cpp │ │ ├── AASBuild_gravity.cpp │ │ ├── AASBuild_ledge.cpp │ │ ├── AASBuild_local.h │ │ ├── AASBuild_merge.cpp │ │ ├── AASCluster.cpp │ │ ├── AASCluster.h │ │ ├── AASFile.cpp │ │ ├── AASFile.h │ │ ├── AASFileManager.cpp │ │ ├── AASFileManager.h │ │ ├── AASFile_local.h │ │ ├── AASFile_optimize.cpp │ │ ├── AASFile_sample.cpp │ │ ├── AASReach.cpp │ │ ├── AASReach.h │ │ ├── Brush.cpp │ │ ├── Brush.h │ │ ├── BrushBSP.cpp │ │ └── BrushBSP.h │ ├── compiler_common.cpp │ ├── compiler_common.h │ ├── compiler_public.h │ ├── dmap │ │ ├── dmap.cpp │ │ ├── dmap.h │ │ ├── earcut.cpp │ │ ├── earcut.h │ │ ├── facebsp.cpp │ │ ├── gldraw.cpp │ │ ├── glfile.cpp │ │ ├── map.cpp │ │ ├── optimize.cpp │ │ ├── output.cpp │ │ ├── planargraph.cpp │ │ ├── planargraph.h │ │ ├── portals.cpp │ │ ├── shadowopt3.cpp │ │ ├── tjunctionfixer.cpp │ │ ├── tjunctionfixer.h │ │ ├── tritjunction.cpp │ │ ├── tritools.cpp │ │ ├── ubrush.cpp │ │ └── usurface.cpp │ ├── particle │ │ └── ParticleCollisionStatic.cpp │ ├── renderbump │ │ └── renderbump.cpp │ └── roqvq │ │ ├── NSBitmapImageRep.cpp │ │ ├── codec.cpp │ │ ├── codec.h │ │ ├── gdefs.h │ │ ├── quaddefs.h │ │ ├── roq.cpp │ │ ├── roq.h │ │ ├── roq.m │ │ ├── roqParam.cpp │ │ └── roqParam.h ├── decl │ ├── DialogDeclBrowser.cpp │ ├── DialogDeclBrowser.h │ ├── DialogDeclEditor.cpp │ ├── DialogDeclEditor.h │ ├── DialogDeclNew.cpp │ ├── DialogDeclNew.h │ ├── DialogEntityDefEditor.cpp │ └── DialogEntityDefEditor.h ├── edit_public.h ├── edit_stub.cpp ├── guied │ ├── GEApp.cpp │ ├── GEApp.h │ ├── GECheckInDlg.cpp │ ├── GEDeleteModifier.cpp │ ├── GEDeleteModifier.h │ ├── GEHideModifier.cpp │ ├── GEHideModifier.h │ ├── GEInsertModifier.cpp │ ├── GEInsertModifier.h │ ├── GEItemPropsDlg.cpp │ ├── GEItemPropsDlg.h │ ├── GEItemScriptsDlg.cpp │ ├── GEItemScriptsDlg.h │ ├── GEKeyValueModifier.cpp │ ├── GEKeyValueModifier.h │ ├── GEModifier.cpp │ ├── GEModifier.h │ ├── GEModifierGroup.cpp │ ├── GEModifierGroup.h │ ├── GEModifierStack.cpp │ ├── GEModifierStack.h │ ├── GEMoveModifier.cpp │ ├── GEMoveModifier.h │ ├── GENavigator.cpp │ ├── GENavigator.h │ ├── GEOptions.cpp │ ├── GEOptions.h │ ├── GEOptionsDlg.cpp │ ├── GEOptionsDlg.h │ ├── GEProperties.cpp │ ├── GEProperties.h │ ├── GEPropertyPage.cpp │ ├── GEPropertyPage.h │ ├── GESelectionMgr.cpp │ ├── GESelectionMgr.h │ ├── GESizeModifier.cpp │ ├── GESizeModifier.h │ ├── GEStateModifier.cpp │ ├── GEStateModifier.h │ ├── GEStatusBar.cpp │ ├── GEStatusBar.h │ ├── GETransformer.cpp │ ├── GETransformer.h │ ├── GEViewer.cpp │ ├── GEViewer.h │ ├── GEWindowWrapper.cpp │ ├── GEWindowWrapper.h │ ├── GEWindowWrapper_stub.cpp │ ├── GEWorkspace.cpp │ ├── GEWorkspace.h │ ├── GEWorkspaceFile.cpp │ ├── GEZOrderModifier.cpp │ ├── GEZOrderModifier.h │ └── guied.cpp ├── materialeditor │ ├── ConsoleView.cpp │ ├── ConsoleView.h │ ├── FindDialog.cpp │ ├── FindDialog.h │ ├── MEMainFrame.cpp │ ├── MEMainFrame.h │ ├── MEOptions.cpp │ ├── MEOptions.h │ ├── MaterialDef.cpp │ ├── MaterialDef.h │ ├── MaterialDoc.cpp │ ├── MaterialDoc.h │ ├── MaterialDocManager.cpp │ ├── MaterialDocManager.h │ ├── MaterialEditView.cpp │ ├── MaterialEditView.h │ ├── MaterialEditor.cpp │ ├── MaterialEditor.h │ ├── MaterialModifier.cpp │ ├── MaterialModifier.h │ ├── MaterialPreviewPropView.cpp │ ├── MaterialPreviewPropView.h │ ├── MaterialPreviewView.cpp │ ├── MaterialPreviewView.h │ ├── MaterialPropTreeView.cpp │ ├── MaterialPropTreeView.h │ ├── MaterialTreeView.cpp │ ├── MaterialTreeView.h │ ├── MaterialView.cpp │ ├── MaterialView.h │ ├── StageView.cpp │ ├── StageView.h │ ├── ToggleListView.cpp │ └── ToggleListView.h ├── particle │ ├── DialogParticleEditor.cpp │ └── DialogParticleEditor.h ├── radiant │ ├── CSG.CPP │ ├── CamWnd.cpp │ ├── CamWnd.h │ ├── CameraTargetDlg.cpp │ ├── CameraTargetDlg.h │ ├── CapDialog.cpp │ ├── CapDialog.h │ ├── CommandsDlg.cpp │ ├── CommandsDlg.h │ ├── CommentsDlg.cpp │ ├── CommentsDlg.h │ ├── ConsoleDlg.cpp │ ├── ConsoleDlg.h │ ├── CurveDlg.cpp │ ├── CurveDlg.h │ ├── DRAG.CPP │ ├── DialogInfo.cpp │ ├── DialogInfo.h │ ├── DialogTextures.cpp │ ├── DialogTextures.h │ ├── DialogThick.cpp │ ├── DialogThick.h │ ├── DlgCamera.cpp │ ├── DlgCamera.h │ ├── DlgEvent.cpp │ ├── DlgEvent.h │ ├── ECLASS.CPP │ ├── EditViewDlg.cpp │ ├── EditViewDlg.h │ ├── EditorBrush.cpp │ ├── EditorBrush.h │ ├── EditorBrushPrimit.cpp │ ├── EditorEntity.cpp │ ├── EditorEntity.h │ ├── EditorMap.cpp │ ├── EditorMap.h │ ├── EntKeyFindReplace.cpp │ ├── EntKeyFindReplace.h │ ├── EntityDlg.cpp │ ├── EntityDlg.h │ ├── EntityListDlg.cpp │ ├── EntityListDlg.h │ ├── FindTextureDlg.cpp │ ├── FindTextureDlg.h │ ├── GLWidget.cpp │ ├── GLWidget.h │ ├── GetString.cpp │ ├── GetString.h │ ├── InspectorDialog.cpp │ ├── InspectorDialog.h │ ├── LightDlg.cpp │ ├── LightDlg.h │ ├── MRU.CPP │ ├── MRU.H │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── MapInfo.cpp │ ├── MapInfo.h │ ├── MediaPreviewDlg.cpp │ ├── MediaPreviewDlg.h │ ├── NewProjDlg.cpp │ ├── NewProjDlg.h │ ├── NewTexWnd.cpp │ ├── NewTexWnd.h │ ├── PARSE.CPP │ ├── PARSE.H │ ├── PMESH.CPP │ ├── PMESH.H │ ├── PatchDensityDlg.cpp │ ├── PatchDensityDlg.h │ ├── PatchDialog.cpp │ ├── PatchDialog.h │ ├── PointFile.cpp │ ├── PrefsDlg.cpp │ ├── PrefsDlg.h │ ├── PreviewDlg.cpp │ ├── PreviewDlg.h │ ├── PropertyList.cpp │ ├── PropertyList.h │ ├── QE3.CPP │ ├── QE3.H │ ├── QEDEFS.H │ ├── QERTYPES.H │ ├── Radiant.cpp │ ├── Radiant.h │ ├── RotateDlg.cpp │ ├── RotateDlg.h │ ├── SELECT.CPP │ ├── SELECT.H │ ├── ScaleDialog.cpp │ ├── ScaleDialog.h │ ├── SurfaceDlg.cpp │ ├── SurfaceDlg.h │ ├── TabsDlg.cpp │ ├── TabsDlg.h │ ├── TearoffContainerWindow.cpp │ ├── TearoffContainerWindow.h │ ├── TextureBar.cpp │ ├── TextureBar.h │ ├── Textures.h │ ├── Undo.cpp │ ├── Undo.h │ ├── VERTSEL.CPP │ ├── WIN_DLG.CPP │ ├── WIN_QE3.CPP │ ├── WIN_QE3.RC2 │ ├── WaitDlg.cpp │ ├── WaitDlg.h │ ├── WaveOpen.cpp │ ├── WaveOpen.h │ ├── XYWnd.cpp │ ├── XYWnd.h │ ├── Z.CPP │ ├── Z.H │ ├── ZClip.cpp │ ├── ZClip.h │ ├── ZWnd.cpp │ ├── ZWnd.h │ ├── autocaulk.cpp │ ├── autocaulk.h │ ├── cmdlib.cpp │ ├── cmdlib.h │ ├── splines.cpp │ └── splines.h ├── script │ ├── DialogScriptEditor.cpp │ └── DialogScriptEditor.h └── sound │ ├── DialogSound.cpp │ ├── DialogSound.h │ ├── DialogSoundGroup.cpp │ └── DialogSoundGroup.h └── ui ├── BindWindow.cpp ├── BindWindow.h ├── ChoiceWindow.cpp ├── ChoiceWindow.h ├── DeviceContext.cpp ├── DeviceContext.h ├── EditWindow.cpp ├── EditWindow.h ├── FieldWindow.cpp ├── FieldWindow.h ├── GameWindow.cpp ├── GameWindow.h ├── GuiScript.cpp ├── GuiScript.h ├── ListGUI.cpp ├── ListGUI.h ├── ListGUILocal.h ├── ListWindow.cpp ├── ListWindow.h ├── MarkerWindow.cpp ├── MarkerWindow.h ├── Rectangle.h ├── RegExp.cpp ├── RegExp.h ├── RegExp_old.h ├── RenderWindow.cpp ├── RenderWindow.h ├── SimpleWindow.cpp ├── SimpleWindow.h ├── SliderWindow.cpp ├── SliderWindow.h ├── UserInterface.cpp ├── UserInterface.h ├── UserInterfaceLocal.h ├── Window.cpp ├── Window.h ├── Winvar.cpp └── Winvar.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/COMPILING.txt -------------------------------------------------------------------------------- /CiScripts/build_cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CiScripts/build_cmake.py -------------------------------------------------------------------------------- /CiScripts/build_msvc_main.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CiScripts/build_msvc_main.cmd -------------------------------------------------------------------------------- /CiScripts/conan_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CiScripts/conan_build.py -------------------------------------------------------------------------------- /CiScripts/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CiScripts/global.conf -------------------------------------------------------------------------------- /CiScripts/linux_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/CiScripts/linux_install.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MayaImport.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport.vcxproj -------------------------------------------------------------------------------- /MayaImport.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport.vcxproj.filters -------------------------------------------------------------------------------- /MayaImport/Maya6.0/maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport/Maya6.0/maya.h -------------------------------------------------------------------------------- /MayaImport/exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport/exporter.h -------------------------------------------------------------------------------- /MayaImport/maya_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport/maya_main.cpp -------------------------------------------------------------------------------- /MayaImport/maya_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport/maya_main.h -------------------------------------------------------------------------------- /MayaImport/mayaimport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/MayaImport/mayaimport.def -------------------------------------------------------------------------------- /TheDarkMod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/TheDarkMod.sln -------------------------------------------------------------------------------- /ThirdParty/1_export_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/1_export_custom.py -------------------------------------------------------------------------------- /ThirdParty/2_build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/2_build_all.py -------------------------------------------------------------------------------- /ThirdParty/artefacts/tdm_deploy/libalsa/include/alsa/sound/asoc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ThirdParty/artefacts/tdm_deploy/libalsa/include/alsa/sound/tlv.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ThirdParty/artefacts/windows_32/conanbuild.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "%~dp0/conanbuildenv-debug-x86.bat" -------------------------------------------------------------------------------- /ThirdParty/artefacts/windows_32/conanrun.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "%~dp0/conanrunenv-debug-x86.bat" -------------------------------------------------------------------------------- /ThirdParty/artefacts/windows_64/conanbuild.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "%~dp0/conanbuildenv-debug-x86_64.bat" -------------------------------------------------------------------------------- /ThirdParty/artefacts/windows_64/conanrun.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "%~dp0/conanrunenv-debug-x86_64.bat" -------------------------------------------------------------------------------- /ThirdParty/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/conanfile.py -------------------------------------------------------------------------------- /ThirdParty/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/packages.yaml -------------------------------------------------------------------------------- /ThirdParty/profiles/arch_32: -------------------------------------------------------------------------------- 1 | [settings] 2 | arch=x86 3 | -------------------------------------------------------------------------------- /ThirdParty/profiles/arch_64: -------------------------------------------------------------------------------- 1 | [settings] 2 | arch=x86_64 3 | -------------------------------------------------------------------------------- /ThirdParty/profiles/build_debug: -------------------------------------------------------------------------------- 1 | [settings] 2 | build_type=Debug 3 | -------------------------------------------------------------------------------- /ThirdParty/profiles/build_release: -------------------------------------------------------------------------------- 1 | [settings] 2 | build_type=Release 3 | -------------------------------------------------------------------------------- /ThirdParty/profiles/os_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/profiles/os_linux -------------------------------------------------------------------------------- /ThirdParty/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/readme.md -------------------------------------------------------------------------------- /ThirdParty/tdm_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ThirdParty/tdm_deploy.py -------------------------------------------------------------------------------- /TypeInfo/TypeInfoGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/TypeInfo/TypeInfoGen.cpp -------------------------------------------------------------------------------- /TypeInfo/TypeInfoGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/TypeInfo/TypeInfoGen.h -------------------------------------------------------------------------------- /TypeInfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/TypeInfo/main.cpp -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/appveyor.yml -------------------------------------------------------------------------------- /base/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/base/default.cfg -------------------------------------------------------------------------------- /cm/CollisionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel.h -------------------------------------------------------------------------------- /cm/CollisionModel_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_debug.cpp -------------------------------------------------------------------------------- /cm/CollisionModel_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_files.cpp -------------------------------------------------------------------------------- /cm/CollisionModel_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_load.cpp -------------------------------------------------------------------------------- /cm/CollisionModel_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_local.h -------------------------------------------------------------------------------- /cm/CollisionModel_rotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_rotate.cpp -------------------------------------------------------------------------------- /cm/CollisionModel_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/cm/CollisionModel_trace.cpp -------------------------------------------------------------------------------- /engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/engine.vcxproj -------------------------------------------------------------------------------- /engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/engine.vcxproj.filters -------------------------------------------------------------------------------- /engine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/engine.vcxproj.user -------------------------------------------------------------------------------- /framework/BuildDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/BuildDefines.h -------------------------------------------------------------------------------- /framework/CVarSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/CVarSystem.cpp -------------------------------------------------------------------------------- /framework/CVarSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/CVarSystem.h -------------------------------------------------------------------------------- /framework/CmdSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/CmdSystem.cpp -------------------------------------------------------------------------------- /framework/CmdSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/CmdSystem.h -------------------------------------------------------------------------------- /framework/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Common.cpp -------------------------------------------------------------------------------- /framework/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Common.h -------------------------------------------------------------------------------- /framework/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Compressor.cpp -------------------------------------------------------------------------------- /framework/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Compressor.h -------------------------------------------------------------------------------- /framework/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Console.cpp -------------------------------------------------------------------------------- /framework/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Console.h -------------------------------------------------------------------------------- /framework/DeclAF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclAF.cpp -------------------------------------------------------------------------------- /framework/DeclAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclAF.h -------------------------------------------------------------------------------- /framework/DeclEntityDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclEntityDef.cpp -------------------------------------------------------------------------------- /framework/DeclEntityDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclEntityDef.h -------------------------------------------------------------------------------- /framework/DeclFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclFX.cpp -------------------------------------------------------------------------------- /framework/DeclFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclFX.h -------------------------------------------------------------------------------- /framework/DeclManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclManager.cpp -------------------------------------------------------------------------------- /framework/DeclManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclManager.h -------------------------------------------------------------------------------- /framework/DeclParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclParticle.cpp -------------------------------------------------------------------------------- /framework/DeclParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclParticle.h -------------------------------------------------------------------------------- /framework/DeclSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclSkin.cpp -------------------------------------------------------------------------------- /framework/DeclSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclSkin.h -------------------------------------------------------------------------------- /framework/DeclSubtitles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclSubtitles.cpp -------------------------------------------------------------------------------- /framework/DeclSubtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclSubtitles.h -------------------------------------------------------------------------------- /framework/DeclTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclTable.cpp -------------------------------------------------------------------------------- /framework/DeclTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DeclTable.h -------------------------------------------------------------------------------- /framework/DemoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DemoFile.cpp -------------------------------------------------------------------------------- /framework/DemoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/DemoFile.h -------------------------------------------------------------------------------- /framework/EditField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/EditField.cpp -------------------------------------------------------------------------------- /framework/EditField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/EditField.h -------------------------------------------------------------------------------- /framework/EventLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/EventLoop.cpp -------------------------------------------------------------------------------- /framework/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/EventLoop.h -------------------------------------------------------------------------------- /framework/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/File.cpp -------------------------------------------------------------------------------- /framework/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/File.h -------------------------------------------------------------------------------- /framework/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/FileSystem.cpp -------------------------------------------------------------------------------- /framework/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/FileSystem.h -------------------------------------------------------------------------------- /framework/GamepadInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/GamepadInput.cpp -------------------------------------------------------------------------------- /framework/GamepadInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/GamepadInput.h -------------------------------------------------------------------------------- /framework/I18N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/I18N.cpp -------------------------------------------------------------------------------- /framework/I18N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/I18N.h -------------------------------------------------------------------------------- /framework/KeyInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/KeyInput.cpp -------------------------------------------------------------------------------- /framework/KeyInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/KeyInput.h -------------------------------------------------------------------------------- /framework/Licensee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Licensee.h -------------------------------------------------------------------------------- /framework/LoadStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/LoadStack.cpp -------------------------------------------------------------------------------- /framework/LoadStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/LoadStack.h -------------------------------------------------------------------------------- /framework/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Session.cpp -------------------------------------------------------------------------------- /framework/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Session.h -------------------------------------------------------------------------------- /framework/Session_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Session_local.h -------------------------------------------------------------------------------- /framework/Session_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Session_menu.cpp -------------------------------------------------------------------------------- /framework/Tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Tracing.cpp -------------------------------------------------------------------------------- /framework/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/Tracing.h -------------------------------------------------------------------------------- /framework/TracingEmbeddedSourceCode.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /framework/UsercmdGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/UsercmdGen.cpp -------------------------------------------------------------------------------- /framework/UsercmdGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/UsercmdGen.h -------------------------------------------------------------------------------- /framework/async/AsyncClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/async/AsyncClient.h -------------------------------------------------------------------------------- /framework/async/AsyncServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/async/AsyncServer.h -------------------------------------------------------------------------------- /framework/async/MsgChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/async/MsgChannel.h -------------------------------------------------------------------------------- /framework/async/ServerScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/framework/async/ServerScan.h -------------------------------------------------------------------------------- /game/AF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AF.cpp -------------------------------------------------------------------------------- /game/AF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AF.h -------------------------------------------------------------------------------- /game/AFEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AFEntity.cpp -------------------------------------------------------------------------------- /game/AFEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AFEntity.h -------------------------------------------------------------------------------- /game/AIComm_Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AIComm_Message.cpp -------------------------------------------------------------------------------- /game/AIComm_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AIComm_Message.h -------------------------------------------------------------------------------- /game/AIVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AIVehicle.cpp -------------------------------------------------------------------------------- /game/AIVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AIVehicle.h -------------------------------------------------------------------------------- /game/AbsenceMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AbsenceMarker.cpp -------------------------------------------------------------------------------- /game/AbsenceMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/AbsenceMarker.h -------------------------------------------------------------------------------- /game/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Actor.cpp -------------------------------------------------------------------------------- /game/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Actor.h -------------------------------------------------------------------------------- /game/BinaryFrobMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BinaryFrobMover.cpp -------------------------------------------------------------------------------- /game/BinaryFrobMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BinaryFrobMover.h -------------------------------------------------------------------------------- /game/BloodMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BloodMarker.cpp -------------------------------------------------------------------------------- /game/BloodMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BloodMarker.h -------------------------------------------------------------------------------- /game/BrittleFracture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BrittleFracture.cpp -------------------------------------------------------------------------------- /game/BrittleFracture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/BrittleFracture.h -------------------------------------------------------------------------------- /game/ButtonStateTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ButtonStateTracker.cpp -------------------------------------------------------------------------------- /game/ButtonStateTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ButtonStateTracker.h -------------------------------------------------------------------------------- /game/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Camera.cpp -------------------------------------------------------------------------------- /game/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Camera.h -------------------------------------------------------------------------------- /game/DarkModGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DarkModGlobals.cpp -------------------------------------------------------------------------------- /game/DarkModGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DarkModGlobals.h -------------------------------------------------------------------------------- /game/DifficultyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DifficultyManager.cpp -------------------------------------------------------------------------------- /game/DifficultyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DifficultyManager.h -------------------------------------------------------------------------------- /game/DifficultySettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DifficultySettings.cpp -------------------------------------------------------------------------------- /game/DifficultySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DifficultySettings.h -------------------------------------------------------------------------------- /game/DownloadMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DownloadMenu.cpp -------------------------------------------------------------------------------- /game/DownloadMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/DownloadMenu.h -------------------------------------------------------------------------------- /game/Emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Emitter.cpp -------------------------------------------------------------------------------- /game/Emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Emitter.h -------------------------------------------------------------------------------- /game/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Entity.cpp -------------------------------------------------------------------------------- /game/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Entity.h -------------------------------------------------------------------------------- /game/EntityList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EntityList.cpp -------------------------------------------------------------------------------- /game/EntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EntityList.h -------------------------------------------------------------------------------- /game/EscapePointEvaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EscapePointEvaluator.cpp -------------------------------------------------------------------------------- /game/EscapePointEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EscapePointEvaluator.h -------------------------------------------------------------------------------- /game/EscapePointManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EscapePointManager.cpp -------------------------------------------------------------------------------- /game/EscapePointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/EscapePointManager.h -------------------------------------------------------------------------------- /game/FX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FX.cpp -------------------------------------------------------------------------------- /game/FX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FX.h -------------------------------------------------------------------------------- /game/Force_Grab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Force_Grab.cpp -------------------------------------------------------------------------------- /game/Force_Grab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Force_Grab.h -------------------------------------------------------------------------------- /game/FrobButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobButton.cpp -------------------------------------------------------------------------------- /game/FrobButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobButton.h -------------------------------------------------------------------------------- /game/FrobDoor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobDoor.cpp -------------------------------------------------------------------------------- /game/FrobDoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobDoor.h -------------------------------------------------------------------------------- /game/FrobDoorHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobDoorHandle.cpp -------------------------------------------------------------------------------- /game/FrobDoorHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobDoorHandle.h -------------------------------------------------------------------------------- /game/FrobHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobHandle.cpp -------------------------------------------------------------------------------- /game/FrobHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobHandle.h -------------------------------------------------------------------------------- /game/FrobHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobHelper.cpp -------------------------------------------------------------------------------- /game/FrobHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobHelper.h -------------------------------------------------------------------------------- /game/FrobLever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLever.cpp -------------------------------------------------------------------------------- /game/FrobLever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLever.h -------------------------------------------------------------------------------- /game/FrobLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLock.cpp -------------------------------------------------------------------------------- /game/FrobLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLock.h -------------------------------------------------------------------------------- /game/FrobLockHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLockHandle.cpp -------------------------------------------------------------------------------- /game/FrobLockHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/FrobLockHandle.h -------------------------------------------------------------------------------- /game/Func_Shooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Func_Shooter.cpp -------------------------------------------------------------------------------- /game/Func_Shooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Func_Shooter.h -------------------------------------------------------------------------------- /game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Game.h -------------------------------------------------------------------------------- /game/GameEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/GameEdit.cpp -------------------------------------------------------------------------------- /game/GameEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/GameEdit.h -------------------------------------------------------------------------------- /game/GamePlayTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/GamePlayTimer.h -------------------------------------------------------------------------------- /game/Game_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Game_local.cpp -------------------------------------------------------------------------------- /game/Game_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Game_local.h -------------------------------------------------------------------------------- /game/Game_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Game_network.cpp -------------------------------------------------------------------------------- /game/Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Grabber.cpp -------------------------------------------------------------------------------- /game/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Grabber.h -------------------------------------------------------------------------------- /game/Http/HttpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/HttpConnection.cpp -------------------------------------------------------------------------------- /game/Http/HttpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/HttpConnection.h -------------------------------------------------------------------------------- /game/Http/HttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/HttpRequest.cpp -------------------------------------------------------------------------------- /game/Http/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/HttpRequest.h -------------------------------------------------------------------------------- /game/Http/MessageTcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/MessageTcp.cpp -------------------------------------------------------------------------------- /game/Http/MessageTcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Http/MessageTcp.h -------------------------------------------------------------------------------- /game/IK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/IK.cpp -------------------------------------------------------------------------------- /game/IK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/IK.h -------------------------------------------------------------------------------- /game/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/IniFile.cpp -------------------------------------------------------------------------------- /game/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/IniFile.h -------------------------------------------------------------------------------- /game/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Intersection.cpp -------------------------------------------------------------------------------- /game/Intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Intersection.h -------------------------------------------------------------------------------- /game/Inventory/Category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Category.cpp -------------------------------------------------------------------------------- /game/Inventory/Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Category.h -------------------------------------------------------------------------------- /game/Inventory/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Cursor.cpp -------------------------------------------------------------------------------- /game/Inventory/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Cursor.h -------------------------------------------------------------------------------- /game/Inventory/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Inventory.cpp -------------------------------------------------------------------------------- /game/Inventory/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/Inventory.h -------------------------------------------------------------------------------- /game/Inventory/LootType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/LootType.h -------------------------------------------------------------------------------- /game/Inventory/WeaponItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/WeaponItem.cpp -------------------------------------------------------------------------------- /game/Inventory/WeaponItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Inventory/WeaponItem.h -------------------------------------------------------------------------------- /game/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Item.cpp -------------------------------------------------------------------------------- /game/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Item.h -------------------------------------------------------------------------------- /game/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Light.cpp -------------------------------------------------------------------------------- /game/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Light.h -------------------------------------------------------------------------------- /game/LightController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightController.cpp -------------------------------------------------------------------------------- /game/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightController.h -------------------------------------------------------------------------------- /game/LightEstimateSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightEstimateSystem.cpp -------------------------------------------------------------------------------- /game/LightEstimateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightEstimateSystem.h -------------------------------------------------------------------------------- /game/LightGem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightGem.cpp -------------------------------------------------------------------------------- /game/LightGem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LightGem.h -------------------------------------------------------------------------------- /game/Liquid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Liquid.cpp -------------------------------------------------------------------------------- /game/Liquid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Liquid.h -------------------------------------------------------------------------------- /game/Listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Listener.cpp -------------------------------------------------------------------------------- /game/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Listener.h -------------------------------------------------------------------------------- /game/LodComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LodComponent.cpp -------------------------------------------------------------------------------- /game/LodComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/LodComponent.h -------------------------------------------------------------------------------- /game/MatrixSq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MatrixSq.h -------------------------------------------------------------------------------- /game/MeleeWeapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MeleeWeapon.cpp -------------------------------------------------------------------------------- /game/MeleeWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MeleeWeapon.h -------------------------------------------------------------------------------- /game/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Misc.cpp -------------------------------------------------------------------------------- /game/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Misc.h -------------------------------------------------------------------------------- /game/Missions/Download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/Download.cpp -------------------------------------------------------------------------------- /game/Missions/Download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/Download.h -------------------------------------------------------------------------------- /game/Missions/MissionDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/MissionDB.cpp -------------------------------------------------------------------------------- /game/Missions/MissionDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/MissionDB.h -------------------------------------------------------------------------------- /game/Missions/ModInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/ModInfo.cpp -------------------------------------------------------------------------------- /game/Missions/ModInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/ModInfo.h -------------------------------------------------------------------------------- /game/Missions/ModInfoDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/ModInfoDecl.cpp -------------------------------------------------------------------------------- /game/Missions/ModInfoDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Missions/ModInfoDecl.h -------------------------------------------------------------------------------- /game/ModMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ModMenu.cpp -------------------------------------------------------------------------------- /game/ModMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ModMenu.h -------------------------------------------------------------------------------- /game/ModelGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ModelGenerator.cpp -------------------------------------------------------------------------------- /game/ModelGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ModelGenerator.h -------------------------------------------------------------------------------- /game/Moveable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Moveable.cpp -------------------------------------------------------------------------------- /game/Moveable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Moveable.h -------------------------------------------------------------------------------- /game/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Mover.cpp -------------------------------------------------------------------------------- /game/Mover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Mover.h -------------------------------------------------------------------------------- /game/MultiStateMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MultiStateMover.cpp -------------------------------------------------------------------------------- /game/MultiStateMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MultiStateMover.h -------------------------------------------------------------------------------- /game/MultiStateMoverButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MultiStateMoverButton.h -------------------------------------------------------------------------------- /game/MultiplayerGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MultiplayerGame.cpp -------------------------------------------------------------------------------- /game/MultiplayerGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/MultiplayerGame.h -------------------------------------------------------------------------------- /game/Objectives/MissionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Objectives/MissionData.h -------------------------------------------------------------------------------- /game/Objectives/Objective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Objectives/Objective.cpp -------------------------------------------------------------------------------- /game/Objectives/Objective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Objectives/Objective.h -------------------------------------------------------------------------------- /game/OverlaySys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/OverlaySys.cpp -------------------------------------------------------------------------------- /game/OverlaySys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/OverlaySys.h -------------------------------------------------------------------------------- /game/PVSToAASMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PVSToAASMapping.cpp -------------------------------------------------------------------------------- /game/PVSToAASMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PVSToAASMapping.h -------------------------------------------------------------------------------- /game/PickableLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PickableLock.cpp -------------------------------------------------------------------------------- /game/PickableLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PickableLock.h -------------------------------------------------------------------------------- /game/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Player.cpp -------------------------------------------------------------------------------- /game/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Player.h -------------------------------------------------------------------------------- /game/PlayerIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PlayerIcon.cpp -------------------------------------------------------------------------------- /game/PlayerIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PlayerIcon.h -------------------------------------------------------------------------------- /game/PlayerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PlayerView.cpp -------------------------------------------------------------------------------- /game/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/PlayerView.h -------------------------------------------------------------------------------- /game/Projectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Projectile.cpp -------------------------------------------------------------------------------- /game/Projectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Projectile.h -------------------------------------------------------------------------------- /game/ProjectileResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ProjectileResult.cpp -------------------------------------------------------------------------------- /game/ProjectileResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ProjectileResult.h -------------------------------------------------------------------------------- /game/Pvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Pvs.cpp -------------------------------------------------------------------------------- /game/Pvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Pvs.h -------------------------------------------------------------------------------- /game/RawVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/RawVector.cpp -------------------------------------------------------------------------------- /game/RawVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/RawVector.h -------------------------------------------------------------------------------- /game/Relations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Relations.cpp -------------------------------------------------------------------------------- /game/Relations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Relations.h -------------------------------------------------------------------------------- /game/SEED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SEED.cpp -------------------------------------------------------------------------------- /game/SEED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SEED.h -------------------------------------------------------------------------------- /game/SearchManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SearchManager.cpp -------------------------------------------------------------------------------- /game/SearchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SearchManager.h -------------------------------------------------------------------------------- /game/SecurityCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SecurityCamera.cpp -------------------------------------------------------------------------------- /game/SecurityCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SecurityCamera.h -------------------------------------------------------------------------------- /game/Shop/LootRuleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/LootRuleSet.cpp -------------------------------------------------------------------------------- /game/Shop/LootRuleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/LootRuleSet.h -------------------------------------------------------------------------------- /game/Shop/Shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/Shop.cpp -------------------------------------------------------------------------------- /game/Shop/Shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/Shop.h -------------------------------------------------------------------------------- /game/Shop/ShopItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/ShopItem.cpp -------------------------------------------------------------------------------- /game/Shop/ShopItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Shop/ShopItem.h -------------------------------------------------------------------------------- /game/SmokeParticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SmokeParticles.cpp -------------------------------------------------------------------------------- /game/SmokeParticles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SmokeParticles.h -------------------------------------------------------------------------------- /game/SndProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SndProp.cpp -------------------------------------------------------------------------------- /game/SndProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SndProp.h -------------------------------------------------------------------------------- /game/SndPropLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SndPropLoader.cpp -------------------------------------------------------------------------------- /game/SndPropLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/SndPropLoader.h -------------------------------------------------------------------------------- /game/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Sound.cpp -------------------------------------------------------------------------------- /game/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Sound.h -------------------------------------------------------------------------------- /game/StaticMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StaticMulti.cpp -------------------------------------------------------------------------------- /game/StaticMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StaticMulti.h -------------------------------------------------------------------------------- /game/StimResponse/Response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StimResponse/Response.h -------------------------------------------------------------------------------- /game/StimResponse/Stim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StimResponse/Stim.cpp -------------------------------------------------------------------------------- /game/StimResponse/Stim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StimResponse/Stim.h -------------------------------------------------------------------------------- /game/StimResponse/StimType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/StimResponse/StimType.h -------------------------------------------------------------------------------- /game/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Target.cpp -------------------------------------------------------------------------------- /game/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Target.h -------------------------------------------------------------------------------- /game/TimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/TimerManager.cpp -------------------------------------------------------------------------------- /game/TimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/TimerManager.h -------------------------------------------------------------------------------- /game/Trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Trigger.cpp -------------------------------------------------------------------------------- /game/Trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Trigger.h -------------------------------------------------------------------------------- /game/Turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Turret.cpp -------------------------------------------------------------------------------- /game/Turret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Turret.h -------------------------------------------------------------------------------- /game/UserManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/UserManager.cpp -------------------------------------------------------------------------------- /game/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/UserManager.h -------------------------------------------------------------------------------- /game/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Weapon.cpp -------------------------------------------------------------------------------- /game/Weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/Weapon.h -------------------------------------------------------------------------------- /game/WorldSpawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/WorldSpawn.cpp -------------------------------------------------------------------------------- /game/WorldSpawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/WorldSpawn.h -------------------------------------------------------------------------------- /game/ZipLoader/ZipLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ZipLoader/ZipLoader.cpp -------------------------------------------------------------------------------- /game/ZipLoader/ZipLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ZipLoader/ZipLoader.h -------------------------------------------------------------------------------- /game/ai/AAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS.cpp -------------------------------------------------------------------------------- /game/ai/AAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS.h -------------------------------------------------------------------------------- /game/ai/AAS_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS_debug.cpp -------------------------------------------------------------------------------- /game/ai/AAS_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS_local.h -------------------------------------------------------------------------------- /game/ai/AAS_pathing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS_pathing.cpp -------------------------------------------------------------------------------- /game/ai/AAS_routing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AAS_routing.cpp -------------------------------------------------------------------------------- /game/ai/AI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AI.cpp -------------------------------------------------------------------------------- /game/ai/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AI.h -------------------------------------------------------------------------------- /game/ai/AI_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AI_events.cpp -------------------------------------------------------------------------------- /game/ai/AI_pathing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AI_pathing.cpp -------------------------------------------------------------------------------- /game/ai/AreaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AreaManager.cpp -------------------------------------------------------------------------------- /game/ai/AreaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/AreaManager.h -------------------------------------------------------------------------------- /game/ai/DoorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/DoorInfo.cpp -------------------------------------------------------------------------------- /game/ai/DoorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/DoorInfo.h -------------------------------------------------------------------------------- /game/ai/EAS/ClusterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/ClusterInfo.h -------------------------------------------------------------------------------- /game/ai/EAS/EAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/EAS.cpp -------------------------------------------------------------------------------- /game/ai/EAS/EAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/EAS.h -------------------------------------------------------------------------------- /game/ai/EAS/RouteInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/RouteInfo.cpp -------------------------------------------------------------------------------- /game/ai/EAS/RouteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/RouteInfo.h -------------------------------------------------------------------------------- /game/ai/EAS/RouteNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/RouteNode.cpp -------------------------------------------------------------------------------- /game/ai/EAS/RouteNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/EAS/RouteNode.h -------------------------------------------------------------------------------- /game/ai/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Library.h -------------------------------------------------------------------------------- /game/ai/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Memory.cpp -------------------------------------------------------------------------------- /game/ai/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Memory.h -------------------------------------------------------------------------------- /game/ai/Mind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Mind.cpp -------------------------------------------------------------------------------- /game/ai/Mind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Mind.h -------------------------------------------------------------------------------- /game/ai/MoveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/MoveState.cpp -------------------------------------------------------------------------------- /game/ai/MoveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/MoveState.h -------------------------------------------------------------------------------- /game/ai/MovementSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/MovementSubsystem.cpp -------------------------------------------------------------------------------- /game/ai/MovementSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/MovementSubsystem.h -------------------------------------------------------------------------------- /game/ai/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Queue.h -------------------------------------------------------------------------------- /game/ai/States/BlindedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/BlindedState.h -------------------------------------------------------------------------------- /game/ai/States/CombatState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/CombatState.h -------------------------------------------------------------------------------- /game/ai/States/DeadState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/DeadState.cpp -------------------------------------------------------------------------------- /game/ai/States/DeadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/DeadState.h -------------------------------------------------------------------------------- /game/ai/States/FleeState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/FleeState.cpp -------------------------------------------------------------------------------- /game/ai/States/FleeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/FleeState.h -------------------------------------------------------------------------------- /game/ai/States/IdleState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/IdleState.cpp -------------------------------------------------------------------------------- /game/ai/States/IdleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/IdleState.h -------------------------------------------------------------------------------- /game/ai/States/PainState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/PainState.h -------------------------------------------------------------------------------- /game/ai/States/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/State.cpp -------------------------------------------------------------------------------- /game/ai/States/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/States/State.h -------------------------------------------------------------------------------- /game/ai/Subsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Subsystem.cpp -------------------------------------------------------------------------------- /game/ai/Subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Subsystem.h -------------------------------------------------------------------------------- /game/ai/Tasks/CombatTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/CombatTask.h -------------------------------------------------------------------------------- /game/ai/Tasks/FleeTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/FleeTask.cpp -------------------------------------------------------------------------------- /game/ai/Tasks/FleeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/FleeTask.h -------------------------------------------------------------------------------- /game/ai/Tasks/PathSitTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/PathSitTask.h -------------------------------------------------------------------------------- /game/ai/Tasks/PathTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/PathTask.cpp -------------------------------------------------------------------------------- /game/ai/Tasks/PathTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/PathTask.h -------------------------------------------------------------------------------- /game/ai/Tasks/ScriptTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/ScriptTask.h -------------------------------------------------------------------------------- /game/ai/Tasks/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/Task.h -------------------------------------------------------------------------------- /game/ai/Tasks/WaitTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/WaitTask.cpp -------------------------------------------------------------------------------- /game/ai/Tasks/WaitTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/Tasks/WaitTask.h -------------------------------------------------------------------------------- /game/ai/tdmAASFindEscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/ai/tdmAASFindEscape.h -------------------------------------------------------------------------------- /game/anim/Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/anim/Anim.cpp -------------------------------------------------------------------------------- /game/anim/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/anim/Anim.h -------------------------------------------------------------------------------- /game/anim/Anim_Blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/anim/Anim_Blend.cpp -------------------------------------------------------------------------------- /game/anim/Anim_Import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/anim/Anim_Import.cpp -------------------------------------------------------------------------------- /game/anim/Anim_Testmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/anim/Anim_Testmodel.h -------------------------------------------------------------------------------- /game/darkModLAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/darkModLAS.cpp -------------------------------------------------------------------------------- /game/darkModLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/darkModLAS.h -------------------------------------------------------------------------------- /game/declxdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/declxdata.cpp -------------------------------------------------------------------------------- /game/declxdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/declxdata.h -------------------------------------------------------------------------------- /game/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | GetGameAPI 3 | -------------------------------------------------------------------------------- /game/gamesys/Automation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Automation.cpp -------------------------------------------------------------------------------- /game/gamesys/Automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Automation.h -------------------------------------------------------------------------------- /game/gamesys/Callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Callbacks.cpp -------------------------------------------------------------------------------- /game/gamesys/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Class.cpp -------------------------------------------------------------------------------- /game/gamesys/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Class.h -------------------------------------------------------------------------------- /game/gamesys/DebugGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/DebugGraph.cpp -------------------------------------------------------------------------------- /game/gamesys/DebugGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/DebugGraph.h -------------------------------------------------------------------------------- /game/gamesys/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Event.cpp -------------------------------------------------------------------------------- /game/gamesys/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/Event.h -------------------------------------------------------------------------------- /game/gamesys/EventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/EventArgs.h -------------------------------------------------------------------------------- /game/gamesys/SaveGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SaveGame.cpp -------------------------------------------------------------------------------- /game/gamesys/SaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SaveGame.h -------------------------------------------------------------------------------- /game/gamesys/SysCmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SysCmds.cpp -------------------------------------------------------------------------------- /game/gamesys/SysCmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SysCmds.h -------------------------------------------------------------------------------- /game/gamesys/SysCvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SysCvar.cpp -------------------------------------------------------------------------------- /game/gamesys/SysCvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/SysCvar.h -------------------------------------------------------------------------------- /game/gamesys/TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/TypeInfo.cpp -------------------------------------------------------------------------------- /game/gamesys/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/gamesys/TypeInfo.h -------------------------------------------------------------------------------- /game/physics/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Clip.cpp -------------------------------------------------------------------------------- /game/physics/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Clip.h -------------------------------------------------------------------------------- /game/physics/Force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force.cpp -------------------------------------------------------------------------------- /game/physics/Force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force.h -------------------------------------------------------------------------------- /game/physics/Force_Drag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Drag.cpp -------------------------------------------------------------------------------- /game/physics/Force_Drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Drag.h -------------------------------------------------------------------------------- /game/physics/Force_Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Field.h -------------------------------------------------------------------------------- /game/physics/Force_Push.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Push.cpp -------------------------------------------------------------------------------- /game/physics/Force_Push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Push.h -------------------------------------------------------------------------------- /game/physics/Force_Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Force_Spring.h -------------------------------------------------------------------------------- /game/physics/Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Physics.cpp -------------------------------------------------------------------------------- /game/physics/Physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Physics.h -------------------------------------------------------------------------------- /game/physics/Physics_AF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Physics_AF.cpp -------------------------------------------------------------------------------- /game/physics/Physics_AF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Physics_AF.h -------------------------------------------------------------------------------- /game/physics/Physics_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Physics_Base.h -------------------------------------------------------------------------------- /game/physics/Push.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Push.cpp -------------------------------------------------------------------------------- /game/physics/Push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/physics/Push.h -------------------------------------------------------------------------------- /game/precompiled_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/precompiled_game.cpp -------------------------------------------------------------------------------- /game/precompiled_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/precompiled_game.h -------------------------------------------------------------------------------- /game/script/Script_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/game/script/Script_Thread.h -------------------------------------------------------------------------------- /gen_svnversion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/gen_svnversion.cmd -------------------------------------------------------------------------------- /glprogs/HeatHazeWithMaskAndDepth.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/doublevision.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/doublevision.fs -------------------------------------------------------------------------------- /glprogs/doublevision.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/doublevision.vs -------------------------------------------------------------------------------- /glprogs/fresnel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/fresnel.fs -------------------------------------------------------------------------------- /glprogs/fresnel.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/fresnel.vs -------------------------------------------------------------------------------- /glprogs/heatHaze.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/heatHaze.fs -------------------------------------------------------------------------------- /glprogs/heatHaze.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/heatHazeCommon.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/heatHazeCommon.glsl -------------------------------------------------------------------------------- /glprogs/heatHazeWithDepth.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/heatHazeWithMask.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/heatHazeWithMask.fs -------------------------------------------------------------------------------- /glprogs/heatHazeWithMask.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/heatHazeWithMaskAndBlur.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/heatHaze_v2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/heatHaze_v2.fs -------------------------------------------------------------------------------- /glprogs/heatHaze_v2.vs: -------------------------------------------------------------------------------- 1 | #version 330 2 | #pragma tdm_include "heatHaze_v2.vs.glsl" 3 | -------------------------------------------------------------------------------- /glprogs/heatHaze_v2.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/heatHaze_v2.vs.glsl -------------------------------------------------------------------------------- /glprogs/renderTools.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/renderTools.fs -------------------------------------------------------------------------------- /glprogs/renderTools.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/renderTools.vs -------------------------------------------------------------------------------- /glprogs/rotoedge.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/rotoedge.fs -------------------------------------------------------------------------------- /glprogs/rotoedge.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/rotoedge.vs -------------------------------------------------------------------------------- /glprogs/ssao.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/ssao.frag.glsl -------------------------------------------------------------------------------- /glprogs/ssao.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/ssao.vert.glsl -------------------------------------------------------------------------------- /glprogs/ssao_blur.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/ssao_blur.frag.glsl -------------------------------------------------------------------------------- /glprogs/ssao_show.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/ssao_show.frag.glsl -------------------------------------------------------------------------------- /glprogs/tdm_dither.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_dither.glsl -------------------------------------------------------------------------------- /glprogs/tdm_parallax.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_parallax.glsl -------------------------------------------------------------------------------- /glprogs/tdm_querylod.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_querylod.glsl -------------------------------------------------------------------------------- /glprogs/tdm_shadowmaps.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_shadowmaps.glsl -------------------------------------------------------------------------------- /glprogs/tdm_transform.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_transform.glsl -------------------------------------------------------------------------------- /glprogs/tdm_utils.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/tdm_utils.glsl -------------------------------------------------------------------------------- /glprogs/testImageCube.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/testImageCube.fs -------------------------------------------------------------------------------- /glprogs/testImageCube.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/testImageCube.vs -------------------------------------------------------------------------------- /glprogs/volumetric.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/volumetric.vs -------------------------------------------------------------------------------- /glprogs/volumetric_blur.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/glprogs/volumetric_blur.fs -------------------------------------------------------------------------------- /idlib/Allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Allocators.h -------------------------------------------------------------------------------- /idlib/BitMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/BitMsg.cpp -------------------------------------------------------------------------------- /idlib/BitMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/BitMsg.h -------------------------------------------------------------------------------- /idlib/CmdArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/CmdArgs.cpp -------------------------------------------------------------------------------- /idlib/CmdArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/CmdArgs.h -------------------------------------------------------------------------------- /idlib/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Debug.cpp -------------------------------------------------------------------------------- /idlib/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Debug.h -------------------------------------------------------------------------------- /idlib/Dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Dict.cpp -------------------------------------------------------------------------------- /idlib/Dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Dict.h -------------------------------------------------------------------------------- /idlib/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Heap.cpp -------------------------------------------------------------------------------- /idlib/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Heap.h -------------------------------------------------------------------------------- /idlib/Heap_Embedded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Heap_Embedded.cpp -------------------------------------------------------------------------------- /idlib/Heap_Embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Heap_Embedded.h -------------------------------------------------------------------------------- /idlib/LangDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/LangDict.cpp -------------------------------------------------------------------------------- /idlib/LangDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/LangDict.h -------------------------------------------------------------------------------- /idlib/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Lexer.cpp -------------------------------------------------------------------------------- /idlib/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Lexer.h -------------------------------------------------------------------------------- /idlib/Lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Lib.cpp -------------------------------------------------------------------------------- /idlib/Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Lib.h -------------------------------------------------------------------------------- /idlib/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/MapFile.cpp -------------------------------------------------------------------------------- /idlib/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/MapFile.h -------------------------------------------------------------------------------- /idlib/ParallelJobList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/ParallelJobList.cpp -------------------------------------------------------------------------------- /idlib/ParallelJobList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/ParallelJobList.h -------------------------------------------------------------------------------- /idlib/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Parser.cpp -------------------------------------------------------------------------------- /idlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Parser.h -------------------------------------------------------------------------------- /idlib/RevisionTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/RevisionTracker.cpp -------------------------------------------------------------------------------- /idlib/RevisionTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/RevisionTracker.h -------------------------------------------------------------------------------- /idlib/StdFilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/StdFilesystem.cpp -------------------------------------------------------------------------------- /idlib/StdFilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/StdFilesystem.h -------------------------------------------------------------------------------- /idlib/StdString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/StdString.cpp -------------------------------------------------------------------------------- /idlib/StdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/StdString.h -------------------------------------------------------------------------------- /idlib/Str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Str.cpp -------------------------------------------------------------------------------- /idlib/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Str.h -------------------------------------------------------------------------------- /idlib/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Thread.cpp -------------------------------------------------------------------------------- /idlib/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Thread.h -------------------------------------------------------------------------------- /idlib/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Timer.cpp -------------------------------------------------------------------------------- /idlib/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Timer.h -------------------------------------------------------------------------------- /idlib/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Token.cpp -------------------------------------------------------------------------------- /idlib/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/Token.h -------------------------------------------------------------------------------- /idlib/bv/Bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Bounds.cpp -------------------------------------------------------------------------------- /idlib/bv/Bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Bounds.h -------------------------------------------------------------------------------- /idlib/bv/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Box.cpp -------------------------------------------------------------------------------- /idlib/bv/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Box.h -------------------------------------------------------------------------------- /idlib/bv/BoxOctree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/BoxOctree.cpp -------------------------------------------------------------------------------- /idlib/bv/BoxOctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/BoxOctree.h -------------------------------------------------------------------------------- /idlib/bv/Bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Bvh.cpp -------------------------------------------------------------------------------- /idlib/bv/Bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Bvh.h -------------------------------------------------------------------------------- /idlib/bv/CircCone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/CircCone.cpp -------------------------------------------------------------------------------- /idlib/bv/CircCone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/CircCone.h -------------------------------------------------------------------------------- /idlib/bv/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Frustum.cpp -------------------------------------------------------------------------------- /idlib/bv/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Frustum.h -------------------------------------------------------------------------------- /idlib/bv/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Sphere.cpp -------------------------------------------------------------------------------- /idlib/bv/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/bv/Sphere.h -------------------------------------------------------------------------------- /idlib/containers/BTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/BTree.h -------------------------------------------------------------------------------- /idlib/containers/BinHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/BinHeap.h -------------------------------------------------------------------------------- /idlib/containers/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/BitArray.h -------------------------------------------------------------------------------- /idlib/containers/FlexList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/FlexList.h -------------------------------------------------------------------------------- /idlib/containers/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/HashMap.h -------------------------------------------------------------------------------- /idlib/containers/LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/LinkList.h -------------------------------------------------------------------------------- /idlib/containers/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/List.h -------------------------------------------------------------------------------- /idlib/containers/PlaneSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/PlaneSet.h -------------------------------------------------------------------------------- /idlib/containers/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/Queue.h -------------------------------------------------------------------------------- /idlib/containers/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/Stack.h -------------------------------------------------------------------------------- /idlib/containers/StrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/StrList.h -------------------------------------------------------------------------------- /idlib/containers/StrPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/containers/StrPool.h -------------------------------------------------------------------------------- /idlib/geometry/DrawVert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/DrawVert.cpp -------------------------------------------------------------------------------- /idlib/geometry/DrawVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/DrawVert.h -------------------------------------------------------------------------------- /idlib/geometry/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/Surface.cpp -------------------------------------------------------------------------------- /idlib/geometry/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/Surface.h -------------------------------------------------------------------------------- /idlib/geometry/TraceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/TraceModel.h -------------------------------------------------------------------------------- /idlib/geometry/Winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/Winding.cpp -------------------------------------------------------------------------------- /idlib/geometry/Winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/Winding.h -------------------------------------------------------------------------------- /idlib/geometry/Winding2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/geometry/Winding2D.h -------------------------------------------------------------------------------- /idlib/hashing/MD4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/MD4.cpp -------------------------------------------------------------------------------- /idlib/hashing/MD4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/MD4.h -------------------------------------------------------------------------------- /idlib/hashing/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/MD5.cpp -------------------------------------------------------------------------------- /idlib/hashing/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/MD5.h -------------------------------------------------------------------------------- /idlib/hashing/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/sha256.c -------------------------------------------------------------------------------- /idlib/hashing/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/hashing/sha256.h -------------------------------------------------------------------------------- /idlib/math/Angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Angles.cpp -------------------------------------------------------------------------------- /idlib/math/Angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Angles.h -------------------------------------------------------------------------------- /idlib/math/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Complex.cpp -------------------------------------------------------------------------------- /idlib/math/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Complex.h -------------------------------------------------------------------------------- /idlib/math/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Curve.h -------------------------------------------------------------------------------- /idlib/math/Extrapolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Extrapolate.h -------------------------------------------------------------------------------- /idlib/math/Interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Interpolate.h -------------------------------------------------------------------------------- /idlib/math/Lcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Lcp.cpp -------------------------------------------------------------------------------- /idlib/math/Lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Lcp.h -------------------------------------------------------------------------------- /idlib/math/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Line.cpp -------------------------------------------------------------------------------- /idlib/math/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Line.h -------------------------------------------------------------------------------- /idlib/math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Math.cpp -------------------------------------------------------------------------------- /idlib/math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Math.h -------------------------------------------------------------------------------- /idlib/math/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Matrix.cpp -------------------------------------------------------------------------------- /idlib/math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Matrix.h -------------------------------------------------------------------------------- /idlib/math/Ode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Ode.cpp -------------------------------------------------------------------------------- /idlib/math/Ode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Ode.h -------------------------------------------------------------------------------- /idlib/math/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Plane.cpp -------------------------------------------------------------------------------- /idlib/math/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Plane.h -------------------------------------------------------------------------------- /idlib/math/Pluecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Pluecker.cpp -------------------------------------------------------------------------------- /idlib/math/Pluecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Pluecker.h -------------------------------------------------------------------------------- /idlib/math/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Polynomial.cpp -------------------------------------------------------------------------------- /idlib/math/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Polynomial.h -------------------------------------------------------------------------------- /idlib/math/Quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Quat.cpp -------------------------------------------------------------------------------- /idlib/math/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Quat.h -------------------------------------------------------------------------------- /idlib/math/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Random.h -------------------------------------------------------------------------------- /idlib/math/Rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Rotation.cpp -------------------------------------------------------------------------------- /idlib/math/Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Rotation.h -------------------------------------------------------------------------------- /idlib/math/Simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd.cpp -------------------------------------------------------------------------------- /idlib/math/Simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd.h -------------------------------------------------------------------------------- /idlib/math/Simd_AVX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AVX.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_AVX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AVX.h -------------------------------------------------------------------------------- /idlib/math/Simd_AVX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AVX2.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_AVX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AVX2.h -------------------------------------------------------------------------------- /idlib/math/Simd_AltiVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AltiVec.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_AltiVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_AltiVec.h -------------------------------------------------------------------------------- /idlib/math/Simd_Generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_Generic.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_Generic.h -------------------------------------------------------------------------------- /idlib/math/Simd_IdAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_IdAsm.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_IdAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_IdAsm.h -------------------------------------------------------------------------------- /idlib/math/Simd_SSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSE.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSE.h -------------------------------------------------------------------------------- /idlib/math/Simd_SSE2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSE2.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_SSE2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSE2.h -------------------------------------------------------------------------------- /idlib/math/Simd_SSSE3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSSE3.cpp -------------------------------------------------------------------------------- /idlib/math/Simd_SSSE3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Simd_SSSE3.h -------------------------------------------------------------------------------- /idlib/math/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Vector.cpp -------------------------------------------------------------------------------- /idlib/math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/math/Vector.h -------------------------------------------------------------------------------- /idlib/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/precompiled.cpp -------------------------------------------------------------------------------- /idlib/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/precompiled.h -------------------------------------------------------------------------------- /idlib/svnversion.cmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/svnversion.cmake.h -------------------------------------------------------------------------------- /idlib/svnversion_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/svnversion_template.h -------------------------------------------------------------------------------- /idlib/sys/sys_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_assert.cpp -------------------------------------------------------------------------------- /idlib/sys/sys_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_assert.h -------------------------------------------------------------------------------- /idlib/sys/sys_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_defines.h -------------------------------------------------------------------------------- /idlib/sys/sys_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_includes.h -------------------------------------------------------------------------------- /idlib/sys/sys_threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_threading.h -------------------------------------------------------------------------------- /idlib/sys/sys_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/idlib/sys/sys_types.h -------------------------------------------------------------------------------- /renderer/RenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/RenderSystem.cpp -------------------------------------------------------------------------------- /renderer/RenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/RenderSystem.h -------------------------------------------------------------------------------- /renderer/VertexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/VertexCache.cpp -------------------------------------------------------------------------------- /renderer/VertexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/VertexCache.h -------------------------------------------------------------------------------- /renderer/backend/qgl/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/backend/qgl/glad.c -------------------------------------------------------------------------------- /renderer/backend/qgl/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/backend/qgl/glad.h -------------------------------------------------------------------------------- /renderer/backend/qgl/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/backend/qgl/qgl.h -------------------------------------------------------------------------------- /renderer/backend/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/backend/simplex.h -------------------------------------------------------------------------------- /renderer/resources/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/resources/Image.h -------------------------------------------------------------------------------- /renderer/resources/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/resources/Model.h -------------------------------------------------------------------------------- /renderer/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/tr_local.h -------------------------------------------------------------------------------- /renderer/tr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/renderer/tr_main.cpp -------------------------------------------------------------------------------- /sound/efxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/efxlib.h -------------------------------------------------------------------------------- /sound/snd_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_cache.cpp -------------------------------------------------------------------------------- /sound/snd_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_decoder.cpp -------------------------------------------------------------------------------- /sound/snd_efxfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_efxfile.cpp -------------------------------------------------------------------------------- /sound/snd_efxpresets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_efxpresets.cpp -------------------------------------------------------------------------------- /sound/snd_efxpresets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_efxpresets.h -------------------------------------------------------------------------------- /sound/snd_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_emitter.cpp -------------------------------------------------------------------------------- /sound/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_local.h -------------------------------------------------------------------------------- /sound/snd_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_shader.cpp -------------------------------------------------------------------------------- /sound/snd_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_system.cpp -------------------------------------------------------------------------------- /sound/snd_wavefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_wavefile.cpp -------------------------------------------------------------------------------- /sound/snd_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/snd_world.cpp -------------------------------------------------------------------------------- /sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sound/sound.h -------------------------------------------------------------------------------- /sys/cmake/SvnVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/cmake/SvnVersion.cmake -------------------------------------------------------------------------------- /sys/cmake/gcc_32bit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/cmake/gcc_32bit.cmake -------------------------------------------------------------------------------- /sys/cmake/ucm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/cmake/ucm.cmake -------------------------------------------------------------------------------- /sys/linux/casedir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/casedir.patch -------------------------------------------------------------------------------- /sys/linux/dedicated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/dedicated.cpp -------------------------------------------------------------------------------- /sys/linux/glimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/glimp.cpp -------------------------------------------------------------------------------- /sys/linux/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/input.cpp -------------------------------------------------------------------------------- /sys/linux/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/local.h -------------------------------------------------------------------------------- /sys/linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/main.cpp -------------------------------------------------------------------------------- /sys/linux/setup/binary.conf: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /sys/linux/test_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/linux/test_scheduler.c -------------------------------------------------------------------------------- /sys/msvc/natvis/game.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/msvc/natvis/game.natvis -------------------------------------------------------------------------------- /sys/osx/DLL.OSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/DLL.OSX.txt -------------------------------------------------------------------------------- /sys/osx/DOOMController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/DOOMController.h -------------------------------------------------------------------------------- /sys/osx/DOOMController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/DOOMController.mm -------------------------------------------------------------------------------- /sys/osx/Doom 3.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/Doom 3.rsrc -------------------------------------------------------------------------------- /sys/osx/Doom3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/Doom3.icns -------------------------------------------------------------------------------- /sys/osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/Info.plist -------------------------------------------------------------------------------- /sys/osx/PickMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/PickMonitor.cpp -------------------------------------------------------------------------------- /sys/osx/PickMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/PickMonitor.h -------------------------------------------------------------------------------- /sys/osx/PreferencesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/PreferencesDialog.h -------------------------------------------------------------------------------- /sys/osx/macosx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_common.h -------------------------------------------------------------------------------- /sys/osx/macosx_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_display.h -------------------------------------------------------------------------------- /sys/osx/macosx_event.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_event.mm -------------------------------------------------------------------------------- /sys/osx/macosx_glimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_glimp.h -------------------------------------------------------------------------------- /sys/osx/macosx_glimp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_glimp.mm -------------------------------------------------------------------------------- /sys/osx/macosx_guids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_guids.cpp -------------------------------------------------------------------------------- /sys/osx/macosx_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_local.h -------------------------------------------------------------------------------- /sys/osx/macosx_misc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_misc.mm -------------------------------------------------------------------------------- /sys/osx/macosx_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_sys.h -------------------------------------------------------------------------------- /sys/osx/macosx_sys.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_sys.mm -------------------------------------------------------------------------------- /sys/osx/macosx_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_timers.h -------------------------------------------------------------------------------- /sys/osx/macosx_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/macosx_utils.mm -------------------------------------------------------------------------------- /sys/osx/misc/ftoi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/misc/ftoi.patch -------------------------------------------------------------------------------- /sys/osx/showcursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/showcursor -------------------------------------------------------------------------------- /sys/osx/showcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/showcursor.c -------------------------------------------------------------------------------- /sys/osx/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/osx/version.plist -------------------------------------------------------------------------------- /sys/posix/platform_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/platform_osx.cpp -------------------------------------------------------------------------------- /sys/posix/posix_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_input.cpp -------------------------------------------------------------------------------- /sys/posix/posix_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_main.cpp -------------------------------------------------------------------------------- /sys/posix/posix_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_net.cpp -------------------------------------------------------------------------------- /sys/posix/posix_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_public.h -------------------------------------------------------------------------------- /sys/posix/posix_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_signal.cpp -------------------------------------------------------------------------------- /sys/posix/posix_threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/posix/posix_threads.cpp -------------------------------------------------------------------------------- /sys/stub/openal_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/stub/openal_stub.cpp -------------------------------------------------------------------------------- /sys/stub/stub_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/stub/stub_gl.cpp -------------------------------------------------------------------------------- /sys/stub/sys_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/stub/sys_stub.cpp -------------------------------------------------------------------------------- /sys/stub/util_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/stub/util_stub.cpp -------------------------------------------------------------------------------- /sys/sys_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_cpu.cpp -------------------------------------------------------------------------------- /sys/sys_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_local.cpp -------------------------------------------------------------------------------- /sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_local.h -------------------------------------------------------------------------------- /sys/sys_padinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_padinput.cpp -------------------------------------------------------------------------------- /sys/sys_padinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_padinput.h -------------------------------------------------------------------------------- /sys/sys_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/sys_public.h -------------------------------------------------------------------------------- /sys/win32/rc/AFEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/AFEditor.rc -------------------------------------------------------------------------------- /sys/win32/rc/Common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/Common.rc -------------------------------------------------------------------------------- /sys/win32/rc/Debugger.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/Debugger.rc -------------------------------------------------------------------------------- /sys/win32/rc/DeclEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/DeclEditor.rc -------------------------------------------------------------------------------- /sys/win32/rc/GuiEd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/GuiEd.rc -------------------------------------------------------------------------------- /sys/win32/rc/PDAEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/PDAEditor.rc -------------------------------------------------------------------------------- /sys/win32/rc/PropTree.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/PropTree.rc -------------------------------------------------------------------------------- /sys/win32/rc/Radiant.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/Radiant.rc -------------------------------------------------------------------------------- /sys/win32/rc/SoundEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/SoundEditor.rc -------------------------------------------------------------------------------- /sys/win32/rc/doom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/doom.rc -------------------------------------------------------------------------------- /sys/win32/rc/res/BEVEL.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/BEVEL.BMP -------------------------------------------------------------------------------- /sys/win32/rc/res/DEFTEX.WAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/DEFTEX.WAL -------------------------------------------------------------------------------- /sys/win32/rc/res/ENDCAP.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/ENDCAP.BMP -------------------------------------------------------------------------------- /sys/win32/rc/res/IBEVEL.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/IBEVEL.BMP -------------------------------------------------------------------------------- /sys/win32/rc/res/Q.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/Q.BMP -------------------------------------------------------------------------------- /sys/win32/rc/res/cchsb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/cchsb.bmp -------------------------------------------------------------------------------- /sys/win32/rc/res/ccrgb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/ccrgb.bmp -------------------------------------------------------------------------------- /sys/win32/rc/res/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/doom.ico -------------------------------------------------------------------------------- /sys/win32/rc/res/fpoint.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/fpoint.cur -------------------------------------------------------------------------------- /sys/win32/rc/res/guied.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/guied.ico -------------------------------------------------------------------------------- /sys/win32/rc/res/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/icon2.ico -------------------------------------------------------------------------------- /sys/win32/rc/res/qe3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/rc/res/qe3.ico -------------------------------------------------------------------------------- /sys/win32/win_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_cpu.cpp -------------------------------------------------------------------------------- /sys/win32/win_gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_gamma.cpp -------------------------------------------------------------------------------- /sys/win32/win_glimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_glimp.cpp -------------------------------------------------------------------------------- /sys/win32/win_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_input.cpp -------------------------------------------------------------------------------- /sys/win32/win_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_local.h -------------------------------------------------------------------------------- /sys/win32/win_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_main.cpp -------------------------------------------------------------------------------- /sys/win32/win_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_net.cpp -------------------------------------------------------------------------------- /sys/win32/win_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_shared.cpp -------------------------------------------------------------------------------- /sys/win32/win_syscon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_syscon.cpp -------------------------------------------------------------------------------- /sys/win32/win_wndproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/sys/win32/win_wndproc.cpp -------------------------------------------------------------------------------- /tdm_installer/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/Actions.cpp -------------------------------------------------------------------------------- /tdm_installer/Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/Actions.h -------------------------------------------------------------------------------- /tdm_installer/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/Constants.h -------------------------------------------------------------------------------- /tdm_installer/GuiGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/GuiGlobal.cpp -------------------------------------------------------------------------------- /tdm_installer/GuiGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/GuiGlobal.h -------------------------------------------------------------------------------- /tdm_installer/GuiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/GuiUtils.cpp -------------------------------------------------------------------------------- /tdm_installer/GuiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/GuiUtils.h -------------------------------------------------------------------------------- /tdm_installer/LogUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/LogUtils.cpp -------------------------------------------------------------------------------- /tdm_installer/LogUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/LogUtils.h -------------------------------------------------------------------------------- /tdm_installer/OsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/OsUtils.cpp -------------------------------------------------------------------------------- /tdm_installer/OsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/OsUtils.h -------------------------------------------------------------------------------- /tdm_installer/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/State.cpp -------------------------------------------------------------------------------- /tdm_installer/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/State.h -------------------------------------------------------------------------------- /tdm_installer/StoredState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/StoredState.h -------------------------------------------------------------------------------- /tdm_installer/WinIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/WinIcon.ico -------------------------------------------------------------------------------- /tdm_installer/zipsync/Ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_installer/zipsync/Ini.h -------------------------------------------------------------------------------- /tdm_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/CMakeLists.txt -------------------------------------------------------------------------------- /tdm_package/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/CRC.h -------------------------------------------------------------------------------- /tdm_package/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/Constants.h -------------------------------------------------------------------------------- /tdm_package/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/File.cpp -------------------------------------------------------------------------------- /tdm_package/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/File.h -------------------------------------------------------------------------------- /tdm_package/LogWriters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/LogWriters.h -------------------------------------------------------------------------------- /tdm_package/Pk4Mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/Pk4Mappings.h -------------------------------------------------------------------------------- /tdm_package/StdFilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/StdFilesystem.h -------------------------------------------------------------------------------- /tdm_package/StdFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/StdFormat.h -------------------------------------------------------------------------------- /tdm_package/StdString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/StdString.cpp -------------------------------------------------------------------------------- /tdm_package/StdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/StdString.h -------------------------------------------------------------------------------- /tdm_package/SvnClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/SvnClient.cpp -------------------------------------------------------------------------------- /tdm_package/SvnClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/SvnClient.h -------------------------------------------------------------------------------- /tdm_package/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/ThreadPool.h -------------------------------------------------------------------------------- /tdm_package/TraceLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/TraceLog.cpp -------------------------------------------------------------------------------- /tdm_package/TraceLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/TraceLog.h -------------------------------------------------------------------------------- /tdm_package/Zip/TdmZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/Zip/TdmZip.cpp -------------------------------------------------------------------------------- /tdm_package/Zip/TdmZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/Zip/TdmZip.h -------------------------------------------------------------------------------- /tdm_package/tdm_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tdm_package/tdm_package.cpp -------------------------------------------------------------------------------- /tests/TestRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tests/TestRun.cpp -------------------------------------------------------------------------------- /tests/TestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tests/TestRun.h -------------------------------------------------------------------------------- /tests/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tests/testing.h -------------------------------------------------------------------------------- /tools/Help/MT_help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MT_help.htm -------------------------------------------------------------------------------- /tools/Help/MVH_Controls.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MVH_Controls.htm -------------------------------------------------------------------------------- /tools/Help/MVH_Issues.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MVH_Issues.htm -------------------------------------------------------------------------------- /tools/Help/MVH_Misc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MVH_Misc.htm -------------------------------------------------------------------------------- /tools/Help/MVH_Mouse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MVH_Mouse.htm -------------------------------------------------------------------------------- /tools/Help/MVH_Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/MVH_Overview.htm -------------------------------------------------------------------------------- /tools/Help/Tools.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/Tools.hhc -------------------------------------------------------------------------------- /tools/Help/Tools.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/Tools.hhk -------------------------------------------------------------------------------- /tools/Help/Tools.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/Tools.hhp -------------------------------------------------------------------------------- /tools/Help/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/default.htm -------------------------------------------------------------------------------- /tools/Help/images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/images/Play.png -------------------------------------------------------------------------------- /tools/Help/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/Help/images/stop.png -------------------------------------------------------------------------------- /tools/af/DialogAF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAF.cpp -------------------------------------------------------------------------------- /tools/af/DialogAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAF.h -------------------------------------------------------------------------------- /tools/af/DialogAFBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFBody.cpp -------------------------------------------------------------------------------- /tools/af/DialogAFBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFBody.h -------------------------------------------------------------------------------- /tools/af/DialogAFName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFName.cpp -------------------------------------------------------------------------------- /tools/af/DialogAFName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFName.h -------------------------------------------------------------------------------- /tools/af/DialogAFView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFView.cpp -------------------------------------------------------------------------------- /tools/af/DialogAFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/af/DialogAFView.h -------------------------------------------------------------------------------- /tools/comafx/CDIB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/CDIB.cpp -------------------------------------------------------------------------------- /tools/comafx/CDIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/CDIB.h -------------------------------------------------------------------------------- /tools/comafx/DialogName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/DialogName.cpp -------------------------------------------------------------------------------- /tools/comafx/DialogName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/DialogName.h -------------------------------------------------------------------------------- /tools/comafx/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/StdAfx.cpp -------------------------------------------------------------------------------- /tools/comafx/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/StdAfx.h -------------------------------------------------------------------------------- /tools/comafx/VectorCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/VectorCtl.cpp -------------------------------------------------------------------------------- /tools/comafx/VectorCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/VectorCtl.h -------------------------------------------------------------------------------- /tools/comafx/riched20.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/comafx/riched20.tlh -------------------------------------------------------------------------------- /tools/common/AlphaPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/AlphaPopup.cpp -------------------------------------------------------------------------------- /tools/common/ColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/ColorButton.h -------------------------------------------------------------------------------- /tools/common/MaskEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/MaskEdit.cpp -------------------------------------------------------------------------------- /tools/common/MaskEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/MaskEdit.h -------------------------------------------------------------------------------- /tools/common/PropertyGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/PropertyGrid.h -------------------------------------------------------------------------------- /tools/common/RollupPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/RollupPanel.h -------------------------------------------------------------------------------- /tools/common/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/SpinButton.cpp -------------------------------------------------------------------------------- /tools/common/SpinButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/common/SpinButton.h -------------------------------------------------------------------------------- /tools/compilers/aas/Brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/compilers/aas/Brush.h -------------------------------------------------------------------------------- /tools/compilers/dmap/dmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/compilers/dmap/dmap.h -------------------------------------------------------------------------------- /tools/compilers/roqvq/roq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/compilers/roqvq/roq.h -------------------------------------------------------------------------------- /tools/compilers/roqvq/roq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/compilers/roqvq/roq.m -------------------------------------------------------------------------------- /tools/decl/DialogDeclNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/decl/DialogDeclNew.h -------------------------------------------------------------------------------- /tools/edit_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/edit_public.h -------------------------------------------------------------------------------- /tools/edit_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/edit_stub.cpp -------------------------------------------------------------------------------- /tools/guied/GEApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEApp.cpp -------------------------------------------------------------------------------- /tools/guied/GEApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEApp.h -------------------------------------------------------------------------------- /tools/guied/GEModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEModifier.cpp -------------------------------------------------------------------------------- /tools/guied/GEModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEModifier.h -------------------------------------------------------------------------------- /tools/guied/GENavigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GENavigator.cpp -------------------------------------------------------------------------------- /tools/guied/GENavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GENavigator.h -------------------------------------------------------------------------------- /tools/guied/GEOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEOptions.cpp -------------------------------------------------------------------------------- /tools/guied/GEOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEOptions.h -------------------------------------------------------------------------------- /tools/guied/GEOptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEOptionsDlg.h -------------------------------------------------------------------------------- /tools/guied/GEProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEProperties.h -------------------------------------------------------------------------------- /tools/guied/GEStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEStatusBar.cpp -------------------------------------------------------------------------------- /tools/guied/GEStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEStatusBar.h -------------------------------------------------------------------------------- /tools/guied/GETransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GETransformer.h -------------------------------------------------------------------------------- /tools/guied/GEViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEViewer.cpp -------------------------------------------------------------------------------- /tools/guied/GEViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEViewer.h -------------------------------------------------------------------------------- /tools/guied/GEWorkspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEWorkspace.cpp -------------------------------------------------------------------------------- /tools/guied/GEWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/GEWorkspace.h -------------------------------------------------------------------------------- /tools/guied/guied.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/guied/guied.cpp -------------------------------------------------------------------------------- /tools/radiant/CSG.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CSG.CPP -------------------------------------------------------------------------------- /tools/radiant/CamWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CamWnd.cpp -------------------------------------------------------------------------------- /tools/radiant/CamWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CamWnd.h -------------------------------------------------------------------------------- /tools/radiant/CapDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CapDialog.cpp -------------------------------------------------------------------------------- /tools/radiant/CapDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CapDialog.h -------------------------------------------------------------------------------- /tools/radiant/CommandsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CommandsDlg.h -------------------------------------------------------------------------------- /tools/radiant/CommentsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CommentsDlg.h -------------------------------------------------------------------------------- /tools/radiant/ConsoleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ConsoleDlg.h -------------------------------------------------------------------------------- /tools/radiant/CurveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CurveDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/CurveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/CurveDlg.h -------------------------------------------------------------------------------- /tools/radiant/DRAG.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DRAG.CPP -------------------------------------------------------------------------------- /tools/radiant/DialogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DialogInfo.h -------------------------------------------------------------------------------- /tools/radiant/DialogThick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DialogThick.h -------------------------------------------------------------------------------- /tools/radiant/DlgCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DlgCamera.cpp -------------------------------------------------------------------------------- /tools/radiant/DlgCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DlgCamera.h -------------------------------------------------------------------------------- /tools/radiant/DlgEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DlgEvent.cpp -------------------------------------------------------------------------------- /tools/radiant/DlgEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/DlgEvent.h -------------------------------------------------------------------------------- /tools/radiant/ECLASS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ECLASS.CPP -------------------------------------------------------------------------------- /tools/radiant/EditViewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EditViewDlg.h -------------------------------------------------------------------------------- /tools/radiant/EditorBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EditorBrush.h -------------------------------------------------------------------------------- /tools/radiant/EditorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EditorMap.cpp -------------------------------------------------------------------------------- /tools/radiant/EditorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EditorMap.h -------------------------------------------------------------------------------- /tools/radiant/EntityDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EntityDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/EntityDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/EntityDlg.h -------------------------------------------------------------------------------- /tools/radiant/GLWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/GLWidget.cpp -------------------------------------------------------------------------------- /tools/radiant/GLWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/GLWidget.h -------------------------------------------------------------------------------- /tools/radiant/GetString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/GetString.cpp -------------------------------------------------------------------------------- /tools/radiant/GetString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/GetString.h -------------------------------------------------------------------------------- /tools/radiant/LightDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/LightDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/LightDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/LightDlg.h -------------------------------------------------------------------------------- /tools/radiant/MRU.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MRU.CPP -------------------------------------------------------------------------------- /tools/radiant/MRU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MRU.H -------------------------------------------------------------------------------- /tools/radiant/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MainFrm.cpp -------------------------------------------------------------------------------- /tools/radiant/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MainFrm.h -------------------------------------------------------------------------------- /tools/radiant/MapInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MapInfo.cpp -------------------------------------------------------------------------------- /tools/radiant/MapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/MapInfo.h -------------------------------------------------------------------------------- /tools/radiant/NewProjDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/NewProjDlg.h -------------------------------------------------------------------------------- /tools/radiant/NewTexWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/NewTexWnd.cpp -------------------------------------------------------------------------------- /tools/radiant/NewTexWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/NewTexWnd.h -------------------------------------------------------------------------------- /tools/radiant/PARSE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PARSE.CPP -------------------------------------------------------------------------------- /tools/radiant/PARSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PARSE.H -------------------------------------------------------------------------------- /tools/radiant/PMESH.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PMESH.CPP -------------------------------------------------------------------------------- /tools/radiant/PMESH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PMESH.H -------------------------------------------------------------------------------- /tools/radiant/PatchDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PatchDialog.h -------------------------------------------------------------------------------- /tools/radiant/PointFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PointFile.cpp -------------------------------------------------------------------------------- /tools/radiant/PrefsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PrefsDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/PrefsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PrefsDlg.h -------------------------------------------------------------------------------- /tools/radiant/PreviewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/PreviewDlg.h -------------------------------------------------------------------------------- /tools/radiant/QE3.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/QE3.CPP -------------------------------------------------------------------------------- /tools/radiant/QE3.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/QE3.H -------------------------------------------------------------------------------- /tools/radiant/QEDEFS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/QEDEFS.H -------------------------------------------------------------------------------- /tools/radiant/QERTYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/QERTYPES.H -------------------------------------------------------------------------------- /tools/radiant/Radiant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Radiant.cpp -------------------------------------------------------------------------------- /tools/radiant/Radiant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Radiant.h -------------------------------------------------------------------------------- /tools/radiant/RotateDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/RotateDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/RotateDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/RotateDlg.h -------------------------------------------------------------------------------- /tools/radiant/SELECT.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/SELECT.CPP -------------------------------------------------------------------------------- /tools/radiant/SELECT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/SELECT.H -------------------------------------------------------------------------------- /tools/radiant/ScaleDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ScaleDialog.h -------------------------------------------------------------------------------- /tools/radiant/SurfaceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/SurfaceDlg.h -------------------------------------------------------------------------------- /tools/radiant/TabsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/TabsDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/TabsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/TabsDlg.h -------------------------------------------------------------------------------- /tools/radiant/TextureBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/TextureBar.h -------------------------------------------------------------------------------- /tools/radiant/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Textures.h -------------------------------------------------------------------------------- /tools/radiant/Undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Undo.cpp -------------------------------------------------------------------------------- /tools/radiant/Undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Undo.h -------------------------------------------------------------------------------- /tools/radiant/VERTSEL.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/VERTSEL.CPP -------------------------------------------------------------------------------- /tools/radiant/WIN_DLG.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WIN_DLG.CPP -------------------------------------------------------------------------------- /tools/radiant/WIN_QE3.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WIN_QE3.CPP -------------------------------------------------------------------------------- /tools/radiant/WIN_QE3.RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WIN_QE3.RC2 -------------------------------------------------------------------------------- /tools/radiant/WaitDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WaitDlg.cpp -------------------------------------------------------------------------------- /tools/radiant/WaitDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WaitDlg.h -------------------------------------------------------------------------------- /tools/radiant/WaveOpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WaveOpen.cpp -------------------------------------------------------------------------------- /tools/radiant/WaveOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/WaveOpen.h -------------------------------------------------------------------------------- /tools/radiant/XYWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/XYWnd.cpp -------------------------------------------------------------------------------- /tools/radiant/XYWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/XYWnd.h -------------------------------------------------------------------------------- /tools/radiant/Z.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Z.CPP -------------------------------------------------------------------------------- /tools/radiant/Z.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/Z.H -------------------------------------------------------------------------------- /tools/radiant/ZClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ZClip.cpp -------------------------------------------------------------------------------- /tools/radiant/ZClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ZClip.h -------------------------------------------------------------------------------- /tools/radiant/ZWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ZWnd.cpp -------------------------------------------------------------------------------- /tools/radiant/ZWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/ZWnd.h -------------------------------------------------------------------------------- /tools/radiant/autocaulk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/autocaulk.cpp -------------------------------------------------------------------------------- /tools/radiant/autocaulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/autocaulk.h -------------------------------------------------------------------------------- /tools/radiant/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/cmdlib.cpp -------------------------------------------------------------------------------- /tools/radiant/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/cmdlib.h -------------------------------------------------------------------------------- /tools/radiant/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/splines.cpp -------------------------------------------------------------------------------- /tools/radiant/splines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/radiant/splines.h -------------------------------------------------------------------------------- /tools/sound/DialogSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/sound/DialogSound.cpp -------------------------------------------------------------------------------- /tools/sound/DialogSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/tools/sound/DialogSound.h -------------------------------------------------------------------------------- /ui/BindWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/BindWindow.cpp -------------------------------------------------------------------------------- /ui/BindWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/BindWindow.h -------------------------------------------------------------------------------- /ui/ChoiceWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ChoiceWindow.cpp -------------------------------------------------------------------------------- /ui/ChoiceWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ChoiceWindow.h -------------------------------------------------------------------------------- /ui/DeviceContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/DeviceContext.cpp -------------------------------------------------------------------------------- /ui/DeviceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/DeviceContext.h -------------------------------------------------------------------------------- /ui/EditWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/EditWindow.cpp -------------------------------------------------------------------------------- /ui/EditWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/EditWindow.h -------------------------------------------------------------------------------- /ui/FieldWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/FieldWindow.cpp -------------------------------------------------------------------------------- /ui/FieldWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/FieldWindow.h -------------------------------------------------------------------------------- /ui/GameWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/GameWindow.cpp -------------------------------------------------------------------------------- /ui/GameWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/GameWindow.h -------------------------------------------------------------------------------- /ui/GuiScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/GuiScript.cpp -------------------------------------------------------------------------------- /ui/GuiScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/GuiScript.h -------------------------------------------------------------------------------- /ui/ListGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ListGUI.cpp -------------------------------------------------------------------------------- /ui/ListGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ListGUI.h -------------------------------------------------------------------------------- /ui/ListGUILocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ListGUILocal.h -------------------------------------------------------------------------------- /ui/ListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ListWindow.cpp -------------------------------------------------------------------------------- /ui/ListWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/ListWindow.h -------------------------------------------------------------------------------- /ui/MarkerWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/MarkerWindow.cpp -------------------------------------------------------------------------------- /ui/MarkerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/MarkerWindow.h -------------------------------------------------------------------------------- /ui/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/Rectangle.h -------------------------------------------------------------------------------- /ui/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/RegExp.cpp -------------------------------------------------------------------------------- /ui/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/RegExp.h -------------------------------------------------------------------------------- /ui/RegExp_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/RegExp_old.h -------------------------------------------------------------------------------- /ui/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/RenderWindow.cpp -------------------------------------------------------------------------------- /ui/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/RenderWindow.h -------------------------------------------------------------------------------- /ui/SimpleWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/SimpleWindow.cpp -------------------------------------------------------------------------------- /ui/SimpleWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/SimpleWindow.h -------------------------------------------------------------------------------- /ui/SliderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/SliderWindow.cpp -------------------------------------------------------------------------------- /ui/SliderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/SliderWindow.h -------------------------------------------------------------------------------- /ui/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/UserInterface.cpp -------------------------------------------------------------------------------- /ui/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/UserInterface.h -------------------------------------------------------------------------------- /ui/UserInterfaceLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/UserInterfaceLocal.h -------------------------------------------------------------------------------- /ui/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/Window.cpp -------------------------------------------------------------------------------- /ui/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/Window.h -------------------------------------------------------------------------------- /ui/Winvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/Winvar.cpp -------------------------------------------------------------------------------- /ui/Winvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fholger/thedarkmod/HEAD/ui/Winvar.h --------------------------------------------------------------------------------