├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cmake └── mingw-ubuntu.cmake ├── common ├── CMakeLists.txt ├── include │ └── common │ │ ├── ComPtr.h │ │ ├── DynamicLinkLibrary.h │ │ ├── HttpRequest.h │ │ ├── config │ │ ├── BuildConfig.h │ │ ├── CfgVar.h │ │ ├── GameConfig.h │ │ └── RegKey.h │ │ ├── error │ │ ├── Exception.h │ │ ├── Win32Error.h │ │ ├── d3d-error.h │ │ └── error-utils.h │ │ ├── rfproto.h │ │ ├── utils │ │ ├── enum-bitwise-operators.h │ │ ├── iterable-utils.h │ │ ├── list-utils.h │ │ ├── mem-pool.h │ │ ├── os-utils.h │ │ ├── perf-utils.h │ │ └── string-utils.h │ │ └── version │ │ ├── version.h │ │ └── version.rc └── src │ ├── HttpRequest.cpp │ ├── config │ └── GameConfig.cpp │ ├── error │ └── d3d-error.cpp │ └── utils │ └── os-utils.cpp ├── crash_handler ├── AdditionalInfoDlg.h ├── CMakeLists.txt ├── CommandLineInfo.h ├── CrashReportApp.cpp ├── CrashReportApp.h ├── MainDlg.cpp ├── MainDlg.h ├── MiniDumpHelper.cpp ├── MiniDumpHelper.h ├── ProcessMemoryCache.h ├── ProgressDlg.h ├── TextDumpHelper.h ├── ZipHelper.h ├── config.h ├── main.cpp └── res │ ├── CrashHandler.manifest │ ├── DF.bmp │ ├── resource.h │ ├── resources.rc │ └── resources2.rc ├── crash_handler_stub ├── CMakeLists.txt ├── WatchDogTimer.cpp ├── crash_handler_stub.cpp └── include │ ├── crash_handler_stub.h │ └── crash_handler_stub │ ├── WatchDogTimer.h │ └── custom_exceptions.h ├── docs ├── BUILDING.md ├── CHANGELOG.md └── graphics_comparison │ ├── README.md │ ├── hendrix-df.png │ ├── hendrix-rf.png │ ├── lightmaps-df.png │ ├── lightmaps-rf.png │ ├── menu-df.png │ ├── menu-rf.png │ ├── mesh-lighting-df.png │ ├── mesh-lighting-rf.png │ ├── mirror-df.png │ ├── mirror-rf.png │ ├── railgun-scanner-df.png │ ├── railgun-scanner-rf.png │ ├── sniper-rifle-scope-df.png │ └── sniper-rifle-scope-rf.png ├── editor_patch ├── CMakeLists.txt ├── exports.h ├── graphics.cpp ├── level.cpp ├── main.cpp ├── mfc_types.h ├── resources.h ├── resources.rc ├── resources │ └── icon.ico ├── trigger.cpp └── vtypes.h ├── game_patch ├── CMakeLists.txt ├── bmpman │ ├── bmpman.cpp │ ├── bmpman.h │ ├── dds.cpp │ ├── dds.h │ ├── fmt_conv.cpp │ └── fmt_conv_templates.h ├── debug │ ├── debug.cpp │ ├── debug.h │ ├── debug_cmd.cpp │ ├── debug_internal.h │ ├── debugwinmsg.cpp │ ├── obj_debug.cpp │ ├── profiler.cpp │ └── unresponsive.cpp ├── graphics │ ├── bink.cpp │ ├── d3d11 │ │ ├── gr_d3d11.cpp │ │ ├── gr_d3d11.h │ │ ├── gr_d3d11_buffer.h │ │ ├── gr_d3d11_context.cpp │ │ ├── gr_d3d11_context.h │ │ ├── gr_d3d11_dynamic_geometry.cpp │ │ ├── gr_d3d11_dynamic_geometry.h │ │ ├── gr_d3d11_error.cpp │ │ ├── gr_d3d11_hooks.cpp │ │ ├── gr_d3d11_mesh.cpp │ │ ├── gr_d3d11_mesh.h │ │ ├── gr_d3d11_shader.cpp │ │ ├── gr_d3d11_shader.h │ │ ├── gr_d3d11_solid.cpp │ │ ├── gr_d3d11_solid.h │ │ ├── gr_d3d11_state.cpp │ │ ├── gr_d3d11_state.h │ │ ├── gr_d3d11_texture.cpp │ │ ├── gr_d3d11_texture.h │ │ ├── gr_d3d11_transform.h │ │ └── gr_d3d11_vertex.h │ ├── gr.cpp │ ├── gr.h │ ├── gr_font.cpp │ ├── gr_internal.h │ ├── gr_light.cpp │ └── legacy │ │ ├── gr_d3d.cpp │ │ ├── gr_d3d.h │ │ ├── gr_d3d_capture.cpp │ │ ├── gr_d3d_gamma.cpp │ │ ├── gr_d3d_internal.h │ │ └── gr_d3d_texture.cpp ├── hud │ ├── hud.cpp │ ├── hud.h │ ├── hud_internal.h │ ├── hud_personas.cpp │ ├── hud_status.cpp │ ├── hud_weapons.cpp │ ├── message_log.cpp │ ├── multi_hud.cpp │ ├── multi_hud_chat.cpp │ ├── multi_scoreboard.cpp │ ├── multi_scoreboard.h │ ├── multi_spectate.cpp │ ├── multi_spectate.h │ └── weapon_select.cpp ├── input │ ├── input.h │ ├── key.cpp │ └── mouse.cpp ├── main │ ├── main.cpp │ └── main.h ├── misc │ ├── camera.cpp │ ├── character.cpp │ ├── g_solid.cpp │ ├── game.cpp │ ├── high_fps.cpp │ ├── high_fps.h │ ├── level.cpp │ ├── level.h │ ├── main_menu.cpp │ ├── misc.cpp │ ├── misc.h │ ├── player.cpp │ ├── player.h │ ├── player_fpgun.cpp │ ├── save_restore.cpp │ ├── ui.cpp │ ├── vpackfile.cpp │ └── vpackfile.h ├── multi │ ├── commands.cpp │ ├── faction_files.cpp │ ├── faction_files.h │ ├── kill.cpp │ ├── level_download.cpp │ ├── multi.cpp │ ├── multi.h │ ├── multi_ban.cpp │ ├── multi_private.h │ ├── multi_tdm.cpp │ ├── network.cpp │ ├── server.cpp │ ├── server.h │ ├── server_internal.h │ └── votes.cpp ├── object │ ├── cutscene.cpp │ ├── entity.cpp │ ├── event.cpp │ ├── glare.cpp │ ├── item.cpp │ ├── monitor.cpp │ ├── obj_light.cpp │ ├── object.cpp │ ├── object.h │ ├── object_private.h │ ├── particle.cpp │ ├── trigger.cpp │ └── weapon.cpp ├── os │ ├── autocomplete.cpp │ ├── commands.cpp │ ├── console.cpp │ ├── console.h │ ├── frametime.cpp │ ├── os.cpp │ ├── os.h │ ├── timer.cpp │ ├── win32_console.cpp │ └── win32_console.h ├── purefaction │ ├── pf.cpp │ ├── pf.h │ ├── pf_ac.h │ ├── pf_ac_stubs.cpp │ └── pf_packets.h ├── res │ ├── easter_egg.bin │ └── resources.rc ├── rf │ ├── ai.h │ ├── bmpman.h │ ├── character.h │ ├── clutter.h │ ├── collide.h │ ├── corpse.h │ ├── crt.h │ ├── cutscene.h │ ├── debris.h │ ├── entity.h │ ├── event.h │ ├── file │ │ ├── file.h │ │ └── packfile.h │ ├── gameseq.h │ ├── geometry.h │ ├── glare.h │ ├── gr │ │ ├── gr.h │ │ ├── gr_direct3d.h │ │ ├── gr_font.h │ │ └── gr_light.h │ ├── hud.h │ ├── input.h │ ├── item.h │ ├── level.h │ ├── localize.h │ ├── math │ │ ├── ix.h │ │ ├── matrix.h │ │ ├── plane.h │ │ ├── quaternion.h │ │ └── vector.h │ ├── misc.h │ ├── mover.h │ ├── multi.h │ ├── object.h │ ├── os │ │ ├── array.h │ │ ├── console.h │ │ ├── frametime.h │ │ ├── linklist.h │ │ ├── os.h │ │ ├── string.h │ │ ├── timer.h │ │ ├── timestamp.h │ │ └── vtypes.h │ ├── parse.h │ ├── particle_emitter.h │ ├── physics.h │ ├── player │ │ ├── camera.h │ │ ├── control_config.h │ │ ├── player.h │ │ └── player_fpgun.h │ ├── save_restore.h │ ├── sound │ │ ├── sound.h │ │ └── sound_ds.h │ ├── trigger.h │ ├── ui.h │ ├── v3d.h │ ├── vmesh.h │ └── weapon.h └── sound │ ├── sound.cpp │ ├── sound.h │ └── sound_ds.cpp ├── launcher ├── AboutDlg.cpp ├── AboutDlg.h ├── CMakeLists.txt ├── DashFactionLauncher.rc ├── LauncherApp.cpp ├── LauncherApp.h ├── LauncherCommandLineInfo.h ├── MainDlg.cpp ├── MainDlg.h ├── OptionsAudioDlg.cpp ├── OptionsAudioDlg.h ├── OptionsDisplayDlg.cpp ├── OptionsDisplayDlg.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── OptionsGraphicsDlg.cpp ├── OptionsGraphicsDlg.h ├── OptionsInputDlg.cpp ├── OptionsInputDlg.h ├── OptionsInterfaceDlg.cpp ├── OptionsInterfaceDlg.h ├── OptionsMiscDlg.cpp ├── OptionsMiscDlg.h ├── OptionsMultiplayerDlg.cpp ├── OptionsMultiplayerDlg.h ├── main.cpp ├── res │ ├── DF.ico │ ├── DashFactionLauncher.manifest │ ├── header.bmp │ └── launcher.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── launcher_common ├── CMakeLists.txt ├── DllInjector.cpp ├── DllInjector.h ├── InjectingProcessLauncher.cpp ├── InjectingProcessLauncher.h ├── PatchedAppLauncher.cpp ├── Process.h ├── Thread.h ├── UpdateChecker.cpp ├── VideoDeviceInfoProviderD3D11.cpp ├── VideoDeviceInfoProviderD3D8.cpp ├── VideoDeviceInfoProviderD3D9.cpp ├── Win32Handle.h └── include │ └── launcher_common │ ├── PatchedAppLauncher.h │ ├── UpdateChecker.h │ └── VideoDeviceInfoProvider.h ├── mesh_patches ├── .gitignore ├── Generator_Small01-v3m-patch.txt ├── Generator_Small02-v3m-patch.txt ├── LavaTester01-v3m-patch.txt ├── README.md ├── Vat1-v3m-patch.txt ├── binarypatcher.py ├── coffeesmokedtbl2-v3m-patch.txt ├── coffeesmokedtblAlt-v3m-patch.txt ├── envirosuit1-v3m-patch.txt └── hendrix-v3c-patch.txt ├── patch_common ├── CMakeLists.txt ├── CallHook.cpp ├── CodeBuffer.cpp ├── CodeInjection.cpp ├── FunHook.cpp ├── MemUtils.cpp └── include │ └── patch_common │ ├── AsmOpcodes.h │ ├── AsmWriter.h │ ├── CallHook.h │ ├── CallPrePostHook.h │ ├── CodeBuffer.h │ ├── CodeInjection.h │ ├── FunHook.h │ ├── FunPrePostHook.h │ ├── InlineAsm.h │ ├── Installable.h │ ├── MemUtils.h │ ├── ShortTypes.h │ ├── StaticBufferResizePatch.h │ └── Traits.h ├── resources ├── CMakeLists.txt ├── RED.chm ├── RED.exe.manifest ├── audio │ ├── Laser loop.wav │ └── fp_shotgun_reload.wav ├── fonts │ ├── biggerfont.vf │ ├── boldfont.ttf │ └── regularfont.ttf ├── images │ ├── 128blackcircle.tga │ ├── DF_green.tga │ ├── DF_green_1.tga │ ├── DF_red.tga │ ├── DF_red_1.tga │ ├── Icon_EAX.tga │ ├── ammo_bar_1.tga │ ├── ammo_bar_power_1.tga │ ├── ammo_signal_green_1.tga │ ├── ammo_signal_red_1.tga │ ├── ass2_scope_circle.tga │ ├── bigboom.vbm │ ├── bullet_icon_1.tga │ ├── bullet_icon_50cal_1.tga │ ├── bullet_icon_556_1.tga │ ├── bullet_icon_aluminum_1.tga │ ├── bullet_icon_gascanister_1.tga │ ├── bullet_icon_powercell_1.tga │ ├── bullet_icon_rocket_1.tga │ ├── bullet_icon_shotgun_1.tga │ ├── consolebutton2A.tga │ ├── enviro0_1.tga │ ├── enviro100_1.tga │ ├── enviro10_1.tga │ ├── enviro20_1.tga │ ├── enviro30_1.tga │ ├── enviro40_1.tga │ ├── enviro50_1.tga │ ├── enviro60_1.tga │ ├── enviro70_1.tga │ ├── enviro80_1.tga │ ├── enviro90_1.tga │ ├── gore1.tga │ ├── health0_1.tga │ ├── health100_1.tga │ ├── health10_1.tga │ ├── health20_1.tga │ ├── health30_1.tga │ ├── health40_1.tga │ ├── health50_1.tga │ ├── health60_1.tga │ ├── health70_1.tga │ ├── health80_1.tga │ ├── health90_1.tga │ ├── hud_miniflag_blue_1.vbm │ ├── hud_miniflag_hilight_1.vbm │ ├── hud_miniflag_red_1.vbm │ ├── mtl_archway04-mip1.tga │ ├── noclip_ammo_bar_1.tga │ ├── pls_airlockmat01-mip2.tga │ ├── reticle_1.tga │ ├── reticle_rocket_1.tga │ ├── scope_ret_1.tga │ ├── scope_zoom_corner256_red.tga │ └── unscaled │ │ ├── Button Flag Libya-256x256.png │ │ ├── reticle_0.svg │ │ ├── reticle_rocket_0.svg │ │ └── scope_ret_0.svg ├── licensing-info.txt ├── maps_df.txt ├── meshes │ ├── Generator_Small01.v3m │ ├── Generator_Small02.v3m │ ├── Hendrix.v3c │ ├── LavaTester01.v3m │ ├── Vat1.v3m │ ├── coffeesmokedtbl2.v3m │ ├── coffeesmokedtblAlt.v3m │ ├── envirosuit1.v3m │ ├── meatchunk1.v3m │ ├── meatchunk2.v3m │ ├── meatchunk3.v3m │ ├── meatchunk4.v3m │ └── meatchunk5.v3m └── shaders │ ├── CMakeLists.txt │ ├── character_vs.hlsl │ ├── standard_ps.hlsl │ ├── standard_vs.hlsl │ ├── transformed_vs.hlsl │ └── ui_ps.hlsl ├── setup ├── .gitignore ├── make_setup.sh ├── patches │ ├── .gitignore │ ├── Makefile │ └── README.md └── setup.iss ├── tools ├── CMakeLists.txt ├── addr2line.sh ├── clang-tidy-dir.sh ├── clang-tidy.sh ├── shader_compiler │ ├── CMakeLists.txt │ └── main.cpp ├── vpp └── vpp.exe ├── vendor ├── .clang-format ├── CMakeLists.txt ├── base64 │ ├── CMakeLists.txt │ ├── base64.cpp │ └── base64.h ├── d3d8 │ ├── d3d8.h │ ├── d3d8caps.h │ └── d3d8types.h ├── d3d8to9 │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── res │ │ ├── d3d8.def │ │ ├── d3d8to9.rc │ │ └── resource.h │ └── source │ │ ├── d3d8.hpp │ │ ├── d3d8to9.cpp │ │ ├── d3d8to9.hpp │ │ ├── d3d8to9_base.cpp │ │ ├── d3d8to9_device.cpp │ │ ├── d3d8to9_index_buffer.cpp │ │ ├── d3d8to9_surface.cpp │ │ ├── d3d8to9_swap_chain.cpp │ │ ├── d3d8to9_texture.cpp │ │ ├── d3d8to9_vertex_buffer.cpp │ │ ├── d3d8to9_volume.cpp │ │ ├── d3d8types.cpp │ │ ├── d3d8types.hpp │ │ ├── d3dx9.hpp │ │ ├── interface_query.cpp │ │ └── interface_query.hpp ├── dds │ └── dds.h ├── ed25519 │ ├── CMakeLists.txt │ ├── license.txt │ ├── readme.md │ └── src │ │ ├── add_scalar.c │ │ ├── ed25519.h │ │ ├── fe.c │ │ ├── fe.h │ │ ├── fixedint.h │ │ ├── ge.c │ │ ├── ge.h │ │ ├── key_exchange.c │ │ ├── keypair.c │ │ ├── precomp_data.h │ │ ├── sc.c │ │ ├── sc.h │ │ ├── seed.c │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── sign.c │ │ └── verify.c ├── freetype │ ├── .clang-format │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── LICENSE.TXT │ ├── MSBuild.rsp │ ├── Makefile │ ├── README │ ├── README.git │ ├── autogen.sh │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ ├── README.TXT │ │ │ ├── deflinejoiner.awk │ │ │ └── gen-purec-patch.sh │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── cmake │ │ │ ├── FindBrotliDec.cmake │ │ │ ├── FindHarfBuzz.cmake │ │ │ ├── iOS.cmake │ │ │ └── testbuild.sh │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── freetype-Info.plist │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── meson │ │ │ ├── extract_freetype_version.py │ │ │ ├── extract_libtool_version.py │ │ │ ├── generate_reference_docs.py │ │ │ ├── parse_modules_cfg.py │ │ │ └── process_ftoption_h.py │ │ ├── modules.mk │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── aclocal.m4 │ │ │ ├── ax_compare_version.m4 │ │ │ ├── ax_prog_python_version.m4 │ │ │ ├── ax_pthread.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ftconfig.h.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── pkg.m4 │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── apinames_vms.bash │ │ │ ├── ftconfig.h │ │ │ └── ftsystem.c │ │ ├── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ │ └── index.html │ │ └── windows │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── ftsystem.c │ │ │ ├── vc2010 │ │ │ ├── freetype.user.props │ │ │ └── index.html │ │ │ ├── visualc │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ └── index.html │ │ │ ├── visualce │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── CHANGES │ │ ├── CMAKE │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── DOCGUIDE │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── README │ │ ├── TODO │ │ ├── VERSIONS.TXT │ │ ├── formats.txt │ │ ├── freetype-config.1 │ │ ├── freetype-web.txt │ │ ├── oldlogs │ │ │ ├── ChangeLog.20 │ │ │ ├── ChangeLog.21 │ │ │ ├── ChangeLog.210 │ │ │ ├── ChangeLog.22 │ │ │ ├── ChangeLog.23 │ │ │ ├── ChangeLog.24 │ │ │ ├── ChangeLog.25 │ │ │ ├── ChangeLog.26 │ │ │ ├── ChangeLog.27 │ │ │ ├── ChangeLog.28 │ │ │ └── ChangeLog.29 │ │ ├── raster.txt │ │ ├── reference │ │ │ ├── 404.html │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── favicon.png │ │ │ │ ├── javascripts │ │ │ │ │ ├── bundle.fe8b6f2b.min.js │ │ │ │ │ ├── bundle.fe8b6f2b.min.js.map │ │ │ │ │ ├── lunr │ │ │ │ │ │ ├── min │ │ │ │ │ │ │ ├── lunr.ar.min.js │ │ │ │ │ │ │ ├── lunr.da.min.js │ │ │ │ │ │ │ ├── lunr.de.min.js │ │ │ │ │ │ │ ├── lunr.du.min.js │ │ │ │ │ │ │ ├── lunr.el.min.js │ │ │ │ │ │ │ ├── lunr.es.min.js │ │ │ │ │ │ │ ├── lunr.fi.min.js │ │ │ │ │ │ │ ├── lunr.fr.min.js │ │ │ │ │ │ │ ├── lunr.he.min.js │ │ │ │ │ │ │ ├── lunr.hi.min.js │ │ │ │ │ │ │ ├── lunr.hu.min.js │ │ │ │ │ │ │ ├── lunr.hy.min.js │ │ │ │ │ │ │ ├── lunr.it.min.js │ │ │ │ │ │ │ ├── lunr.ja.min.js │ │ │ │ │ │ │ ├── lunr.jp.min.js │ │ │ │ │ │ │ ├── lunr.kn.min.js │ │ │ │ │ │ │ ├── lunr.ko.min.js │ │ │ │ │ │ │ ├── lunr.multi.min.js │ │ │ │ │ │ │ ├── lunr.nl.min.js │ │ │ │ │ │ │ ├── lunr.no.min.js │ │ │ │ │ │ │ ├── lunr.pt.min.js │ │ │ │ │ │ │ ├── lunr.ro.min.js │ │ │ │ │ │ │ ├── lunr.ru.min.js │ │ │ │ │ │ │ ├── lunr.sa.min.js │ │ │ │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ │ │ │ ├── lunr.sv.min.js │ │ │ │ │ │ │ ├── lunr.ta.min.js │ │ │ │ │ │ │ ├── lunr.te.min.js │ │ │ │ │ │ │ ├── lunr.th.min.js │ │ │ │ │ │ │ ├── lunr.tr.min.js │ │ │ │ │ │ │ ├── lunr.vi.min.js │ │ │ │ │ │ │ └── lunr.zh.min.js │ │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ │ └── wordcut.js │ │ │ │ │ └── workers │ │ │ │ │ │ ├── search.b8dbb3d2.min.js │ │ │ │ │ │ └── search.b8dbb3d2.min.js.map │ │ │ │ └── stylesheets │ │ │ │ │ ├── main.3cba04c6.min.css │ │ │ │ │ ├── main.3cba04c6.min.css.map │ │ │ │ │ ├── palette.06af60db.min.css │ │ │ │ │ └── palette.06af60db.min.css.map │ │ │ ├── ft2-auto_hinter.html │ │ │ ├── ft2-basic_types.html │ │ │ ├── ft2-bdf_fonts.html │ │ │ ├── ft2-bitmap_handling.html │ │ │ ├── ft2-bzip2.html │ │ │ ├── ft2-cache_subsystem.html │ │ │ ├── ft2-cff_driver.html │ │ │ ├── ft2-character_mapping.html │ │ │ ├── ft2-cid_fonts.html │ │ │ ├── ft2-color_management.html │ │ │ ├── ft2-computations.html │ │ │ ├── ft2-debugging_apis.html │ │ │ ├── ft2-error_code_values.html │ │ │ ├── ft2-error_enumerations.html │ │ │ ├── ft2-face_creation.html │ │ │ ├── ft2-font_formats.html │ │ │ ├── ft2-font_testing_macros.html │ │ │ ├── ft2-gasp_table.html │ │ │ ├── ft2-glyph_management.html │ │ │ ├── ft2-glyph_retrieval.html │ │ │ ├── ft2-glyph_stroker.html │ │ │ ├── ft2-glyph_variants.html │ │ │ ├── ft2-gx_validation.html │ │ │ ├── ft2-gzip.html │ │ │ ├── ft2-header_file_macros.html │ │ │ ├── ft2-header_inclusion.html │ │ │ ├── ft2-incremental.html │ │ │ ├── ft2-index.html │ │ │ ├── ft2-information_retrieval.html │ │ │ ├── ft2-layer_management.html │ │ │ ├── ft2-lcd_rendering.html │ │ │ ├── ft2-library_setup.html │ │ │ ├── ft2-list_processing.html │ │ │ ├── ft2-lzw.html │ │ │ ├── ft2-mac_specific.html │ │ │ ├── ft2-module_management.html │ │ │ ├── ft2-multiple_masters.html │ │ │ ├── ft2-ot_svg_driver.html │ │ │ ├── ft2-ot_validation.html │ │ │ ├── ft2-other_api_data.html │ │ │ ├── ft2-outline_processing.html │ │ │ ├── ft2-parameter_tags.html │ │ │ ├── ft2-pcf_driver.html │ │ │ ├── ft2-pfr_fonts.html │ │ │ ├── ft2-preamble.html │ │ │ ├── ft2-properties.html │ │ │ ├── ft2-quick_advance.html │ │ │ ├── ft2-raster.html │ │ │ ├── ft2-sfnt_names.html │ │ │ ├── ft2-sizes_management.html │ │ │ ├── ft2-sizing_and_scaling.html │ │ │ ├── ft2-svg_fonts.html │ │ │ ├── ft2-system_interface.html │ │ │ ├── ft2-t1_cid_driver.html │ │ │ ├── ft2-truetype_engine.html │ │ │ ├── ft2-truetype_tables.html │ │ │ ├── ft2-tt_driver.html │ │ │ ├── ft2-type1_tables.html │ │ │ ├── ft2-user_allocation.html │ │ │ ├── ft2-winfnt_fonts.html │ │ │ ├── images │ │ │ │ └── favico.ico │ │ │ ├── index.html │ │ │ ├── javascripts │ │ │ │ └── extra.js │ │ │ ├── search │ │ │ │ └── search_index.json │ │ │ ├── sitemap.xml │ │ │ ├── sitemap.xml.gz │ │ │ └── stylesheets │ │ │ │ └── extra.css │ │ └── release │ ├── include │ │ ├── dlg │ │ │ ├── dlg.h │ │ │ └── output.h │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ ├── ftstdlib.h │ │ │ │ ├── integer-types.h │ │ │ │ ├── mac-support.h │ │ │ │ └── public-macros.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftcolor.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlogging.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── compiler-macros.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftmmtypes.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── svginterface.h │ │ │ │ ├── t1types.h │ │ │ │ ├── tttypes.h │ │ │ │ └── wofftypes.h │ │ │ ├── otsvg.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ ├── meson.build │ ├── meson_options.txt │ ├── modules.cfg │ ├── objs │ │ └── README │ ├── src │ │ ├── autofit │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afws-decl.h │ │ │ ├── afws-iter.h │ │ │ ├── autofit.c │ │ │ ├── ft-hb.c │ │ │ ├── ft-hb.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── ftadvanc.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftcolor.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── fterrors.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpsprop.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftver.rc │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── dlg │ │ │ ├── dlg.c │ │ │ ├── dlgwrap.c │ │ │ └── rules.mk │ │ ├── gxvalid │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── README.freetype │ │ │ ├── adler32.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── gzguts.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── patches │ │ │ │ └── freetype-zlib.diff │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ ├── pcf │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ ├── psaux │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── cffdecode.c │ │ │ ├── cffdecode.h │ │ │ ├── module.mk │ │ │ ├── psarrst.c │ │ │ ├── psarrst.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psblues.c │ │ │ ├── psblues.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── pserror.c │ │ │ ├── pserror.h │ │ │ ├── psfixed.h │ │ │ ├── psfont.c │ │ │ ├── psfont.h │ │ │ ├── psft.c │ │ │ ├── psft.h │ │ │ ├── psglue.h │ │ │ ├── pshints.c │ │ │ ├── pshints.h │ │ │ ├── psintrp.c │ │ │ ├── psintrp.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── psread.c │ │ │ ├── psread.h │ │ │ ├── psstack.c │ │ │ ├── psstack.h │ │ │ ├── pstypes.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ ├── psnames │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sdf │ │ │ ├── ftbsdf.c │ │ │ ├── ftsdf.c │ │ │ ├── ftsdf.h │ │ │ ├── ftsdfcommon.c │ │ │ ├── ftsdfcommon.h │ │ │ ├── ftsdferrs.h │ │ │ ├── ftsdfrend.c │ │ │ ├── ftsdfrend.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── sdf.c │ │ ├── sfnt │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.h │ │ │ ├── sfwoff2.c │ │ │ ├── sfwoff2.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttcolr.c │ │ │ ├── ttcolr.h │ │ │ ├── ttcpal.c │ │ │ ├── ttcpal.h │ │ │ ├── ttgpos.c │ │ │ ├── ttgpos.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ ├── ttsvg.c │ │ │ ├── ttsvg.h │ │ │ ├── woff2tags.c │ │ │ └── woff2tags.h │ │ ├── smooth │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── svg │ │ │ ├── ftsvg.c │ │ │ ├── ftsvg.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── svg.c │ │ │ └── svgtypes.h │ │ ├── tools │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── make_distribution_archives.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ ├── update-copyright-year │ │ │ └── vms_shorten_symbol.c │ │ ├── truetype │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ └── ttpload.h │ │ ├── type1 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── subprojects │ │ ├── harfbuzz.wrap │ │ ├── libpng.wrap │ │ └── zlib.wrap │ ├── tests │ │ ├── README.md │ │ ├── issue-1063 │ │ │ └── main.c │ │ ├── meson.build │ │ └── scripts │ │ │ └── download-test-fonts.py │ └── vms_make.com ├── minibsdiff │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bsdiff.c │ ├── bsdiff.h │ ├── bspatch.c │ ├── bspatch.h │ ├── minibsdiff-config.h │ ├── minibsdiff.c │ ├── release.nix │ ├── stdbool-msvc.h │ └── stdint-msvc.h ├── natupnp │ └── natupnp.h ├── sha1 │ ├── CMakeLists.txt │ ├── sha1.cpp │ └── sha1.h ├── stb │ ├── CMakeLists.txt │ ├── stb_vorbis.c │ └── stb_vorbis.h ├── subhook │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── appveyor.yml │ ├── subhook.c │ ├── subhook.h │ ├── subhook_private.h │ ├── subhook_unix.c │ ├── subhook_windows.c │ └── subhook_x86.c ├── unrar │ ├── CMakeLists.txt │ ├── acknow.txt │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── array.hpp │ ├── blake2s.cpp │ ├── blake2s.hpp │ ├── blake2s_sse.cpp │ ├── blake2sp.cpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── cmdfilter.cpp │ ├── cmdmix.cpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── crypt.cpp │ ├── crypt.hpp │ ├── crypt1.cpp │ ├── crypt2.cpp │ ├── crypt3.cpp │ ├── crypt5.cpp │ ├── dll.cpp │ ├── dll.def │ ├── dll.hpp │ ├── dll.rc │ ├── dll_nocrypt.def │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── hardlinks.cpp │ ├── hash.cpp │ ├── hash.hpp │ ├── headers.cpp │ ├── headers.hpp │ ├── headers5.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── license.txt │ ├── list.cpp │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── makefile │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── qopen.cpp │ ├── qopen.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rarpch.cpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rawint.hpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── recvol3.cpp │ ├── recvol5.cpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── rs16.cpp │ ├── rs16.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── secpassword.cpp │ ├── secpassword.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── sha256.cpp │ ├── sha256.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── threadmisc.cpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ui.cpp │ ├── ui.hpp │ ├── uicommon.cpp │ ├── uiconsole.cpp │ ├── uisilent.cpp │ ├── ulinks.cpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unpack30.cpp │ ├── unpack50.cpp │ ├── unpack50frag.cpp │ ├── unpack50mt.cpp │ ├── unpackinline.cpp │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ ├── win32lnk.cpp │ └── win32stm.cpp ├── win32xx │ ├── changes.txt │ ├── copyright.txt │ ├── default_resource.h │ ├── default_resource.rc │ ├── info.txt │ ├── release notes.txt │ ├── wxx_appcore.h │ ├── wxx_appcore0.h │ ├── wxx_archive.h │ ├── wxx_commondlg.h │ ├── wxx_controls.h │ ├── wxx_criticalsection.h │ ├── wxx_cstring.h │ ├── wxx_ddx.h │ ├── wxx_dialog.h │ ├── wxx_dockframe.h │ ├── wxx_docking.h │ ├── wxx_exception.h │ ├── wxx_file.h │ ├── wxx_filefind.h │ ├── wxx_folderdialog.h │ ├── wxx_frame.h │ ├── wxx_gdi.h │ ├── wxx_hglobal.h │ ├── wxx_imagelist.h │ ├── wxx_listview.h │ ├── wxx_mdi.h │ ├── wxx_menu.h │ ├── wxx_menubar.h │ ├── wxx_menumetrics.h │ ├── wxx_messagepump.h │ ├── wxx_messagepump0.h │ ├── wxx_metafile.h │ ├── wxx_mutex.h │ ├── wxx_preview.h │ ├── wxx_printdialogex.h │ ├── wxx_printdialogs.h │ ├── wxx_propertysheet.h │ ├── wxx_rebar.h │ ├── wxx_rect.h │ ├── wxx_regkey.h │ ├── wxx_ribbon.h │ ├── wxx_richedit.h │ ├── wxx_scrollview.h │ ├── wxx_setup.h │ ├── wxx_shared_ptr.h │ ├── wxx_socket.h │ ├── wxx_statusbar.h │ ├── wxx_stdcontrols.h │ ├── wxx_tab.h │ ├── wxx_taskdialog.h │ ├── wxx_textconv.h │ ├── wxx_themes.h │ ├── wxx_thread.h │ ├── wxx_time.h │ ├── wxx_toolbar.h │ ├── wxx_treeview.h │ ├── wxx_webbrowser.h │ ├── wxx_wincore.h │ └── wxx_wincore0.h ├── xxhash │ ├── CMakeLists.txt │ ├── LICENSE │ ├── xxhash.c │ └── xxhash.h └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── contrib │ ├── CMakeLists.txt │ └── minizip │ │ ├── CMakeLists.txt │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib.map │ ├── zutil.c │ └── zutil.h └── xlog ├── CMakeLists.txt ├── include └── xlog │ ├── Appender.h │ ├── ConsoleAppender.h │ ├── FileAppender.h │ ├── Formatter.h │ ├── Level.h │ ├── LogStream.h │ ├── Logger.h │ ├── LoggerConfig.h │ ├── NullStream.h │ ├── SimpleFormatter.h │ ├── Win32Appender.h │ └── xlog.h └── src ├── FileAppender.cpp ├── LoggerConfig.cpp ├── SimpleFormatter.cpp └── Win32Appender.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | licensing-info.txt eol=crlf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/README.md -------------------------------------------------------------------------------- /cmake/mingw-ubuntu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/cmake/mingw-ubuntu.cmake -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/include/common/ComPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/include/common/ComPtr.h -------------------------------------------------------------------------------- /common/include/common/rfproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/include/common/rfproto.h -------------------------------------------------------------------------------- /common/src/HttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/src/HttpRequest.cpp -------------------------------------------------------------------------------- /common/src/config/GameConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/src/config/GameConfig.cpp -------------------------------------------------------------------------------- /common/src/error/d3d-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/src/error/d3d-error.cpp -------------------------------------------------------------------------------- /common/src/utils/os-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/common/src/utils/os-utils.cpp -------------------------------------------------------------------------------- /crash_handler/AdditionalInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/AdditionalInfoDlg.h -------------------------------------------------------------------------------- /crash_handler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/CMakeLists.txt -------------------------------------------------------------------------------- /crash_handler/CommandLineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/CommandLineInfo.h -------------------------------------------------------------------------------- /crash_handler/CrashReportApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/CrashReportApp.cpp -------------------------------------------------------------------------------- /crash_handler/CrashReportApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/CrashReportApp.h -------------------------------------------------------------------------------- /crash_handler/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/MainDlg.cpp -------------------------------------------------------------------------------- /crash_handler/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/MainDlg.h -------------------------------------------------------------------------------- /crash_handler/MiniDumpHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/MiniDumpHelper.cpp -------------------------------------------------------------------------------- /crash_handler/MiniDumpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/MiniDumpHelper.h -------------------------------------------------------------------------------- /crash_handler/ProcessMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/ProcessMemoryCache.h -------------------------------------------------------------------------------- /crash_handler/ProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/ProgressDlg.h -------------------------------------------------------------------------------- /crash_handler/TextDumpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/TextDumpHelper.h -------------------------------------------------------------------------------- /crash_handler/ZipHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/ZipHelper.h -------------------------------------------------------------------------------- /crash_handler/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/config.h -------------------------------------------------------------------------------- /crash_handler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/main.cpp -------------------------------------------------------------------------------- /crash_handler/res/DF.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/res/DF.bmp -------------------------------------------------------------------------------- /crash_handler/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/res/resource.h -------------------------------------------------------------------------------- /crash_handler/res/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/res/resources.rc -------------------------------------------------------------------------------- /crash_handler/res/resources2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler/res/resources2.rc -------------------------------------------------------------------------------- /crash_handler_stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/crash_handler_stub/CMakeLists.txt -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/graphics_comparison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/docs/graphics_comparison/README.md -------------------------------------------------------------------------------- /editor_patch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/CMakeLists.txt -------------------------------------------------------------------------------- /editor_patch/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/exports.h -------------------------------------------------------------------------------- /editor_patch/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/graphics.cpp -------------------------------------------------------------------------------- /editor_patch/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/level.cpp -------------------------------------------------------------------------------- /editor_patch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/main.cpp -------------------------------------------------------------------------------- /editor_patch/mfc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/mfc_types.h -------------------------------------------------------------------------------- /editor_patch/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/resources.h -------------------------------------------------------------------------------- /editor_patch/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/resources.rc -------------------------------------------------------------------------------- /editor_patch/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/resources/icon.ico -------------------------------------------------------------------------------- /editor_patch/trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/trigger.cpp -------------------------------------------------------------------------------- /editor_patch/vtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/editor_patch/vtypes.h -------------------------------------------------------------------------------- /game_patch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/CMakeLists.txt -------------------------------------------------------------------------------- /game_patch/bmpman/bmpman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/bmpman/bmpman.cpp -------------------------------------------------------------------------------- /game_patch/bmpman/bmpman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/bmpman/bmpman.h -------------------------------------------------------------------------------- /game_patch/bmpman/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/bmpman/dds.cpp -------------------------------------------------------------------------------- /game_patch/bmpman/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/bmpman/dds.h -------------------------------------------------------------------------------- /game_patch/bmpman/fmt_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/bmpman/fmt_conv.cpp -------------------------------------------------------------------------------- /game_patch/debug/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/debug.cpp -------------------------------------------------------------------------------- /game_patch/debug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/debug.h -------------------------------------------------------------------------------- /game_patch/debug/debug_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/debug_cmd.cpp -------------------------------------------------------------------------------- /game_patch/debug/debug_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/debug_internal.h -------------------------------------------------------------------------------- /game_patch/debug/debugwinmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/debugwinmsg.cpp -------------------------------------------------------------------------------- /game_patch/debug/obj_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/obj_debug.cpp -------------------------------------------------------------------------------- /game_patch/debug/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/profiler.cpp -------------------------------------------------------------------------------- /game_patch/debug/unresponsive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/debug/unresponsive.cpp -------------------------------------------------------------------------------- /game_patch/graphics/bink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/bink.cpp -------------------------------------------------------------------------------- /game_patch/graphics/gr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/gr.cpp -------------------------------------------------------------------------------- /game_patch/graphics/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/gr.h -------------------------------------------------------------------------------- /game_patch/graphics/gr_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/gr_font.cpp -------------------------------------------------------------------------------- /game_patch/graphics/gr_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/gr_internal.h -------------------------------------------------------------------------------- /game_patch/graphics/gr_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/graphics/gr_light.cpp -------------------------------------------------------------------------------- /game_patch/hud/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud.cpp -------------------------------------------------------------------------------- /game_patch/hud/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud.h -------------------------------------------------------------------------------- /game_patch/hud/hud_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud_internal.h -------------------------------------------------------------------------------- /game_patch/hud/hud_personas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud_personas.cpp -------------------------------------------------------------------------------- /game_patch/hud/hud_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud_status.cpp -------------------------------------------------------------------------------- /game_patch/hud/hud_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/hud_weapons.cpp -------------------------------------------------------------------------------- /game_patch/hud/message_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/message_log.cpp -------------------------------------------------------------------------------- /game_patch/hud/multi_hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/multi_hud.cpp -------------------------------------------------------------------------------- /game_patch/hud/multi_hud_chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/multi_hud_chat.cpp -------------------------------------------------------------------------------- /game_patch/hud/multi_scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/multi_scoreboard.h -------------------------------------------------------------------------------- /game_patch/hud/multi_spectate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/multi_spectate.cpp -------------------------------------------------------------------------------- /game_patch/hud/multi_spectate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/multi_spectate.h -------------------------------------------------------------------------------- /game_patch/hud/weapon_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/hud/weapon_select.cpp -------------------------------------------------------------------------------- /game_patch/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/input/input.h -------------------------------------------------------------------------------- /game_patch/input/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/input/key.cpp -------------------------------------------------------------------------------- /game_patch/input/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/input/mouse.cpp -------------------------------------------------------------------------------- /game_patch/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/main/main.cpp -------------------------------------------------------------------------------- /game_patch/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/main/main.h -------------------------------------------------------------------------------- /game_patch/misc/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/camera.cpp -------------------------------------------------------------------------------- /game_patch/misc/character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/character.cpp -------------------------------------------------------------------------------- /game_patch/misc/g_solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/g_solid.cpp -------------------------------------------------------------------------------- /game_patch/misc/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/game.cpp -------------------------------------------------------------------------------- /game_patch/misc/high_fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/high_fps.cpp -------------------------------------------------------------------------------- /game_patch/misc/high_fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/high_fps.h -------------------------------------------------------------------------------- /game_patch/misc/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/level.cpp -------------------------------------------------------------------------------- /game_patch/misc/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/level.h -------------------------------------------------------------------------------- /game_patch/misc/main_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/main_menu.cpp -------------------------------------------------------------------------------- /game_patch/misc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/misc.cpp -------------------------------------------------------------------------------- /game_patch/misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/misc.h -------------------------------------------------------------------------------- /game_patch/misc/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/player.cpp -------------------------------------------------------------------------------- /game_patch/misc/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/player.h -------------------------------------------------------------------------------- /game_patch/misc/player_fpgun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/player_fpgun.cpp -------------------------------------------------------------------------------- /game_patch/misc/save_restore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/save_restore.cpp -------------------------------------------------------------------------------- /game_patch/misc/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/ui.cpp -------------------------------------------------------------------------------- /game_patch/misc/vpackfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/vpackfile.cpp -------------------------------------------------------------------------------- /game_patch/misc/vpackfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/misc/vpackfile.h -------------------------------------------------------------------------------- /game_patch/multi/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/commands.cpp -------------------------------------------------------------------------------- /game_patch/multi/faction_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/faction_files.cpp -------------------------------------------------------------------------------- /game_patch/multi/faction_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/faction_files.h -------------------------------------------------------------------------------- /game_patch/multi/kill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/kill.cpp -------------------------------------------------------------------------------- /game_patch/multi/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/multi.cpp -------------------------------------------------------------------------------- /game_patch/multi/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/multi.h -------------------------------------------------------------------------------- /game_patch/multi/multi_ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/multi_ban.cpp -------------------------------------------------------------------------------- /game_patch/multi/multi_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/multi_private.h -------------------------------------------------------------------------------- /game_patch/multi/multi_tdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/multi_tdm.cpp -------------------------------------------------------------------------------- /game_patch/multi/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/network.cpp -------------------------------------------------------------------------------- /game_patch/multi/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/server.cpp -------------------------------------------------------------------------------- /game_patch/multi/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/server.h -------------------------------------------------------------------------------- /game_patch/multi/server_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/server_internal.h -------------------------------------------------------------------------------- /game_patch/multi/votes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/multi/votes.cpp -------------------------------------------------------------------------------- /game_patch/object/cutscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/cutscene.cpp -------------------------------------------------------------------------------- /game_patch/object/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/entity.cpp -------------------------------------------------------------------------------- /game_patch/object/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/event.cpp -------------------------------------------------------------------------------- /game_patch/object/glare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/glare.cpp -------------------------------------------------------------------------------- /game_patch/object/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/item.cpp -------------------------------------------------------------------------------- /game_patch/object/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/monitor.cpp -------------------------------------------------------------------------------- /game_patch/object/obj_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/obj_light.cpp -------------------------------------------------------------------------------- /game_patch/object/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/object.cpp -------------------------------------------------------------------------------- /game_patch/object/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/object.h -------------------------------------------------------------------------------- /game_patch/object/object_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/object_private.h -------------------------------------------------------------------------------- /game_patch/object/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/particle.cpp -------------------------------------------------------------------------------- /game_patch/object/trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/trigger.cpp -------------------------------------------------------------------------------- /game_patch/object/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/object/weapon.cpp -------------------------------------------------------------------------------- /game_patch/os/autocomplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/autocomplete.cpp -------------------------------------------------------------------------------- /game_patch/os/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/commands.cpp -------------------------------------------------------------------------------- /game_patch/os/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/console.cpp -------------------------------------------------------------------------------- /game_patch/os/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/console.h -------------------------------------------------------------------------------- /game_patch/os/frametime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/frametime.cpp -------------------------------------------------------------------------------- /game_patch/os/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/os.cpp -------------------------------------------------------------------------------- /game_patch/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/os.h -------------------------------------------------------------------------------- /game_patch/os/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/timer.cpp -------------------------------------------------------------------------------- /game_patch/os/win32_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/win32_console.cpp -------------------------------------------------------------------------------- /game_patch/os/win32_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/os/win32_console.h -------------------------------------------------------------------------------- /game_patch/purefaction/pf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/purefaction/pf.cpp -------------------------------------------------------------------------------- /game_patch/purefaction/pf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/purefaction/pf.h -------------------------------------------------------------------------------- /game_patch/purefaction/pf_ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/purefaction/pf_ac.h -------------------------------------------------------------------------------- /game_patch/res/easter_egg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/res/easter_egg.bin -------------------------------------------------------------------------------- /game_patch/res/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/res/resources.rc -------------------------------------------------------------------------------- /game_patch/rf/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/ai.h -------------------------------------------------------------------------------- /game_patch/rf/bmpman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/bmpman.h -------------------------------------------------------------------------------- /game_patch/rf/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/character.h -------------------------------------------------------------------------------- /game_patch/rf/clutter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/clutter.h -------------------------------------------------------------------------------- /game_patch/rf/collide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/collide.h -------------------------------------------------------------------------------- /game_patch/rf/corpse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/corpse.h -------------------------------------------------------------------------------- /game_patch/rf/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/crt.h -------------------------------------------------------------------------------- /game_patch/rf/cutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/cutscene.h -------------------------------------------------------------------------------- /game_patch/rf/debris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/debris.h -------------------------------------------------------------------------------- /game_patch/rf/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/entity.h -------------------------------------------------------------------------------- /game_patch/rf/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/event.h -------------------------------------------------------------------------------- /game_patch/rf/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/file/file.h -------------------------------------------------------------------------------- /game_patch/rf/file/packfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/file/packfile.h -------------------------------------------------------------------------------- /game_patch/rf/gameseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/gameseq.h -------------------------------------------------------------------------------- /game_patch/rf/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/geometry.h -------------------------------------------------------------------------------- /game_patch/rf/glare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/glare.h -------------------------------------------------------------------------------- /game_patch/rf/gr/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/gr/gr.h -------------------------------------------------------------------------------- /game_patch/rf/gr/gr_direct3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/gr/gr_direct3d.h -------------------------------------------------------------------------------- /game_patch/rf/gr/gr_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/gr/gr_font.h -------------------------------------------------------------------------------- /game_patch/rf/gr/gr_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/gr/gr_light.h -------------------------------------------------------------------------------- /game_patch/rf/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/hud.h -------------------------------------------------------------------------------- /game_patch/rf/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/input.h -------------------------------------------------------------------------------- /game_patch/rf/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/item.h -------------------------------------------------------------------------------- /game_patch/rf/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/level.h -------------------------------------------------------------------------------- /game_patch/rf/localize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/localize.h -------------------------------------------------------------------------------- /game_patch/rf/math/ix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/math/ix.h -------------------------------------------------------------------------------- /game_patch/rf/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/math/matrix.h -------------------------------------------------------------------------------- /game_patch/rf/math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/math/plane.h -------------------------------------------------------------------------------- /game_patch/rf/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/math/quaternion.h -------------------------------------------------------------------------------- /game_patch/rf/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/math/vector.h -------------------------------------------------------------------------------- /game_patch/rf/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/misc.h -------------------------------------------------------------------------------- /game_patch/rf/mover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/mover.h -------------------------------------------------------------------------------- /game_patch/rf/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/multi.h -------------------------------------------------------------------------------- /game_patch/rf/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/object.h -------------------------------------------------------------------------------- /game_patch/rf/os/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/array.h -------------------------------------------------------------------------------- /game_patch/rf/os/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/console.h -------------------------------------------------------------------------------- /game_patch/rf/os/frametime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/frametime.h -------------------------------------------------------------------------------- /game_patch/rf/os/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/linklist.h -------------------------------------------------------------------------------- /game_patch/rf/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/os.h -------------------------------------------------------------------------------- /game_patch/rf/os/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/string.h -------------------------------------------------------------------------------- /game_patch/rf/os/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/timer.h -------------------------------------------------------------------------------- /game_patch/rf/os/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/timestamp.h -------------------------------------------------------------------------------- /game_patch/rf/os/vtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/os/vtypes.h -------------------------------------------------------------------------------- /game_patch/rf/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/parse.h -------------------------------------------------------------------------------- /game_patch/rf/particle_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/particle_emitter.h -------------------------------------------------------------------------------- /game_patch/rf/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/physics.h -------------------------------------------------------------------------------- /game_patch/rf/player/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/player/camera.h -------------------------------------------------------------------------------- /game_patch/rf/player/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/player/player.h -------------------------------------------------------------------------------- /game_patch/rf/save_restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/save_restore.h -------------------------------------------------------------------------------- /game_patch/rf/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/sound/sound.h -------------------------------------------------------------------------------- /game_patch/rf/sound/sound_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/sound/sound_ds.h -------------------------------------------------------------------------------- /game_patch/rf/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/trigger.h -------------------------------------------------------------------------------- /game_patch/rf/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/ui.h -------------------------------------------------------------------------------- /game_patch/rf/v3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/v3d.h -------------------------------------------------------------------------------- /game_patch/rf/vmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/vmesh.h -------------------------------------------------------------------------------- /game_patch/rf/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/rf/weapon.h -------------------------------------------------------------------------------- /game_patch/sound/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/sound/sound.cpp -------------------------------------------------------------------------------- /game_patch/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/sound/sound.h -------------------------------------------------------------------------------- /game_patch/sound/sound_ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/game_patch/sound/sound_ds.cpp -------------------------------------------------------------------------------- /launcher/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/AboutDlg.cpp -------------------------------------------------------------------------------- /launcher/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/AboutDlg.h -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/DashFactionLauncher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/DashFactionLauncher.rc -------------------------------------------------------------------------------- /launcher/LauncherApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/LauncherApp.cpp -------------------------------------------------------------------------------- /launcher/LauncherApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/LauncherApp.h -------------------------------------------------------------------------------- /launcher/LauncherCommandLineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/LauncherCommandLineInfo.h -------------------------------------------------------------------------------- /launcher/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/MainDlg.cpp -------------------------------------------------------------------------------- /launcher/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/MainDlg.h -------------------------------------------------------------------------------- /launcher/OptionsAudioDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsAudioDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsAudioDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsAudioDlg.h -------------------------------------------------------------------------------- /launcher/OptionsDisplayDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsDisplayDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsDisplayDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsDisplayDlg.h -------------------------------------------------------------------------------- /launcher/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsDlg.h -------------------------------------------------------------------------------- /launcher/OptionsGraphicsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsGraphicsDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsGraphicsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsGraphicsDlg.h -------------------------------------------------------------------------------- /launcher/OptionsInputDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsInputDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsInputDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsInputDlg.h -------------------------------------------------------------------------------- /launcher/OptionsInterfaceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsInterfaceDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsInterfaceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsInterfaceDlg.h -------------------------------------------------------------------------------- /launcher/OptionsMiscDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsMiscDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsMiscDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsMiscDlg.h -------------------------------------------------------------------------------- /launcher/OptionsMultiplayerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsMultiplayerDlg.cpp -------------------------------------------------------------------------------- /launcher/OptionsMultiplayerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/OptionsMultiplayerDlg.h -------------------------------------------------------------------------------- /launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/main.cpp -------------------------------------------------------------------------------- /launcher/res/DF.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/res/DF.ico -------------------------------------------------------------------------------- /launcher/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/res/header.bmp -------------------------------------------------------------------------------- /launcher/res/launcher.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/res/launcher.rc2 -------------------------------------------------------------------------------- /launcher/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/resource.h -------------------------------------------------------------------------------- /launcher/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/stdafx.cpp -------------------------------------------------------------------------------- /launcher/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/stdafx.h -------------------------------------------------------------------------------- /launcher/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher/targetver.h -------------------------------------------------------------------------------- /launcher_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/CMakeLists.txt -------------------------------------------------------------------------------- /launcher_common/DllInjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/DllInjector.cpp -------------------------------------------------------------------------------- /launcher_common/DllInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/DllInjector.h -------------------------------------------------------------------------------- /launcher_common/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/Process.h -------------------------------------------------------------------------------- /launcher_common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/Thread.h -------------------------------------------------------------------------------- /launcher_common/UpdateChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/UpdateChecker.cpp -------------------------------------------------------------------------------- /launcher_common/Win32Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/launcher_common/Win32Handle.h -------------------------------------------------------------------------------- /mesh_patches/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/mesh_patches/.gitignore -------------------------------------------------------------------------------- /mesh_patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/mesh_patches/README.md -------------------------------------------------------------------------------- /mesh_patches/Vat1-v3m-patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/mesh_patches/Vat1-v3m-patch.txt -------------------------------------------------------------------------------- /mesh_patches/binarypatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/mesh_patches/binarypatcher.py -------------------------------------------------------------------------------- /mesh_patches/hendrix-v3c-patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/mesh_patches/hendrix-v3c-patch.txt -------------------------------------------------------------------------------- /patch_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/CMakeLists.txt -------------------------------------------------------------------------------- /patch_common/CallHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/CallHook.cpp -------------------------------------------------------------------------------- /patch_common/CodeBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/CodeBuffer.cpp -------------------------------------------------------------------------------- /patch_common/CodeInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/CodeInjection.cpp -------------------------------------------------------------------------------- /patch_common/FunHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/FunHook.cpp -------------------------------------------------------------------------------- /patch_common/MemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/patch_common/MemUtils.cpp -------------------------------------------------------------------------------- /resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/CMakeLists.txt -------------------------------------------------------------------------------- /resources/RED.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/RED.chm -------------------------------------------------------------------------------- /resources/RED.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/RED.exe.manifest -------------------------------------------------------------------------------- /resources/audio/Laser loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/audio/Laser loop.wav -------------------------------------------------------------------------------- /resources/fonts/biggerfont.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/fonts/biggerfont.vf -------------------------------------------------------------------------------- /resources/fonts/boldfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/fonts/boldfont.ttf -------------------------------------------------------------------------------- /resources/fonts/regularfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/fonts/regularfont.ttf -------------------------------------------------------------------------------- /resources/images/DF_green.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/DF_green.tga -------------------------------------------------------------------------------- /resources/images/DF_green_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/DF_green_1.tga -------------------------------------------------------------------------------- /resources/images/DF_red.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/DF_red.tga -------------------------------------------------------------------------------- /resources/images/DF_red_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/DF_red_1.tga -------------------------------------------------------------------------------- /resources/images/Icon_EAX.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/Icon_EAX.tga -------------------------------------------------------------------------------- /resources/images/ammo_bar_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/ammo_bar_1.tga -------------------------------------------------------------------------------- /resources/images/bigboom.vbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/bigboom.vbm -------------------------------------------------------------------------------- /resources/images/bullet_icon_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/bullet_icon_1.tga -------------------------------------------------------------------------------- /resources/images/enviro0_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro0_1.tga -------------------------------------------------------------------------------- /resources/images/enviro100_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro100_1.tga -------------------------------------------------------------------------------- /resources/images/enviro10_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro10_1.tga -------------------------------------------------------------------------------- /resources/images/enviro20_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro20_1.tga -------------------------------------------------------------------------------- /resources/images/enviro30_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro30_1.tga -------------------------------------------------------------------------------- /resources/images/enviro40_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro40_1.tga -------------------------------------------------------------------------------- /resources/images/enviro50_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro50_1.tga -------------------------------------------------------------------------------- /resources/images/enviro60_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro60_1.tga -------------------------------------------------------------------------------- /resources/images/enviro70_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro70_1.tga -------------------------------------------------------------------------------- /resources/images/enviro80_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro80_1.tga -------------------------------------------------------------------------------- /resources/images/enviro90_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/enviro90_1.tga -------------------------------------------------------------------------------- /resources/images/gore1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/gore1.tga -------------------------------------------------------------------------------- /resources/images/health0_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health0_1.tga -------------------------------------------------------------------------------- /resources/images/health100_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health100_1.tga -------------------------------------------------------------------------------- /resources/images/health10_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health10_1.tga -------------------------------------------------------------------------------- /resources/images/health20_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health20_1.tga -------------------------------------------------------------------------------- /resources/images/health30_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health30_1.tga -------------------------------------------------------------------------------- /resources/images/health40_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health40_1.tga -------------------------------------------------------------------------------- /resources/images/health50_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health50_1.tga -------------------------------------------------------------------------------- /resources/images/health60_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health60_1.tga -------------------------------------------------------------------------------- /resources/images/health70_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health70_1.tga -------------------------------------------------------------------------------- /resources/images/health80_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health80_1.tga -------------------------------------------------------------------------------- /resources/images/health90_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/health90_1.tga -------------------------------------------------------------------------------- /resources/images/reticle_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/reticle_1.tga -------------------------------------------------------------------------------- /resources/images/scope_ret_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/images/scope_ret_1.tga -------------------------------------------------------------------------------- /resources/licensing-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/licensing-info.txt -------------------------------------------------------------------------------- /resources/maps_df.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/maps_df.txt -------------------------------------------------------------------------------- /resources/meshes/Hendrix.v3c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/Hendrix.v3c -------------------------------------------------------------------------------- /resources/meshes/LavaTester01.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/LavaTester01.v3m -------------------------------------------------------------------------------- /resources/meshes/Vat1.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/Vat1.v3m -------------------------------------------------------------------------------- /resources/meshes/envirosuit1.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/envirosuit1.v3m -------------------------------------------------------------------------------- /resources/meshes/meatchunk1.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/meatchunk1.v3m -------------------------------------------------------------------------------- /resources/meshes/meatchunk2.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/meatchunk2.v3m -------------------------------------------------------------------------------- /resources/meshes/meatchunk3.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/meatchunk3.v3m -------------------------------------------------------------------------------- /resources/meshes/meatchunk4.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/meatchunk4.v3m -------------------------------------------------------------------------------- /resources/meshes/meatchunk5.v3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/meshes/meatchunk5.v3m -------------------------------------------------------------------------------- /resources/shaders/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/shaders/CMakeLists.txt -------------------------------------------------------------------------------- /resources/shaders/standard_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/shaders/standard_ps.hlsl -------------------------------------------------------------------------------- /resources/shaders/standard_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/shaders/standard_vs.hlsl -------------------------------------------------------------------------------- /resources/shaders/ui_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/resources/shaders/ui_ps.hlsl -------------------------------------------------------------------------------- /setup/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /setup/make_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/setup/make_setup.sh -------------------------------------------------------------------------------- /setup/patches/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | source 3 | target 4 | official 5 | -------------------------------------------------------------------------------- /setup/patches/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/setup/patches/Makefile -------------------------------------------------------------------------------- /setup/patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/setup/patches/README.md -------------------------------------------------------------------------------- /setup/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/setup/setup.iss -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(shader_compiler) 2 | -------------------------------------------------------------------------------- /tools/addr2line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/addr2line.sh -------------------------------------------------------------------------------- /tools/clang-tidy-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/clang-tidy-dir.sh -------------------------------------------------------------------------------- /tools/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/clang-tidy.sh -------------------------------------------------------------------------------- /tools/shader_compiler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/shader_compiler/main.cpp -------------------------------------------------------------------------------- /tools/vpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/vpp -------------------------------------------------------------------------------- /tools/vpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/tools/vpp.exe -------------------------------------------------------------------------------- /vendor/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /vendor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/base64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/base64/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/base64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/base64/base64.cpp -------------------------------------------------------------------------------- /vendor/base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/base64/base64.h -------------------------------------------------------------------------------- /vendor/d3d8/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8/d3d8.h -------------------------------------------------------------------------------- /vendor/d3d8/d3d8caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8/d3d8caps.h -------------------------------------------------------------------------------- /vendor/d3d8/d3d8types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8/d3d8types.h -------------------------------------------------------------------------------- /vendor/d3d8to9/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/d3d8to9/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/LICENSE.md -------------------------------------------------------------------------------- /vendor/d3d8to9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/README.md -------------------------------------------------------------------------------- /vendor/d3d8to9/res/d3d8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/res/d3d8.def -------------------------------------------------------------------------------- /vendor/d3d8to9/res/d3d8to9.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/res/d3d8to9.rc -------------------------------------------------------------------------------- /vendor/d3d8to9/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/res/resource.h -------------------------------------------------------------------------------- /vendor/d3d8to9/source/d3d8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/source/d3d8.hpp -------------------------------------------------------------------------------- /vendor/d3d8to9/source/d3d8to9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/source/d3d8to9.cpp -------------------------------------------------------------------------------- /vendor/d3d8to9/source/d3d8to9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/source/d3d8to9.hpp -------------------------------------------------------------------------------- /vendor/d3d8to9/source/d3dx9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/d3d8to9/source/d3dx9.hpp -------------------------------------------------------------------------------- /vendor/dds/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/dds/dds.h -------------------------------------------------------------------------------- /vendor/ed25519/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/ed25519/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/license.txt -------------------------------------------------------------------------------- /vendor/ed25519/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/readme.md -------------------------------------------------------------------------------- /vendor/ed25519/src/add_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/add_scalar.c -------------------------------------------------------------------------------- /vendor/ed25519/src/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/ed25519.h -------------------------------------------------------------------------------- /vendor/ed25519/src/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/fe.c -------------------------------------------------------------------------------- /vendor/ed25519/src/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/fe.h -------------------------------------------------------------------------------- /vendor/ed25519/src/fixedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/fixedint.h -------------------------------------------------------------------------------- /vendor/ed25519/src/ge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/ge.c -------------------------------------------------------------------------------- /vendor/ed25519/src/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/ge.h -------------------------------------------------------------------------------- /vendor/ed25519/src/key_exchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/key_exchange.c -------------------------------------------------------------------------------- /vendor/ed25519/src/keypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/keypair.c -------------------------------------------------------------------------------- /vendor/ed25519/src/precomp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/precomp_data.h -------------------------------------------------------------------------------- /vendor/ed25519/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/sc.c -------------------------------------------------------------------------------- /vendor/ed25519/src/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/sc.h -------------------------------------------------------------------------------- /vendor/ed25519/src/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/seed.c -------------------------------------------------------------------------------- /vendor/ed25519/src/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/sha512.c -------------------------------------------------------------------------------- /vendor/ed25519/src/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/sha512.h -------------------------------------------------------------------------------- /vendor/ed25519/src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/sign.c -------------------------------------------------------------------------------- /vendor/ed25519/src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/ed25519/src/verify.c -------------------------------------------------------------------------------- /vendor/freetype/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/.clang-format -------------------------------------------------------------------------------- /vendor/freetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/freetype/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/ChangeLog -------------------------------------------------------------------------------- /vendor/freetype/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/LICENSE.TXT -------------------------------------------------------------------------------- /vendor/freetype/MSBuild.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/MSBuild.rsp -------------------------------------------------------------------------------- /vendor/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/Makefile -------------------------------------------------------------------------------- /vendor/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/README -------------------------------------------------------------------------------- /vendor/freetype/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/README.git -------------------------------------------------------------------------------- /vendor/freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/autogen.sh -------------------------------------------------------------------------------- /vendor/freetype/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/detect.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/exports.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/freetype.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/link_dos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/link_dos.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/link_std.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/link_std.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/mac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/mac/README -------------------------------------------------------------------------------- /vendor/freetype/builds/mac/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/mac/ftmac.c -------------------------------------------------------------------------------- /vendor/freetype/builds/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/modules.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/toplevel.mk -------------------------------------------------------------------------------- /vendor/freetype/builds/unix/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/builds/unix/pkg.m4 -------------------------------------------------------------------------------- /vendor/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/configure -------------------------------------------------------------------------------- /vendor/freetype/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/devel/ft2build.h -------------------------------------------------------------------------------- /vendor/freetype/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/devel/ftoption.h -------------------------------------------------------------------------------- /vendor/freetype/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/CHANGES -------------------------------------------------------------------------------- /vendor/freetype/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/CMAKE -------------------------------------------------------------------------------- /vendor/freetype/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/CUSTOMIZE -------------------------------------------------------------------------------- /vendor/freetype/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/DEBUG -------------------------------------------------------------------------------- /vendor/freetype/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/DOCGUIDE -------------------------------------------------------------------------------- /vendor/freetype/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/FTL.TXT -------------------------------------------------------------------------------- /vendor/freetype/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/GPLv2.TXT -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.ANY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.ANY -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.CROSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.CROSS -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.GNU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.GNU -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.MAC -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.UNIX -------------------------------------------------------------------------------- /vendor/freetype/docs/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/INSTALL.VMS -------------------------------------------------------------------------------- /vendor/freetype/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/MAKEPP -------------------------------------------------------------------------------- /vendor/freetype/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/PROBLEMS -------------------------------------------------------------------------------- /vendor/freetype/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/README -------------------------------------------------------------------------------- /vendor/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/TODO -------------------------------------------------------------------------------- /vendor/freetype/docs/VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/VERSIONS.TXT -------------------------------------------------------------------------------- /vendor/freetype/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/formats.txt -------------------------------------------------------------------------------- /vendor/freetype/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/raster.txt -------------------------------------------------------------------------------- /vendor/freetype/docs/reference/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /vendor/freetype/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/docs/release -------------------------------------------------------------------------------- /vendor/freetype/include/dlg/dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/include/dlg/dlg.h -------------------------------------------------------------------------------- /vendor/freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/include/ft2build.h -------------------------------------------------------------------------------- /vendor/freetype/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/meson.build -------------------------------------------------------------------------------- /vendor/freetype/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/meson_options.txt -------------------------------------------------------------------------------- /vendor/freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/modules.cfg -------------------------------------------------------------------------------- /vendor/freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/objs/README -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftbase.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftbase.h -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftbbox.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftbdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftcalc.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftcid.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftcolor.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftdebug.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftgasp.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftglyph.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftgxval.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/fthash.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftinit.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftmac.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftmm.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftotval.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftoutln.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftpfr.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftrfork.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftsynth.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/fttype1.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftutil.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/ftver.rc -------------------------------------------------------------------------------- /vendor/freetype/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/md5.c -------------------------------------------------------------------------------- /vendor/freetype/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/md5.h -------------------------------------------------------------------------------- /vendor/freetype/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/base/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/README -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdferror.h -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/bdflib.c -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bdf/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/bzip2/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cache/ftcmru.c -------------------------------------------------------------------------------- /vendor/freetype/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cache/ftcmru.h -------------------------------------------------------------------------------- /vendor/freetype/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cache/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffcmap.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffcmap.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cfferrs.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffgload.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffgload.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffload.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffload.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffobjs.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffparse.c -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cffparse.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/cfftoken.h -------------------------------------------------------------------------------- /vendor/freetype/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cff/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/ciderrs.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidgload.c -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidgload.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidload.c -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidload.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidobjs.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidparse.c -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidparse.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidriver.c -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidriver.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/cidtoken.h -------------------------------------------------------------------------------- /vendor/freetype/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/cid/type1cid.c -------------------------------------------------------------------------------- /vendor/freetype/src/dlg/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/dlg/dlg.c -------------------------------------------------------------------------------- /vendor/freetype/src/dlg/dlgwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/dlg/dlgwrap.c -------------------------------------------------------------------------------- /vendor/freetype/src/dlg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/dlg/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gxvalid/README -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/adler32.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/crc32.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/crc32.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/gzguts.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/inffast.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/inffast.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/inflate.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/inflate.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/zlib.h -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/zutil.c -------------------------------------------------------------------------------- /vendor/freetype/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/gzip/zutil.h -------------------------------------------------------------------------------- /vendor/freetype/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /vendor/freetype/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /vendor/freetype/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /vendor/freetype/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/lzw/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/README -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcferror.h -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfread.c -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfread.h -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /vendor/freetype/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pcf/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrload.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrload.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /vendor/freetype/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/pfr/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psaux.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psconv.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psconv.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psfont.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psfont.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psft.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psft.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psglue.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psobjs.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psread.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/psread.h -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /vendor/freetype/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/ftbsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/ftbsdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/ftsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/ftsdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/ftsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/ftsdf.h -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sdf/sdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/module.mk -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfwoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfwoff.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfwoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfwoff.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfwoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfwoff2.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/sfwoff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/sfwoff2.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcolr.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcolr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcolr.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcpal.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttcpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttcpal.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttsvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttsvg.c -------------------------------------------------------------------------------- /vendor/freetype/src/sfnt/ttsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/sfnt/ttsvg.h -------------------------------------------------------------------------------- /vendor/freetype/src/svg/ftsvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/svg/ftsvg.c -------------------------------------------------------------------------------- /vendor/freetype/src/svg/ftsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/svg/ftsvg.h -------------------------------------------------------------------------------- /vendor/freetype/src/svg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/svg/rules.mk -------------------------------------------------------------------------------- /vendor/freetype/src/svg/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/src/svg/svg.c -------------------------------------------------------------------------------- /vendor/freetype/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/tests/README.md -------------------------------------------------------------------------------- /vendor/freetype/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/freetype/vms_make.com -------------------------------------------------------------------------------- /vendor/minibsdiff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/.gitignore -------------------------------------------------------------------------------- /vendor/minibsdiff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/.travis.yml -------------------------------------------------------------------------------- /vendor/minibsdiff/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/AUTHORS.txt -------------------------------------------------------------------------------- /vendor/minibsdiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/minibsdiff/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/LICENSE.txt -------------------------------------------------------------------------------- /vendor/minibsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/Makefile -------------------------------------------------------------------------------- /vendor/minibsdiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/README.md -------------------------------------------------------------------------------- /vendor/minibsdiff/bsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/bsdiff.c -------------------------------------------------------------------------------- /vendor/minibsdiff/bsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/bsdiff.h -------------------------------------------------------------------------------- /vendor/minibsdiff/bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/bspatch.c -------------------------------------------------------------------------------- /vendor/minibsdiff/bspatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/bspatch.h -------------------------------------------------------------------------------- /vendor/minibsdiff/minibsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/minibsdiff.c -------------------------------------------------------------------------------- /vendor/minibsdiff/release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/release.nix -------------------------------------------------------------------------------- /vendor/minibsdiff/stdbool-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/stdbool-msvc.h -------------------------------------------------------------------------------- /vendor/minibsdiff/stdint-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/minibsdiff/stdint-msvc.h -------------------------------------------------------------------------------- /vendor/natupnp/natupnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/natupnp/natupnp.h -------------------------------------------------------------------------------- /vendor/sha1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/sha1/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/sha1/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/sha1/sha1.cpp -------------------------------------------------------------------------------- /vendor/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/sha1/sha1.h -------------------------------------------------------------------------------- /vendor/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/stb/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/stb/stb_vorbis.c -------------------------------------------------------------------------------- /vendor/stb/stb_vorbis.h: -------------------------------------------------------------------------------- 1 | #define STB_VORBIS_HEADER_ONLY 2 | #include "stb_vorbis.c" 3 | -------------------------------------------------------------------------------- /vendor/subhook/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/.editorconfig -------------------------------------------------------------------------------- /vendor/subhook/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/subhook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/.gitignore -------------------------------------------------------------------------------- /vendor/subhook/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/.travis.yml -------------------------------------------------------------------------------- /vendor/subhook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/subhook/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/LICENSE.txt -------------------------------------------------------------------------------- /vendor/subhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/README.md -------------------------------------------------------------------------------- /vendor/subhook/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/appveyor.yml -------------------------------------------------------------------------------- /vendor/subhook/subhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook.c -------------------------------------------------------------------------------- /vendor/subhook/subhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook.h -------------------------------------------------------------------------------- /vendor/subhook/subhook_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook_private.h -------------------------------------------------------------------------------- /vendor/subhook/subhook_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook_unix.c -------------------------------------------------------------------------------- /vendor/subhook/subhook_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook_windows.c -------------------------------------------------------------------------------- /vendor/subhook/subhook_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/subhook/subhook_x86.c -------------------------------------------------------------------------------- /vendor/unrar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/unrar/acknow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/acknow.txt -------------------------------------------------------------------------------- /vendor/unrar/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/arccmt.cpp -------------------------------------------------------------------------------- /vendor/unrar/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/archive.cpp -------------------------------------------------------------------------------- /vendor/unrar/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/archive.hpp -------------------------------------------------------------------------------- /vendor/unrar/arcread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/arcread.cpp -------------------------------------------------------------------------------- /vendor/unrar/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/array.hpp -------------------------------------------------------------------------------- /vendor/unrar/blake2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/blake2s.cpp -------------------------------------------------------------------------------- /vendor/unrar/blake2s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/blake2s.hpp -------------------------------------------------------------------------------- /vendor/unrar/blake2s_sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/blake2s_sse.cpp -------------------------------------------------------------------------------- /vendor/unrar/blake2sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/blake2sp.cpp -------------------------------------------------------------------------------- /vendor/unrar/cmddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/cmddata.cpp -------------------------------------------------------------------------------- /vendor/unrar/cmddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/cmddata.hpp -------------------------------------------------------------------------------- /vendor/unrar/cmdfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/cmdfilter.cpp -------------------------------------------------------------------------------- /vendor/unrar/cmdmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/cmdmix.cpp -------------------------------------------------------------------------------- /vendor/unrar/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/coder.cpp -------------------------------------------------------------------------------- /vendor/unrar/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/coder.hpp -------------------------------------------------------------------------------- /vendor/unrar/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/compress.hpp -------------------------------------------------------------------------------- /vendor/unrar/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/consio.cpp -------------------------------------------------------------------------------- /vendor/unrar/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/consio.hpp -------------------------------------------------------------------------------- /vendor/unrar/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crc.cpp -------------------------------------------------------------------------------- /vendor/unrar/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crc.hpp -------------------------------------------------------------------------------- /vendor/unrar/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt.cpp -------------------------------------------------------------------------------- /vendor/unrar/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt.hpp -------------------------------------------------------------------------------- /vendor/unrar/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt1.cpp -------------------------------------------------------------------------------- /vendor/unrar/crypt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt2.cpp -------------------------------------------------------------------------------- /vendor/unrar/crypt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt3.cpp -------------------------------------------------------------------------------- /vendor/unrar/crypt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/crypt5.cpp -------------------------------------------------------------------------------- /vendor/unrar/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/dll.cpp -------------------------------------------------------------------------------- /vendor/unrar/dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/dll.def -------------------------------------------------------------------------------- /vendor/unrar/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/dll.hpp -------------------------------------------------------------------------------- /vendor/unrar/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/dll.rc -------------------------------------------------------------------------------- /vendor/unrar/dll_nocrypt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/dll_nocrypt.def -------------------------------------------------------------------------------- /vendor/unrar/encname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/encname.cpp -------------------------------------------------------------------------------- /vendor/unrar/encname.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/encname.hpp -------------------------------------------------------------------------------- /vendor/unrar/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/errhnd.cpp -------------------------------------------------------------------------------- /vendor/unrar/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/errhnd.hpp -------------------------------------------------------------------------------- /vendor/unrar/extinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/extinfo.cpp -------------------------------------------------------------------------------- /vendor/unrar/extinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/extinfo.hpp -------------------------------------------------------------------------------- /vendor/unrar/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/extract.cpp -------------------------------------------------------------------------------- /vendor/unrar/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/extract.hpp -------------------------------------------------------------------------------- /vendor/unrar/filcreat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filcreat.cpp -------------------------------------------------------------------------------- /vendor/unrar/filcreat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filcreat.hpp -------------------------------------------------------------------------------- /vendor/unrar/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/file.cpp -------------------------------------------------------------------------------- /vendor/unrar/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/file.hpp -------------------------------------------------------------------------------- /vendor/unrar/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filefn.cpp -------------------------------------------------------------------------------- /vendor/unrar/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filefn.hpp -------------------------------------------------------------------------------- /vendor/unrar/filestr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filestr.cpp -------------------------------------------------------------------------------- /vendor/unrar/filestr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/filestr.hpp -------------------------------------------------------------------------------- /vendor/unrar/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/find.cpp -------------------------------------------------------------------------------- /vendor/unrar/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/find.hpp -------------------------------------------------------------------------------- /vendor/unrar/getbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/getbits.cpp -------------------------------------------------------------------------------- /vendor/unrar/getbits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/getbits.hpp -------------------------------------------------------------------------------- /vendor/unrar/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/global.cpp -------------------------------------------------------------------------------- /vendor/unrar/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/global.hpp -------------------------------------------------------------------------------- /vendor/unrar/hardlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/hardlinks.cpp -------------------------------------------------------------------------------- /vendor/unrar/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/hash.cpp -------------------------------------------------------------------------------- /vendor/unrar/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/hash.hpp -------------------------------------------------------------------------------- /vendor/unrar/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/headers.cpp -------------------------------------------------------------------------------- /vendor/unrar/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/headers.hpp -------------------------------------------------------------------------------- /vendor/unrar/headers5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/headers5.hpp -------------------------------------------------------------------------------- /vendor/unrar/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/isnt.cpp -------------------------------------------------------------------------------- /vendor/unrar/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/isnt.hpp -------------------------------------------------------------------------------- /vendor/unrar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/license.txt -------------------------------------------------------------------------------- /vendor/unrar/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/list.cpp -------------------------------------------------------------------------------- /vendor/unrar/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/list.hpp -------------------------------------------------------------------------------- /vendor/unrar/loclang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/loclang.hpp -------------------------------------------------------------------------------- /vendor/unrar/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/log.cpp -------------------------------------------------------------------------------- /vendor/unrar/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/log.hpp -------------------------------------------------------------------------------- /vendor/unrar/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/makefile -------------------------------------------------------------------------------- /vendor/unrar/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/match.cpp -------------------------------------------------------------------------------- /vendor/unrar/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/match.hpp -------------------------------------------------------------------------------- /vendor/unrar/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/model.cpp -------------------------------------------------------------------------------- /vendor/unrar/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/model.hpp -------------------------------------------------------------------------------- /vendor/unrar/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/options.cpp -------------------------------------------------------------------------------- /vendor/unrar/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/options.hpp -------------------------------------------------------------------------------- /vendor/unrar/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/os.hpp -------------------------------------------------------------------------------- /vendor/unrar/pathfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/pathfn.cpp -------------------------------------------------------------------------------- /vendor/unrar/pathfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/pathfn.hpp -------------------------------------------------------------------------------- /vendor/unrar/qopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/qopen.cpp -------------------------------------------------------------------------------- /vendor/unrar/qopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/qopen.hpp -------------------------------------------------------------------------------- /vendor/unrar/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rar.cpp -------------------------------------------------------------------------------- /vendor/unrar/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rar.hpp -------------------------------------------------------------------------------- /vendor/unrar/rardefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rardefs.hpp -------------------------------------------------------------------------------- /vendor/unrar/rarlang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rarlang.hpp -------------------------------------------------------------------------------- /vendor/unrar/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/raros.hpp -------------------------------------------------------------------------------- /vendor/unrar/rarpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rarpch.cpp -------------------------------------------------------------------------------- /vendor/unrar/rartypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rartypes.hpp -------------------------------------------------------------------------------- /vendor/unrar/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rarvm.cpp -------------------------------------------------------------------------------- /vendor/unrar/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rarvm.hpp -------------------------------------------------------------------------------- /vendor/unrar/rawint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rawint.hpp -------------------------------------------------------------------------------- /vendor/unrar/rawread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rawread.cpp -------------------------------------------------------------------------------- /vendor/unrar/rawread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rawread.hpp -------------------------------------------------------------------------------- /vendor/unrar/rdwrfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rdwrfn.cpp -------------------------------------------------------------------------------- /vendor/unrar/rdwrfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rdwrfn.hpp -------------------------------------------------------------------------------- /vendor/unrar/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/readme.txt -------------------------------------------------------------------------------- /vendor/unrar/recvol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/recvol.cpp -------------------------------------------------------------------------------- /vendor/unrar/recvol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/recvol.hpp -------------------------------------------------------------------------------- /vendor/unrar/recvol3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/recvol3.cpp -------------------------------------------------------------------------------- /vendor/unrar/recvol5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/recvol5.cpp -------------------------------------------------------------------------------- /vendor/unrar/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/resource.cpp -------------------------------------------------------------------------------- /vendor/unrar/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/resource.hpp -------------------------------------------------------------------------------- /vendor/unrar/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rijndael.cpp -------------------------------------------------------------------------------- /vendor/unrar/rijndael.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rijndael.hpp -------------------------------------------------------------------------------- /vendor/unrar/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rs.cpp -------------------------------------------------------------------------------- /vendor/unrar/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rs.hpp -------------------------------------------------------------------------------- /vendor/unrar/rs16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rs16.cpp -------------------------------------------------------------------------------- /vendor/unrar/rs16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/rs16.hpp -------------------------------------------------------------------------------- /vendor/unrar/scantree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/scantree.cpp -------------------------------------------------------------------------------- /vendor/unrar/scantree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/scantree.hpp -------------------------------------------------------------------------------- /vendor/unrar/secpassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/secpassword.cpp -------------------------------------------------------------------------------- /vendor/unrar/secpassword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/secpassword.hpp -------------------------------------------------------------------------------- /vendor/unrar/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/sha1.cpp -------------------------------------------------------------------------------- /vendor/unrar/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/sha1.hpp -------------------------------------------------------------------------------- /vendor/unrar/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/sha256.cpp -------------------------------------------------------------------------------- /vendor/unrar/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/sha256.hpp -------------------------------------------------------------------------------- /vendor/unrar/smallfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/smallfn.cpp -------------------------------------------------------------------------------- /vendor/unrar/smallfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/smallfn.hpp -------------------------------------------------------------------------------- /vendor/unrar/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/strfn.cpp -------------------------------------------------------------------------------- /vendor/unrar/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/strfn.hpp -------------------------------------------------------------------------------- /vendor/unrar/strlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/strlist.cpp -------------------------------------------------------------------------------- /vendor/unrar/strlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/strlist.hpp -------------------------------------------------------------------------------- /vendor/unrar/suballoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/suballoc.cpp -------------------------------------------------------------------------------- /vendor/unrar/suballoc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/suballoc.hpp -------------------------------------------------------------------------------- /vendor/unrar/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/system.cpp -------------------------------------------------------------------------------- /vendor/unrar/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/system.hpp -------------------------------------------------------------------------------- /vendor/unrar/threadmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/threadmisc.cpp -------------------------------------------------------------------------------- /vendor/unrar/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/threadpool.cpp -------------------------------------------------------------------------------- /vendor/unrar/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/threadpool.hpp -------------------------------------------------------------------------------- /vendor/unrar/timefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/timefn.cpp -------------------------------------------------------------------------------- /vendor/unrar/timefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/timefn.hpp -------------------------------------------------------------------------------- /vendor/unrar/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/ui.cpp -------------------------------------------------------------------------------- /vendor/unrar/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/ui.hpp -------------------------------------------------------------------------------- /vendor/unrar/uicommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/uicommon.cpp -------------------------------------------------------------------------------- /vendor/unrar/uiconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/uiconsole.cpp -------------------------------------------------------------------------------- /vendor/unrar/uisilent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/uisilent.cpp -------------------------------------------------------------------------------- /vendor/unrar/ulinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/ulinks.cpp -------------------------------------------------------------------------------- /vendor/unrar/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unicode.cpp -------------------------------------------------------------------------------- /vendor/unrar/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unicode.hpp -------------------------------------------------------------------------------- /vendor/unrar/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack.hpp -------------------------------------------------------------------------------- /vendor/unrar/unpack15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack15.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack20.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack30.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack50.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack50frag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack50frag.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpack50mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpack50mt.cpp -------------------------------------------------------------------------------- /vendor/unrar/unpackinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/unpackinline.cpp -------------------------------------------------------------------------------- /vendor/unrar/uowners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/uowners.cpp -------------------------------------------------------------------------------- /vendor/unrar/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/version.hpp -------------------------------------------------------------------------------- /vendor/unrar/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/volume.cpp -------------------------------------------------------------------------------- /vendor/unrar/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/volume.hpp -------------------------------------------------------------------------------- /vendor/unrar/win32acl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/win32acl.cpp -------------------------------------------------------------------------------- /vendor/unrar/win32lnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/win32lnk.cpp -------------------------------------------------------------------------------- /vendor/unrar/win32stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/unrar/win32stm.cpp -------------------------------------------------------------------------------- /vendor/win32xx/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/changes.txt -------------------------------------------------------------------------------- /vendor/win32xx/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/copyright.txt -------------------------------------------------------------------------------- /vendor/win32xx/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/info.txt -------------------------------------------------------------------------------- /vendor/win32xx/release notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/release notes.txt -------------------------------------------------------------------------------- /vendor/win32xx/wxx_appcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_appcore.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_appcore0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_appcore0.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_archive.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_commondlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_commondlg.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_controls.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_cstring.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_ddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_ddx.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_dialog.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_dockframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_dockframe.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_docking.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_exception.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_file.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_filefind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_filefind.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_frame.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_gdi.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_hglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_hglobal.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_imagelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_imagelist.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_listview.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_mdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_mdi.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_menu.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_menubar.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_menumetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_menumetrics.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_messagepump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_messagepump.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_metafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_metafile.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_mutex.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_preview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_preview.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_rebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_rebar.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_rect.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_regkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_regkey.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_ribbon.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_richedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_richedit.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_scrollview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_scrollview.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_setup.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_shared_ptr.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_socket.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_statusbar.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_stdcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_stdcontrols.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_tab.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_taskdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_taskdialog.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_textconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_textconv.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_themes.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_thread.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_time.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_toolbar.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_treeview.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_webbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_webbrowser.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_wincore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_wincore.h -------------------------------------------------------------------------------- /vendor/win32xx/wxx_wincore0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/win32xx/wxx_wincore0.h -------------------------------------------------------------------------------- /vendor/xxhash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/xxhash/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/xxhash/LICENSE -------------------------------------------------------------------------------- /vendor/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/xxhash/xxhash.c -------------------------------------------------------------------------------- /vendor/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/xxhash/xxhash.h -------------------------------------------------------------------------------- /vendor/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/ChangeLog -------------------------------------------------------------------------------- /vendor/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/FAQ -------------------------------------------------------------------------------- /vendor/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/INDEX -------------------------------------------------------------------------------- /vendor/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/LICENSE -------------------------------------------------------------------------------- /vendor/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/README -------------------------------------------------------------------------------- /vendor/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/adler32.c -------------------------------------------------------------------------------- /vendor/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/compress.c -------------------------------------------------------------------------------- /vendor/zlib/contrib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(minizip) 2 | -------------------------------------------------------------------------------- /vendor/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/crc32.c -------------------------------------------------------------------------------- /vendor/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/crc32.h -------------------------------------------------------------------------------- /vendor/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/deflate.c -------------------------------------------------------------------------------- /vendor/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/deflate.h -------------------------------------------------------------------------------- /vendor/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/gzclose.c -------------------------------------------------------------------------------- /vendor/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/gzguts.h -------------------------------------------------------------------------------- /vendor/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/gzlib.c -------------------------------------------------------------------------------- /vendor/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/gzread.c -------------------------------------------------------------------------------- /vendor/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/gzwrite.c -------------------------------------------------------------------------------- /vendor/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/infback.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inffast.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inffast.h -------------------------------------------------------------------------------- /vendor/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inffixed.h -------------------------------------------------------------------------------- /vendor/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inflate.c -------------------------------------------------------------------------------- /vendor/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inflate.h -------------------------------------------------------------------------------- /vendor/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inftrees.c -------------------------------------------------------------------------------- /vendor/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/inftrees.h -------------------------------------------------------------------------------- /vendor/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/treebuild.xml -------------------------------------------------------------------------------- /vendor/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/trees.c -------------------------------------------------------------------------------- /vendor/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/trees.h -------------------------------------------------------------------------------- /vendor/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/uncompr.c -------------------------------------------------------------------------------- /vendor/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/zconf.h -------------------------------------------------------------------------------- /vendor/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/zlib.h -------------------------------------------------------------------------------- /vendor/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/zlib.map -------------------------------------------------------------------------------- /vendor/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/zutil.c -------------------------------------------------------------------------------- /vendor/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/vendor/zlib/zutil.h -------------------------------------------------------------------------------- /xlog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/CMakeLists.txt -------------------------------------------------------------------------------- /xlog/include/xlog/Appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/Appender.h -------------------------------------------------------------------------------- /xlog/include/xlog/FileAppender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/FileAppender.h -------------------------------------------------------------------------------- /xlog/include/xlog/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/Formatter.h -------------------------------------------------------------------------------- /xlog/include/xlog/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/Level.h -------------------------------------------------------------------------------- /xlog/include/xlog/LogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/LogStream.h -------------------------------------------------------------------------------- /xlog/include/xlog/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/Logger.h -------------------------------------------------------------------------------- /xlog/include/xlog/LoggerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/LoggerConfig.h -------------------------------------------------------------------------------- /xlog/include/xlog/NullStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/NullStream.h -------------------------------------------------------------------------------- /xlog/include/xlog/xlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/include/xlog/xlog.h -------------------------------------------------------------------------------- /xlog/src/FileAppender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/src/FileAppender.cpp -------------------------------------------------------------------------------- /xlog/src/LoggerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/src/LoggerConfig.cpp -------------------------------------------------------------------------------- /xlog/src/SimpleFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/src/SimpleFormatter.cpp -------------------------------------------------------------------------------- /xlog/src/Win32Appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafalh/dashfaction/HEAD/xlog/src/Win32Appender.cpp --------------------------------------------------------------------------------