├── .gitignore ├── CHANGELIST.md ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── baselib ├── Asserts.h ├── ByteInputStream.h ├── ByteVecOutputStream.h ├── CMakeLists.txt ├── Endian.h ├── FatalErrors.cpp ├── FatalErrors.h ├── FileInputStream.h ├── FileOutputStream.h ├── FileUtils.cpp ├── FileUtils.h ├── Finally.h ├── Flags.h ├── IniUtils.cpp ├── IniUtils.h ├── InputStream.h ├── JsonUtils.h ├── Macros.h ├── Matrix4.h ├── OutputStream.h └── SmallString.h ├── cmake ├── BuildSetup.cmake └── HelperFunctions.cmake ├── docs ├── PsyDoom Icon - Complex.svg ├── PsyDoom Icon - Simple.svg ├── PsyDoom Logo.svg ├── PsyDoom Lua Scripting.md ├── PsyDoom MAPINFO.md ├── PsyDoom Modding Overview.md ├── PsyDoom Special Lumps.md ├── Raspbian cross compile on Linux.txt └── old │ ├── I_AddPrim-disassembly.txt │ ├── old_notes.txt │ └── psx_doom_to_final_doom_diffs.patch ├── extras ├── avocado_demo_recording_patches_and_hacks │ ├── avocado_demo_record_hack_Doom_1.1_NTSC_U.patch │ ├── avocado_demo_record_hack_Doom_1.1_PAL.patch │ ├── avocado_demo_record_hack_Final_Doom_NTSC_U.patch │ ├── avocado_demo_record_hack_Final_Doom_PAL.patch │ └── avocado_direct_exe_load_hack.patch ├── config_folder_shortcuts │ ├── Open PsyDoom Config Folder.bat │ └── Open PsyDoom Config Folder.command ├── control_binding_configs │ └── playstation_classic_controller.ini ├── psxdoom_demos │ ├── About These.md │ ├── DOOM_NTSC_DEMO1.LMP │ ├── DOOM_NTSC_DEMO1.result.json │ ├── DOOM_NTSC_DEMO2.LMP │ ├── DOOM_NTSC_DEMO2.result.json │ ├── DOOM_NTSC_MAP01.LMP │ ├── DOOM_NTSC_MAP01.result.json │ ├── DOOM_NTSC_MAP02.LMP │ ├── DOOM_NTSC_MAP02.result.json │ ├── DOOM_NTSC_MAP03.LMP │ ├── DOOM_NTSC_MAP03.result.json │ ├── DOOM_NTSC_MAP04.LMP │ ├── DOOM_NTSC_MAP04.result.json │ ├── DOOM_NTSC_MAP05.LMP │ ├── DOOM_NTSC_MAP05.result.json │ ├── DOOM_NTSC_MAP06.LMP │ ├── DOOM_NTSC_MAP06.result.json │ ├── DOOM_NTSC_MAP07.LMP │ ├── DOOM_NTSC_MAP07.result.json │ ├── DOOM_NTSC_MAP08.LMP │ ├── DOOM_NTSC_MAP08.result.json │ ├── DOOM_NTSC_MAP09.LMP │ ├── DOOM_NTSC_MAP09.result.json │ ├── DOOM_NTSC_MAP10.LMP │ ├── DOOM_NTSC_MAP10.result.json │ ├── DOOM_NTSC_MAP11.LMP │ ├── DOOM_NTSC_MAP11.result.json │ ├── DOOM_NTSC_MAP12.LMP │ ├── DOOM_NTSC_MAP12.result.json │ ├── DOOM_NTSC_MAP13.LMP │ ├── DOOM_NTSC_MAP13.result.json │ ├── DOOM_NTSC_MAP14.LMP │ ├── DOOM_NTSC_MAP14.result.json │ ├── DOOM_NTSC_MAP15.LMP │ ├── DOOM_NTSC_MAP15.result.json │ ├── DOOM_NTSC_MAP16.LMP │ ├── DOOM_NTSC_MAP16.result.json │ ├── DOOM_NTSC_MAP17.LMP │ ├── DOOM_NTSC_MAP17.result.json │ ├── DOOM_NTSC_MAP18.LMP │ ├── DOOM_NTSC_MAP18.result.json │ ├── DOOM_NTSC_MAP19.LMP │ ├── DOOM_NTSC_MAP19.result.json │ ├── DOOM_NTSC_MAP20.LMP │ ├── DOOM_NTSC_MAP20.result.json │ ├── DOOM_NTSC_MAP21.LMP │ ├── DOOM_NTSC_MAP21.result.json │ ├── DOOM_NTSC_MAP22.LMP │ ├── DOOM_NTSC_MAP22.result.json │ ├── DOOM_NTSC_MAP23.LMP │ ├── DOOM_NTSC_MAP23.result.json │ ├── DOOM_NTSC_MAP24.LMP │ ├── DOOM_NTSC_MAP24.result.json │ ├── DOOM_NTSC_MAP25.LMP │ ├── DOOM_NTSC_MAP25.result.json │ ├── DOOM_NTSC_MAP26.LMP │ ├── DOOM_NTSC_MAP26.result.json │ ├── DOOM_NTSC_MAP27.LMP │ ├── DOOM_NTSC_MAP27.result.json │ ├── DOOM_NTSC_MAP28.LMP │ ├── DOOM_NTSC_MAP28.result.json │ ├── DOOM_NTSC_MAP29.LMP │ ├── DOOM_NTSC_MAP29.result.json │ ├── DOOM_NTSC_MAP30.LMP │ ├── DOOM_NTSC_MAP30.result.json │ ├── DOOM_NTSC_MAP31.LMP │ ├── DOOM_NTSC_MAP31.result.json │ ├── DOOM_NTSC_MAP32.LMP │ ├── DOOM_NTSC_MAP32.result.json │ ├── DOOM_NTSC_MAP33.LMP │ ├── DOOM_NTSC_MAP33.result.json │ ├── DOOM_NTSC_MAP34.LMP │ ├── DOOM_NTSC_MAP34.result.json │ ├── DOOM_NTSC_MAP35.LMP │ ├── DOOM_NTSC_MAP35.result.json │ ├── DOOM_NTSC_MAP36.LMP │ ├── DOOM_NTSC_MAP36.result.json │ ├── DOOM_NTSC_MAP37.LMP │ ├── DOOM_NTSC_MAP37.result.json │ ├── DOOM_NTSC_MAP38.LMP │ ├── DOOM_NTSC_MAP38.result.json │ ├── DOOM_NTSC_MAP39.LMP │ ├── DOOM_NTSC_MAP39.result.json │ ├── DOOM_NTSC_MAP40.LMP │ ├── DOOM_NTSC_MAP40.result.json │ ├── DOOM_NTSC_MAP41.LMP │ ├── DOOM_NTSC_MAP41.result.json │ ├── DOOM_NTSC_MAP42.LMP │ ├── DOOM_NTSC_MAP42.result.json │ ├── DOOM_NTSC_MAP43.LMP │ ├── DOOM_NTSC_MAP43.result.json │ ├── DOOM_NTSC_MAP44.LMP │ ├── DOOM_NTSC_MAP44.result.json │ ├── DOOM_NTSC_MAP45.LMP │ ├── DOOM_NTSC_MAP45.result.json │ ├── DOOM_NTSC_MAP46.LMP │ ├── DOOM_NTSC_MAP46.result.json │ ├── DOOM_NTSC_MAP47.LMP │ ├── DOOM_NTSC_MAP47.result.json │ ├── DOOM_NTSC_MAP48.LMP │ ├── DOOM_NTSC_MAP48.result.json │ ├── DOOM_NTSC_MAP49.LMP │ ├── DOOM_NTSC_MAP49.result.json │ ├── DOOM_NTSC_MAP50.LMP │ ├── DOOM_NTSC_MAP50.result.json │ ├── DOOM_NTSC_MAP51.LMP │ ├── DOOM_NTSC_MAP51.result.json │ ├── DOOM_NTSC_MAP52.LMP │ ├── DOOM_NTSC_MAP52.result.json │ ├── DOOM_NTSC_MAP53.LMP │ ├── DOOM_NTSC_MAP53.result.json │ ├── DOOM_NTSC_MAP54.LMP │ ├── DOOM_NTSC_MAP54.result.json │ ├── DOOM_NTSC_MAP55.LMP │ ├── DOOM_NTSC_MAP55.result.json │ ├── DOOM_NTSC_MAP56.LMP │ ├── DOOM_NTSC_MAP56.result.json │ ├── DOOM_NTSC_MAP57.LMP │ ├── DOOM_NTSC_MAP57.result.json │ ├── DOOM_NTSC_MAP58.LMP │ ├── DOOM_NTSC_MAP58.result.json │ ├── DOOM_NTSC_MAP59.LMP │ ├── DOOM_NTSC_MAP59.result.json │ ├── DOOM_PAL_DEMO1.LMP │ ├── DOOM_PAL_DEMO1.result.json │ ├── DOOM_PAL_DEMO2.LMP │ ├── DOOM_PAL_DEMO2.result.json │ ├── DOOM_PAL_MAP01.LMP │ ├── DOOM_PAL_MAP01.result.json │ ├── DOOM_PAL_MAP02.LMP │ ├── DOOM_PAL_MAP02.result.json │ ├── DOOM_PAL_MAP03.LMP │ ├── DOOM_PAL_MAP03.result.json │ ├── DOOM_PAL_MAP04.LMP │ ├── DOOM_PAL_MAP04.result.json │ ├── DOOM_PAL_MAP05.LMP │ ├── DOOM_PAL_MAP05.result.json │ ├── DOOM_PAL_MAP06.LMP │ ├── DOOM_PAL_MAP06.result.json │ ├── DOOM_PAL_MAP07.LMP │ ├── DOOM_PAL_MAP07.result.json │ ├── DOOM_PAL_MAP08.LMP │ ├── DOOM_PAL_MAP08.result.json │ ├── DOOM_PAL_MAP09.LMP │ ├── DOOM_PAL_MAP09.result.json │ ├── DOOM_PAL_MAP10.LMP │ ├── DOOM_PAL_MAP10.result.json │ ├── DOOM_PAL_MAP11.LMP │ ├── DOOM_PAL_MAP11.result.json │ ├── DOOM_PAL_MAP12.LMP │ ├── DOOM_PAL_MAP12.result.json │ ├── DOOM_PAL_MAP13.LMP │ ├── DOOM_PAL_MAP13.result.json │ ├── DOOM_PAL_MAP14.LMP │ ├── DOOM_PAL_MAP14.result.json │ ├── DOOM_PAL_MAP15.LMP │ ├── DOOM_PAL_MAP15.result.json │ ├── DOOM_PAL_MAP16.LMP │ ├── DOOM_PAL_MAP16.result.json │ ├── DOOM_PAL_MAP17.LMP │ ├── DOOM_PAL_MAP17.result.json │ ├── DOOM_PAL_MAP18.LMP │ ├── DOOM_PAL_MAP18.result.json │ ├── DOOM_PAL_MAP19.LMP │ ├── DOOM_PAL_MAP19.result.json │ ├── DOOM_PAL_MAP20.LMP │ ├── DOOM_PAL_MAP20.result.json │ ├── DOOM_PAL_MAP21.LMP │ ├── DOOM_PAL_MAP21.result.json │ ├── DOOM_PAL_MAP22.LMP │ ├── DOOM_PAL_MAP22.result.json │ ├── DOOM_PAL_MAP23.LMP │ ├── DOOM_PAL_MAP23.result.json │ ├── DOOM_PAL_MAP24.LMP │ ├── DOOM_PAL_MAP24.result.json │ ├── DOOM_PAL_MAP25.LMP │ ├── DOOM_PAL_MAP25.result.json │ ├── DOOM_PAL_MAP26.LMP │ ├── DOOM_PAL_MAP26.result.json │ ├── DOOM_PAL_MAP27.LMP │ ├── DOOM_PAL_MAP27.result.json │ ├── DOOM_PAL_MAP28.LMP │ ├── DOOM_PAL_MAP28.result.json │ ├── DOOM_PAL_MAP29.LMP │ ├── DOOM_PAL_MAP29.result.json │ ├── DOOM_PAL_MAP30.LMP │ ├── DOOM_PAL_MAP30.result.json │ ├── DOOM_PAL_MAP31.LMP │ ├── DOOM_PAL_MAP31.result.json │ ├── DOOM_PAL_MAP32.LMP │ ├── DOOM_PAL_MAP32.result.json │ ├── DOOM_PAL_MAP33.LMP │ ├── DOOM_PAL_MAP33.result.json │ ├── DOOM_PAL_MAP34.LMP │ ├── DOOM_PAL_MAP34.result.json │ ├── DOOM_PAL_MAP35.LMP │ ├── DOOM_PAL_MAP35.result.json │ ├── DOOM_PAL_MAP36.LMP │ ├── DOOM_PAL_MAP36.result.json │ ├── DOOM_PAL_MAP37.LMP │ ├── DOOM_PAL_MAP37.result.json │ ├── DOOM_PAL_MAP38.LMP │ ├── DOOM_PAL_MAP38.result.json │ ├── DOOM_PAL_MAP39.LMP │ ├── DOOM_PAL_MAP39.result.json │ ├── DOOM_PAL_MAP40.LMP │ ├── DOOM_PAL_MAP40.result.json │ ├── DOOM_PAL_MAP41.LMP │ ├── DOOM_PAL_MAP41.result.json │ ├── DOOM_PAL_MAP42.LMP │ ├── DOOM_PAL_MAP42.result.json │ ├── DOOM_PAL_MAP43.LMP │ ├── DOOM_PAL_MAP43.result.json │ ├── DOOM_PAL_MAP44.LMP │ ├── DOOM_PAL_MAP44.result.json │ ├── DOOM_PAL_MAP45.LMP │ ├── DOOM_PAL_MAP45.result.json │ ├── DOOM_PAL_MAP46.LMP │ ├── DOOM_PAL_MAP46.result.json │ ├── DOOM_PAL_MAP47.LMP │ ├── DOOM_PAL_MAP47.result.json │ ├── DOOM_PAL_MAP48.LMP │ ├── DOOM_PAL_MAP48.result.json │ ├── DOOM_PAL_MAP49.LMP │ ├── DOOM_PAL_MAP49.result.json │ ├── DOOM_PAL_MAP50.LMP │ ├── DOOM_PAL_MAP50.result.json │ ├── DOOM_PAL_MAP51.LMP │ ├── DOOM_PAL_MAP51.result.json │ ├── DOOM_PAL_MAP52.LMP │ ├── DOOM_PAL_MAP52.result.json │ ├── DOOM_PAL_MAP53.LMP │ ├── DOOM_PAL_MAP53.result.json │ ├── DOOM_PAL_MAP54.LMP │ ├── DOOM_PAL_MAP54.result.json │ ├── DOOM_PAL_MAP55.LMP │ ├── DOOM_PAL_MAP55.result.json │ ├── DOOM_PAL_MAP56.LMP │ ├── DOOM_PAL_MAP56.result.json │ ├── DOOM_PAL_MAP57.LMP │ ├── DOOM_PAL_MAP57.result.json │ ├── DOOM_PAL_MAP58.LMP │ ├── DOOM_PAL_MAP58.result.json │ ├── DOOM_PAL_MAP59.LMP │ ├── DOOM_PAL_MAP59.result.json │ ├── FDOOM_NTSC_DEMO1.LMP │ ├── FDOOM_NTSC_DEMO1.result.json │ ├── FDOOM_NTSC_DEMO2.LMP │ ├── FDOOM_NTSC_DEMO2.result.json │ ├── FDOOM_NTSC_MOUSE_MAP01.LMP │ ├── FDOOM_NTSC_MOUSE_MAP01.result.json │ ├── FDOOM_NTSC_MOUSE_MAP02.LMP │ ├── FDOOM_NTSC_MOUSE_MAP02.result.json │ ├── FDOOM_NTSC_MOUSE_MAP16.LMP │ ├── FDOOM_NTSC_MOUSE_MAP16.result.json │ ├── FDOOM_NTSC_MOUSE_MAP17.LMP │ ├── FDOOM_NTSC_MOUSE_MAP17.result.json │ ├── FDOOM_NTSC_PAD_MAP01.LMP │ ├── FDOOM_NTSC_PAD_MAP01.result.json │ ├── FDOOM_NTSC_PAD_MAP02.LMP │ ├── FDOOM_NTSC_PAD_MAP02.result.json │ ├── FDOOM_NTSC_PAD_MAP03.LMP │ ├── FDOOM_NTSC_PAD_MAP03.result.json │ ├── FDOOM_NTSC_PAD_MAP04.LMP │ ├── FDOOM_NTSC_PAD_MAP04.result.json │ ├── FDOOM_NTSC_PAD_MAP05.LMP │ ├── FDOOM_NTSC_PAD_MAP05.result.json │ ├── FDOOM_NTSC_PAD_MAP06.LMP │ ├── FDOOM_NTSC_PAD_MAP06.result.json │ ├── FDOOM_NTSC_PAD_MAP07.LMP │ ├── FDOOM_NTSC_PAD_MAP07.result.json │ ├── FDOOM_NTSC_PAD_MAP08.LMP │ ├── FDOOM_NTSC_PAD_MAP08.result.json │ ├── FDOOM_NTSC_PAD_MAP09.LMP │ ├── FDOOM_NTSC_PAD_MAP09.result.json │ ├── FDOOM_NTSC_PAD_MAP10.LMP │ ├── FDOOM_NTSC_PAD_MAP10.result.json │ ├── FDOOM_NTSC_PAD_MAP11.LMP │ ├── FDOOM_NTSC_PAD_MAP11.result.json │ ├── FDOOM_NTSC_PAD_MAP12.LMP │ ├── FDOOM_NTSC_PAD_MAP12.result.json │ ├── FDOOM_NTSC_PAD_MAP13.LMP │ ├── FDOOM_NTSC_PAD_MAP13.result.json │ ├── FDOOM_NTSC_PAD_MAP14.LMP │ ├── FDOOM_NTSC_PAD_MAP14.result.json │ ├── FDOOM_NTSC_PAD_MAP15.LMP │ ├── FDOOM_NTSC_PAD_MAP15.result.json │ ├── FDOOM_NTSC_PAD_MAP16.LMP │ ├── FDOOM_NTSC_PAD_MAP16.result.json │ ├── FDOOM_NTSC_PAD_MAP17.LMP │ ├── FDOOM_NTSC_PAD_MAP17.result.json │ ├── FDOOM_NTSC_PAD_MAP18.LMP │ ├── FDOOM_NTSC_PAD_MAP18.result.json │ ├── FDOOM_NTSC_PAD_MAP19.LMP │ ├── FDOOM_NTSC_PAD_MAP19.result.json │ ├── FDOOM_NTSC_PAD_MAP20.LMP │ ├── FDOOM_NTSC_PAD_MAP20.result.json │ ├── FDOOM_NTSC_PAD_MAP21.LMP │ ├── FDOOM_NTSC_PAD_MAP21.result.json │ ├── FDOOM_NTSC_PAD_MAP22.LMP │ ├── FDOOM_NTSC_PAD_MAP22.result.json │ ├── FDOOM_NTSC_PAD_MAP23.LMP │ ├── FDOOM_NTSC_PAD_MAP23.result.json │ ├── FDOOM_NTSC_PAD_MAP24.LMP │ ├── FDOOM_NTSC_PAD_MAP24.result.json │ ├── FDOOM_NTSC_PAD_MAP25.LMP │ ├── FDOOM_NTSC_PAD_MAP25.result.json │ ├── FDOOM_NTSC_PAD_MAP26.LMP │ ├── FDOOM_NTSC_PAD_MAP26.result.json │ ├── FDOOM_NTSC_PAD_MAP27.LMP │ ├── FDOOM_NTSC_PAD_MAP27.result.json │ ├── FDOOM_NTSC_PAD_MAP28.LMP │ ├── FDOOM_NTSC_PAD_MAP28.result.json │ ├── FDOOM_NTSC_PAD_MAP29.LMP │ ├── FDOOM_NTSC_PAD_MAP29.result.json │ ├── FDOOM_NTSC_PAD_MAP30.LMP │ ├── FDOOM_NTSC_PAD_MAP30.result.json │ ├── FDOOM_PAL_DEMO1.LMP │ ├── FDOOM_PAL_DEMO1.result.json │ ├── FDOOM_PAL_DEMO2.LMP │ ├── FDOOM_PAL_DEMO2.result.json │ ├── FDOOM_PAL_MOUSE_MAP01.LMP │ ├── FDOOM_PAL_MOUSE_MAP01.result.json │ ├── FDOOM_PAL_MOUSE_MAP14.LMP │ ├── FDOOM_PAL_MOUSE_MAP14.result.json │ ├── FDOOM_PAL_PAD_MAP01.LMP │ ├── FDOOM_PAL_PAD_MAP01.result.json │ ├── FDOOM_PAL_PAD_MAP01_2.LMP │ ├── FDOOM_PAL_PAD_MAP01_2.result.json │ ├── FDOOM_PAL_PAD_MAP01_3.LMP │ ├── FDOOM_PAL_PAD_MAP01_3.result.json │ ├── FDOOM_PAL_PAD_MAP02.LMP │ ├── FDOOM_PAL_PAD_MAP02.result.json │ ├── FDOOM_PAL_PAD_MAP03.LMP │ ├── FDOOM_PAL_PAD_MAP03.result.json │ ├── FDOOM_PAL_PAD_MAP04.LMP │ ├── FDOOM_PAL_PAD_MAP04.result.json │ ├── FDOOM_PAL_PAD_MAP05.LMP │ ├── FDOOM_PAL_PAD_MAP05.result.json │ ├── FDOOM_PAL_PAD_MAP06.LMP │ ├── FDOOM_PAL_PAD_MAP06.result.json │ ├── FDOOM_PAL_PAD_MAP07.LMP │ ├── FDOOM_PAL_PAD_MAP07.result.json │ ├── FDOOM_PAL_PAD_MAP08.LMP │ ├── FDOOM_PAL_PAD_MAP08.result.json │ ├── FDOOM_PAL_PAD_MAP09.LMP │ ├── FDOOM_PAL_PAD_MAP09.result.json │ ├── FDOOM_PAL_PAD_MAP10.LMP │ ├── FDOOM_PAL_PAD_MAP10.result.json │ ├── FDOOM_PAL_PAD_MAP11.LMP │ ├── FDOOM_PAL_PAD_MAP11.result.json │ ├── FDOOM_PAL_PAD_MAP12.LMP │ ├── FDOOM_PAL_PAD_MAP12.result.json │ ├── FDOOM_PAL_PAD_MAP13.LMP │ ├── FDOOM_PAL_PAD_MAP13.result.json │ ├── FDOOM_PAL_PAD_MAP14.LMP │ ├── FDOOM_PAL_PAD_MAP14.result.json │ ├── FDOOM_PAL_PAD_MAP15.LMP │ ├── FDOOM_PAL_PAD_MAP15.result.json │ ├── FDOOM_PAL_PAD_MAP16.LMP │ ├── FDOOM_PAL_PAD_MAP16.result.json │ ├── FDOOM_PAL_PAD_MAP17.LMP │ ├── FDOOM_PAL_PAD_MAP17.result.json │ ├── FDOOM_PAL_PAD_MAP18.LMP │ ├── FDOOM_PAL_PAD_MAP18.result.json │ ├── FDOOM_PAL_PAD_MAP19.LMP │ ├── FDOOM_PAL_PAD_MAP19.result.json │ ├── FDOOM_PAL_PAD_MAP20.LMP │ ├── FDOOM_PAL_PAD_MAP20.result.json │ ├── FDOOM_PAL_PAD_MAP21.LMP │ ├── FDOOM_PAL_PAD_MAP21.result.json │ ├── FDOOM_PAL_PAD_MAP22.LMP │ ├── FDOOM_PAL_PAD_MAP22.result.json │ ├── FDOOM_PAL_PAD_MAP23.LMP │ ├── FDOOM_PAL_PAD_MAP23.result.json │ ├── FDOOM_PAL_PAD_MAP24.LMP │ ├── FDOOM_PAL_PAD_MAP24.result.json │ ├── FDOOM_PAL_PAD_MAP25.LMP │ ├── FDOOM_PAL_PAD_MAP25.result.json │ ├── FDOOM_PAL_PAD_MAP26.LMP │ ├── FDOOM_PAL_PAD_MAP26.result.json │ ├── FDOOM_PAL_PAD_MAP27.LMP │ ├── FDOOM_PAL_PAD_MAP27.result.json │ ├── FDOOM_PAL_PAD_MAP28.LMP │ ├── FDOOM_PAL_PAD_MAP28.result.json │ ├── FDOOM_PAL_PAD_MAP29.LMP │ ├── FDOOM_PAL_PAD_MAP29.result.json │ ├── FDOOM_PAL_PAD_MAP30.LMP │ ├── FDOOM_PAL_PAD_MAP30.result.json │ └── run_demo_tests.py ├── psxdoom_music_flstudio │ ├── About These.md │ ├── PSX Doom Music 01 - Retribution Dawns.flp │ ├── PSX Doom Music 02 - The Broken Ones.flp │ ├── PSX Doom Music 03 - Sanity's Edge.flp │ ├── PSX Doom Music 04 - Hell's Churn.flp │ ├── PSX Doom Music 05 - Digitized Pain.flp │ ├── PSX Doom Music 06 - Corrupted Core.flp │ ├── PSX Doom Music 07 - Mind Massacre.flp │ ├── PSX Doom Music 08 - Mutation.flp │ ├── PSX Doom Music 09 - A Calm Panic Rises.flp │ ├── PSX Doom Music 10 - Corrupted.flp │ ├── PSX Doom Music 11 - Breath Of Horror.flp │ ├── PSX Doom Music 12 - Beyond Fear.flp │ ├── PSX Doom Music 13 - Lamentation.flp │ ├── PSX Doom Music 14 - Twisted Beyond Reason.flp │ ├── PSX Doom Music 15 - The Slow Demonic Pulse.flp │ ├── PSX Doom Music 16 - In The Grip Of Madness.flp │ ├── PSX Doom Music 17 - Lurkers.flp │ ├── PSX Doom Music 18 - Creeping Brutality.flp │ ├── PSX Doom Music 19 - Steadfast Extermination.flp │ ├── PSX Doom Music 20 - Hopeless Despair.flp │ ├── PSX Doom Music 21 - Malignant.flp │ ├── PSX Doom Music 22 - Tendrils Of Hate.flp │ ├── PSX Doom Music 23 - Bells Of Agony.flp │ ├── PSX Doom Music 24 - Infectious.flp │ ├── PSX Doom Music 25 - Unhallowed.flp │ ├── PSX Doom Music 26 - Breath Of Corruption.flp │ ├── PSX Doom Music 27 - The Foulness Consumes.flp │ ├── PSX Doom Music 28 - Demon Drone.flp │ ├── PSX Doom Music 29 - Vexation.flp │ └── PSX Doom Music 30 - Larva Circuits.flp ├── psydoom_code_hacks │ ├── tune_audio_compression_hack.diff │ └── view_unknown_psx_sector_flags_hack.diff └── psydoom_mapping │ ├── ALLMAPS.LCD │ ├── Build ALLMAPS.LCD │ ├── SAMP0012.vag │ ├── SAMP0013.vag │ ├── SAMP0021.vag │ ├── SAMP0022.vag │ ├── SAMP0023.vag │ ├── SAMP0024.vag │ ├── SAMP0028.vag │ ├── SAMP0029.vag │ ├── SAMP0030.vag │ ├── SAMP0031.vag │ ├── SAMP0032.vag │ ├── SAMP0033.vag │ ├── SAMP0034.vag │ ├── SAMP0035.vag │ ├── SAMP0036.vag │ ├── SAMP0037.vag │ ├── SAMP0038.vag │ ├── SAMP0039.vag │ ├── SAMP0040.vag │ ├── SAMP0041.vag │ ├── SAMP0042.vag │ ├── SAMP0043.vag │ ├── SAMP0044.vag │ ├── SAMP0045.vag │ ├── SAMP0046.vag │ ├── SAMP0047.vag │ ├── SAMP0048.vag │ ├── SAMP0049.vag │ ├── SAMP0050.vag │ ├── SAMP0051.vag │ ├── SAMP0052.vag │ ├── SAMP0053.vag │ ├── SAMP0054.vag │ ├── SAMP0055.vag │ ├── SAMP0056.vag │ ├── SAMP0058.vag │ ├── SAMP0059.vag │ ├── SAMP0064.vag │ ├── SAMP0065.vag │ ├── SAMP0066.vag │ ├── SAMP0067.vag │ ├── SAMP0068.vag │ ├── SAMP0069.vag │ ├── SAMP0070.vag │ ├── SAMP0071.vag │ ├── SAMP0072.vag │ ├── SAMP0073.vag │ ├── SAMP0074.vag │ ├── SAMP0075.vag │ ├── SAMP0076.vag │ ├── SAMP0077.vag │ ├── SAMP0078.vag │ ├── SAMP0079.vag │ ├── SAMP0080.vag │ ├── SAMP0081.vag │ ├── SAMP0082.vag │ ├── build.py │ ├── sfx_boscub.vag │ ├── sfx_bosdth.vag │ ├── sfx_bospit.vag │ ├── sfx_bospn.vag │ ├── sfx_bossit.vag │ ├── sfx_flame.vag │ ├── sfx_flamst.vag │ ├── sfx_keendt.vag │ ├── sfx_keenpn.vag │ ├── sfx_ssdth.vag │ ├── sfx_sssit.vag │ ├── sfx_vilact.vag │ ├── sfx_vilatk.vag │ ├── sfx_vildth.vag │ ├── sfx_vilsit.vag │ └── sfx_vipain.vag │ ├── Build DOOMSND.WMD │ ├── ORIG_FDOOM_DOOMSND.WMD │ ├── build.py │ ├── module-sfx_boscub.json │ ├── module-sfx_bosdth.json │ ├── module-sfx_bospit.json │ ├── module-sfx_bospn.json │ ├── module-sfx_bossit.json │ ├── module-sfx_flame.json │ ├── module-sfx_flamst.json │ ├── module-sfx_keendt.json │ ├── module-sfx_keenpn.json │ ├── module-sfx_ssdth.json │ ├── module-sfx_sssit.json │ ├── module-sfx_vilact.json │ ├── module-sfx_vilatk.json │ ├── module-sfx_vildth.json │ ├── module-sfx_vilsit.json │ └── module-sfx_vipain.json │ ├── DOOMSND.WMD │ ├── Psx_Doom_PsyDoom.cfg │ └── What Are These.txt ├── game ├── CMakeLists.txt ├── Doom │ ├── Base │ │ ├── d_vsprintf.cpp │ │ ├── d_vsprintf.h │ │ ├── i_crossfade.cpp │ │ ├── i_crossfade.h │ │ ├── i_drawcmds.h │ │ ├── i_drawstringex.cpp │ │ ├── i_drawstringex.h │ │ ├── i_file.cpp │ │ ├── i_file.h │ │ ├── i_main.cpp │ │ ├── i_main.h │ │ ├── i_misc.cpp │ │ ├── i_misc.h │ │ ├── i_texcache.cpp │ │ ├── i_texcache.h │ │ ├── m_bbox.cpp │ │ ├── m_bbox.h │ │ ├── m_fixed.cpp │ │ ├── m_fixed.h │ │ ├── m_random.cpp │ │ ├── m_random.h │ │ ├── s_sound.cpp │ │ ├── s_sound.h │ │ ├── sounds.h │ │ ├── tables.cpp │ │ ├── w_wad.cpp │ │ ├── w_wad.h │ │ ├── z_zone.cpp │ │ └── z_zone.h │ ├── Game │ │ ├── doomdata.h │ │ ├── g_game.cpp │ │ ├── g_game.h │ │ ├── info.cpp │ │ ├── info.h │ │ ├── p_base.cpp │ │ ├── p_base.h │ │ ├── p_ceiling.cpp │ │ ├── p_ceiling.h │ │ ├── p_change.cpp │ │ ├── p_change.h │ │ ├── p_doors.cpp │ │ ├── p_doors.h │ │ ├── p_enemy.cpp │ │ ├── p_enemy.h │ │ ├── p_firesky.cpp │ │ ├── p_firesky.h │ │ ├── p_floor.cpp │ │ ├── p_floor.h │ │ ├── p_info.cpp │ │ ├── p_info.h │ │ ├── p_inter.cpp │ │ ├── p_inter.h │ │ ├── p_lights.cpp │ │ ├── p_lights.h │ │ ├── p_local.h │ │ ├── p_map.cpp │ │ ├── p_map.h │ │ ├── p_maputl.cpp │ │ ├── p_maputl.h │ │ ├── p_mobj.cpp │ │ ├── p_mobj.h │ │ ├── p_move.cpp │ │ ├── p_move.h │ │ ├── p_password.cpp │ │ ├── p_password.h │ │ ├── p_plats.cpp │ │ ├── p_plats.h │ │ ├── p_pspr.cpp │ │ ├── p_pspr.h │ │ ├── p_setup.cpp │ │ ├── p_setup.h │ │ ├── p_shoot.cpp │ │ ├── p_shoot.h │ │ ├── p_sight.cpp │ │ ├── p_sight.h │ │ ├── p_slide.cpp │ │ ├── p_slide.h │ │ ├── p_spec.cpp │ │ ├── p_spec.h │ │ ├── p_switch.cpp │ │ ├── p_switch.h │ │ ├── p_telept.cpp │ │ ├── p_telept.h │ │ ├── p_tick.cpp │ │ ├── p_tick.h │ │ ├── p_user.cpp │ │ ├── p_user.h │ │ ├── p_weak.cpp │ │ ├── p_weak.h │ │ ├── sprinfo.cpp │ │ └── sprinfo.h │ ├── Renderer │ │ ├── r_bsp.cpp │ │ ├── r_bsp.h │ │ ├── r_data.cpp │ │ ├── r_data.h │ │ ├── r_draw.cpp │ │ ├── r_draw.h │ │ ├── r_local.h │ │ ├── r_main.cpp │ │ ├── r_main.h │ │ ├── r_plane.cpp │ │ ├── r_plane.h │ │ ├── r_segs.cpp │ │ ├── r_segs.h │ │ ├── r_sky.cpp │ │ ├── r_sky.h │ │ ├── r_things.cpp │ │ └── r_things.h │ ├── RendererVk │ │ ├── rv_automap.cpp │ │ ├── rv_automap.h │ │ ├── rv_bsp.cpp │ │ ├── rv_bsp.h │ │ ├── rv_data.cpp │ │ ├── rv_data.h │ │ ├── rv_flats.cpp │ │ ├── rv_flats.h │ │ ├── rv_main.cpp │ │ ├── rv_main.h │ │ ├── rv_occlusion.cpp │ │ ├── rv_occlusion.h │ │ ├── rv_sky.cpp │ │ ├── rv_sky.h │ │ ├── rv_sprites.cpp │ │ ├── rv_sprites.h │ │ ├── rv_utils.cpp │ │ ├── rv_utils.h │ │ ├── rv_walls.cpp │ │ └── rv_walls.h │ ├── UI │ │ ├── am_main.cpp │ │ ├── am_main.h │ │ ├── cr_main.cpp │ │ ├── cr_main.h │ │ ├── errormenu_main.cpp │ │ ├── errormenu_main.h │ │ ├── f_finale.cpp │ │ ├── f_finale.h │ │ ├── in_main.cpp │ │ ├── in_main.h │ │ ├── le_main.cpp │ │ ├── le_main.h │ │ ├── loadsave_main.cpp │ │ ├── loadsave_main.h │ │ ├── m_main.cpp │ │ ├── m_main.h │ │ ├── o_main.cpp │ │ ├── o_main.h │ │ ├── pw_main.cpp │ │ ├── pw_main.h │ │ ├── saveroot_main.cpp │ │ ├── saveroot_main.h │ │ ├── st_main.cpp │ │ ├── st_main.h │ │ ├── ti_main.cpp │ │ ├── ti_main.h │ │ ├── xoptions_main.cpp │ │ └── xoptions_main.h │ ├── cdmaptbl.cpp │ ├── cdmaptbl.h │ ├── d_main.cpp │ ├── d_main.h │ ├── doomdef.cpp │ ├── doomdef.h │ ├── psx_main.cpp │ └── psx_main.h ├── EngineLimits.h ├── Main_Mac.mm ├── Main_StandardCpp.cpp ├── Main_Windows.cpp ├── Old │ ├── Doom │ │ ├── Base │ │ │ ├── Old_i_crossfade.cpp │ │ │ ├── Old_i_drawcmds.cpp │ │ │ ├── Old_i_drawcmds.h │ │ │ ├── Old_i_main.cpp │ │ │ ├── Old_i_main.h │ │ │ ├── Old_s_sound.cpp │ │ │ ├── Old_w_wad.cpp │ │ │ ├── Old_w_wad.h │ │ │ └── Old_z_zone.cpp │ │ ├── Game │ │ │ ├── Old_g_game.cpp │ │ │ ├── Old_p_ceiling.cpp │ │ │ ├── Old_p_plats.cpp │ │ │ ├── Old_p_setup.cpp │ │ │ └── Old_sprinfo.cpp │ │ ├── Renderer │ │ │ └── Old_r_data.cpp │ │ └── UI │ │ │ ├── Old_cn_main.cpp │ │ │ ├── Old_cn_main.h │ │ │ ├── Old_cr_main.cpp │ │ │ └── Old_ti_main.cpp │ ├── Old_cdmaptbl.cpp │ ├── Old_cdmaptbl.h │ ├── PsyQ │ │ ├── Old_LIBAPI.cpp │ │ ├── Old_LIBAPI.h │ │ ├── Old_LIBCD.cpp │ │ ├── Old_LIBCD.h │ │ ├── Old_LIBCOMB.cpp │ │ ├── Old_LIBCOMB.h │ │ ├── Old_LIBETC.cpp │ │ ├── Old_LIBETC.h │ │ ├── Old_LIBGPU.cpp │ │ └── Old_LIBGPU.h │ └── Wess │ │ ├── Old_lcdload.cpp │ │ ├── Old_lcdload.h │ │ ├── Old_psxcd.cpp │ │ └── Old_psxcd.h ├── PsyDoom │ ├── AudioCompressor.cpp │ ├── AudioCompressor.h │ ├── BitShift.h │ ├── BuiltInPaletteData.cpp │ ├── BuiltInPaletteData.h │ ├── Cheats.cpp │ ├── Cheats.h │ ├── Config │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── ConfigSerialization.cpp │ │ ├── ConfigSerialization.h │ │ ├── ConfigSerialization_Audio.cpp │ │ ├── ConfigSerialization_Audio.h │ │ ├── ConfigSerialization_Cheats.cpp │ │ ├── ConfigSerialization_Cheats.h │ │ ├── ConfigSerialization_Controls.cpp │ │ ├── ConfigSerialization_Controls.h │ │ ├── ConfigSerialization_Game.cpp │ │ ├── ConfigSerialization_Game.h │ │ ├── ConfigSerialization_Graphics.cpp │ │ ├── ConfigSerialization_Graphics.h │ │ ├── ConfigSerialization_Input.cpp │ │ ├── ConfigSerialization_Input.h │ │ ├── ConfigSerialization_Multiplayer.cpp │ │ └── ConfigSerialization_Multiplayer.h │ ├── Controls.cpp │ ├── Controls.h │ ├── DemoCommon.cpp │ ├── DemoCommon.h │ ├── DemoPlayer.cpp │ ├── DemoPlayer.h │ ├── DemoRecorder.cpp │ ├── DemoRecorder.h │ ├── DemoResult.cpp │ ├── DemoResult.h │ ├── DevMapAutoReloader.cpp │ ├── DevMapAutoReloader.h │ ├── DiscInfo.cpp │ ├── DiscInfo.h │ ├── DiscReader.cpp │ ├── DiscReader.h │ ├── FixedIndexSet.h │ ├── Game.cpp │ ├── Game.h │ ├── GameConstants.cpp │ ├── GameConstants.h │ ├── GameFileReader.cpp │ ├── GameFileReader.h │ ├── GameSettings.cpp │ ├── GameSettings.h │ ├── GamepadInput.cpp │ ├── GamepadInput.h │ ├── IVideoBackend.h │ ├── IVideoSurface.h │ ├── Input.cpp │ ├── Input.h │ ├── InterpFixedT.cpp │ ├── InterpFixedT.h │ ├── IntroLogos.cpp │ ├── IntroLogos.h │ ├── IsoFileSys.cpp │ ├── IsoFileSys.h │ ├── LIBGPU_CmdDispatch.cpp │ ├── LIBGPU_CmdDispatch.h │ ├── Launcher │ │ ├── AddInputPrompt.cpp │ │ ├── AddInputPrompt.h │ │ ├── Launcher.cpp │ │ ├── Launcher.h │ │ ├── LauncherPrefs.cpp │ │ ├── LauncherPrefs.h │ │ ├── Launcher_Context.h │ │ ├── Launcher_Tab_Audio.cpp │ │ ├── Launcher_Tab_Cheats.cpp │ │ ├── Launcher_Tab_Controls.cpp │ │ ├── Launcher_Tab_Game.cpp │ │ ├── Launcher_Tab_Graphics.cpp │ │ ├── Launcher_Tab_Input.cpp │ │ ├── Launcher_Tab_Launcher.cpp │ │ ├── Launcher_Tab_Multiplayer.cpp │ │ ├── Launcher_Utils.cpp │ │ └── Launcher_Utils.h │ ├── LogoPlayer.cpp │ ├── LogoPlayer.h │ ├── MapHash.cpp │ ├── MapHash.h │ ├── MapInfo │ │ ├── GecMapInfo.cpp │ │ ├── GecMapInfo.h │ │ ├── MapInfo.cpp │ │ ├── MapInfo.h │ │ ├── MapInfo_Defaults.cpp │ │ ├── MapInfo_Defaults.h │ │ ├── MapInfo_Defaults_Doom.cpp │ │ ├── MapInfo_Defaults_Doom.h │ │ ├── MapInfo_Defaults_FinalDoom.cpp │ │ ├── MapInfo_Defaults_FinalDoom.h │ │ ├── MapInfo_Defaults_GEC_ME_Beta3.cpp │ │ ├── MapInfo_Defaults_GEC_ME_Beta3.h │ │ ├── MapInfo_Defaults_GEC_ME_TestMap.cpp │ │ ├── MapInfo_Defaults_GEC_ME_TestMap.h │ │ ├── MapInfo_Parse.cpp │ │ └── MapInfo_Parse.h │ ├── MapPatcher │ │ ├── MapPatcher.cpp │ │ ├── MapPatcher.h │ │ ├── MapPatcherUtils.cpp │ │ ├── MapPatcherUtils.h │ │ ├── MapPatches.h │ │ ├── MapPatches_Doom.cpp │ │ ├── MapPatches_FinalDoom.cpp │ │ ├── MapPatches_GEC_ME_Beta3.cpp │ │ └── MapPatches_GEC_ME_Beta4.cpp │ ├── MobjSpritePrecacher.cpp │ ├── MobjSpritePrecacher.h │ ├── ModMgr.cpp │ ├── ModMgr.h │ ├── MouseButton.h │ ├── Movie │ │ ├── Block.cpp │ │ ├── Block.h │ │ ├── CDXAFileStreamer.cpp │ │ ├── CDXAFileStreamer.h │ │ ├── Frame.cpp │ │ ├── Frame.h │ │ ├── MBlockBitStream.cpp │ │ ├── MBlockBitStream.h │ │ ├── MacroBlockDecoder.cpp │ │ ├── MacroBlockDecoder.h │ │ ├── MoviePlayer.cpp │ │ ├── MoviePlayer.h │ │ ├── XAAdpcmDecoder.cpp │ │ └── XAAdpcmDecoder.h │ ├── NetPacketReader.h │ ├── NetPacketWriter.h │ ├── Network.cpp │ ├── Network.h │ ├── ParserTokenizer.cpp │ ├── ParserTokenizer.h │ ├── PlayerPrefs.cpp │ ├── PlayerPrefs.h │ ├── ProgArgs.cpp │ ├── ProgArgs.h │ ├── PsxPadButtons.h │ ├── PsxVm.cpp │ ├── PsxVm.h │ ├── ResizableBuffer.h │ ├── SaveAndLoad.cpp │ ├── SaveAndLoad.h │ ├── SaveDataTypes.cpp │ ├── SaveDataTypes.h │ ├── ScriptBindings.cpp │ ├── ScriptBindings.h │ ├── ScriptingEngine.cpp │ ├── ScriptingEngine.h │ ├── TexturePatcher.cpp │ ├── TexturePatcher.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Video.cpp │ ├── Video.h │ ├── VideoBackend_SDL.cpp │ ├── VideoBackend_SDL.h │ ├── VideoBackend_Vulkan.cpp │ ├── VideoBackend_Vulkan.h │ ├── VideoSurface_SDL.cpp │ ├── VideoSurface_SDL.h │ ├── VideoSurface_Vulkan.cpp │ ├── VideoSurface_Vulkan.h │ ├── Vulkan │ │ ├── IVRenderPath.h │ │ ├── VCrossfader.cpp │ │ ├── VCrossfader.h │ │ ├── VDrawing.cpp │ │ ├── VDrawing.h │ │ ├── VMsaaResolver.cpp │ │ ├── VMsaaResolver.h │ │ ├── VPipelines.cpp │ │ ├── VPipelines.h │ │ ├── VPlaqueDrawer.cpp │ │ ├── VPlaqueDrawer.h │ │ ├── VRenderPath_Blit.cpp │ │ ├── VRenderPath_Blit.h │ │ ├── VRenderPath_Crossfade.cpp │ │ ├── VRenderPath_Crossfade.h │ │ ├── VRenderPath_Main.cpp │ │ ├── VRenderPath_Main.h │ │ ├── VRenderPath_Psx.cpp │ │ ├── VRenderPath_Psx.h │ │ ├── VRenderer.cpp │ │ ├── VRenderer.h │ │ ├── VScreenQuad.cpp │ │ ├── VScreenQuad.h │ │ ├── VTypes.h │ │ └── VVertexBufferSet.h │ ├── WadFile.cpp │ ├── WadFile.h │ ├── WadList.cpp │ ├── WadList.h │ ├── WadUtils.cpp │ └── WadUtils.h ├── PsyQ │ ├── LIBAPI.cpp │ ├── LIBAPI.h │ ├── LIBETC.cpp │ ├── LIBETC.h │ ├── LIBGPU.cpp │ ├── LIBGPU.h │ ├── LIBGPU_Resources.cpp │ ├── LIBGTE.cpp │ ├── LIBGTE.h │ ├── LIBSN.cpp │ ├── LIBSN.h │ ├── LIBSPU.cpp │ ├── LIBSPU.h │ └── LIBSPU_Resources.cpp ├── Resources │ ├── Generic │ │ ├── Launcher_Logo.xpm │ │ ├── icon_1024.png │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── icon_160.png │ │ ├── icon_192.png │ │ ├── icon_20.png │ │ ├── icon_22.png │ │ ├── icon_24.png │ │ ├── icon_256.png │ │ ├── icon_28.png │ │ ├── icon_30.png │ │ ├── icon_32.png │ │ ├── icon_36.png │ │ ├── icon_384.png │ │ ├── icon_40.png │ │ ├── icon_42.png │ │ ├── icon_44.png │ │ ├── icon_48.png │ │ ├── icon_480.png │ │ ├── icon_512.png │ │ ├── icon_56.png │ │ ├── icon_60.png │ │ ├── icon_64.png │ │ ├── icon_72.png │ │ ├── icon_8.png │ │ ├── icon_80.png │ │ └── icon_96.png │ ├── Linux │ │ ├── icon_128.raw_rgb888.c │ │ ├── icon_16.raw_rgb888.c │ │ ├── icon_160.raw_rgb888.c │ │ ├── icon_192.raw_rgb888.c │ │ ├── icon_20.raw_rgb888.c │ │ ├── icon_22.raw_rgb888.c │ │ ├── icon_24.raw_rgb888.c │ │ ├── icon_256.raw_rgb888.c │ │ ├── icon_28.raw_rgb888.c │ │ ├── icon_30.raw_rgb888.c │ │ ├── icon_32.raw_rgb888.c │ │ ├── icon_36.raw_rgb888.c │ │ ├── icon_40.raw_rgb888.c │ │ ├── icon_42.raw_rgb888.c │ │ ├── icon_44.raw_rgb888.c │ │ ├── icon_48.raw_rgb888.c │ │ ├── icon_56.raw_rgb888.c │ │ ├── icon_60.raw_rgb888.c │ │ ├── icon_64.raw_rgb888.c │ │ ├── icon_72.raw_rgb888.c │ │ ├── icon_8.raw_rgb888.c │ │ ├── icon_80.raw_rgb888.c │ │ └── icon_96.raw_rgb888.c │ ├── Windows │ │ ├── PsyDoom.rc │ │ ├── icon.ico │ │ └── version.template.rc │ └── macOS │ │ ├── MoltenVK_icd.json │ │ └── icon.icns └── Wess │ ├── lcdload.cpp │ ├── lcdload.h │ ├── psxcd.cpp │ ├── psxcd.h │ ├── psxcmd.cpp │ ├── psxcmd.h │ ├── psxspu.cpp │ ├── psxspu.h │ ├── seqload.cpp │ ├── seqload.h │ ├── seqload_r.cpp │ ├── seqload_r.h │ ├── wessapi.cpp │ ├── wessapi.h │ ├── wessapi_m.cpp │ ├── wessapi_m.h │ ├── wessapi_p.cpp │ ├── wessapi_p.h │ ├── wessapi_t.cpp │ ├── wessapi_t.h │ ├── wessarc.cpp │ ├── wessarc.h │ ├── wessseq.cpp │ └── wessseq.h ├── simple_gpu ├── CMakeLists.txt ├── Gpu.cpp └── Gpu.h ├── simple_spu ├── CMakeLists.txt ├── Spu.cpp └── Spu.h ├── third_party_libs ├── asio │ ├── CMakeLists.txt │ ├── Version.txt │ └── asio │ │ ├── COPYING │ │ ├── LICENSE_1_0.txt │ │ ├── README │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asio.hpp │ │ └── asio │ │ │ ├── any_completion_executor.hpp │ │ │ ├── any_completion_handler.hpp │ │ │ ├── any_io_executor.hpp │ │ │ ├── append.hpp │ │ │ ├── as_tuple.hpp │ │ │ ├── associated_allocator.hpp │ │ │ ├── associated_cancellation_slot.hpp │ │ │ ├── associated_executor.hpp │ │ │ ├── associated_immediate_executor.hpp │ │ │ ├── associator.hpp │ │ │ ├── async_result.hpp │ │ │ ├── awaitable.hpp │ │ │ ├── basic_datagram_socket.hpp │ │ │ ├── basic_deadline_timer.hpp │ │ │ ├── basic_file.hpp │ │ │ ├── basic_io_object.hpp │ │ │ ├── basic_random_access_file.hpp │ │ │ ├── basic_raw_socket.hpp │ │ │ ├── basic_readable_pipe.hpp │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ ├── basic_serial_port.hpp │ │ │ ├── basic_signal_set.hpp │ │ │ ├── basic_socket.hpp │ │ │ ├── basic_socket_acceptor.hpp │ │ │ ├── basic_socket_iostream.hpp │ │ │ ├── basic_socket_streambuf.hpp │ │ │ ├── basic_stream_file.hpp │ │ │ ├── basic_stream_socket.hpp │ │ │ ├── basic_streambuf.hpp │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ ├── basic_waitable_timer.hpp │ │ │ ├── basic_writable_pipe.hpp │ │ │ ├── bind_allocator.hpp │ │ │ ├── bind_cancellation_slot.hpp │ │ │ ├── bind_executor.hpp │ │ │ ├── bind_immediate_executor.hpp │ │ │ ├── buffer.hpp │ │ │ ├── buffer_registration.hpp │ │ │ ├── buffered_read_stream.hpp │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ ├── buffered_stream.hpp │ │ │ ├── buffered_stream_fwd.hpp │ │ │ ├── buffered_write_stream.hpp │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ ├── buffers_iterator.hpp │ │ │ ├── cancellation_signal.hpp │ │ │ ├── cancellation_state.hpp │ │ │ ├── cancellation_type.hpp │ │ │ ├── co_spawn.hpp │ │ │ ├── completion_condition.hpp │ │ │ ├── compose.hpp │ │ │ ├── connect.hpp │ │ │ ├── connect_pipe.hpp │ │ │ ├── consign.hpp │ │ │ ├── coroutine.hpp │ │ │ ├── deadline_timer.hpp │ │ │ ├── defer.hpp │ │ │ ├── deferred.hpp │ │ │ ├── detached.hpp │ │ │ ├── detail │ │ │ ├── array.hpp │ │ │ ├── array_fwd.hpp │ │ │ ├── assert.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── base_from_cancellation_state.hpp │ │ │ ├── base_from_completion_cond.hpp │ │ │ ├── bind_handler.hpp │ │ │ ├── blocking_executor_op.hpp │ │ │ ├── buffer_resize_guard.hpp │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ ├── buffered_stream_storage.hpp │ │ │ ├── bulk_executor_op.hpp │ │ │ ├── call_stack.hpp │ │ │ ├── chrono.hpp │ │ │ ├── chrono_time_traits.hpp │ │ │ ├── completion_handler.hpp │ │ │ ├── composed_work.hpp │ │ │ ├── concurrency_hint.hpp │ │ │ ├── conditionally_enabled_event.hpp │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ ├── config.hpp │ │ │ ├── consuming_buffers.hpp │ │ │ ├── cstddef.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── date_time_fwd.hpp │ │ │ ├── deadline_timer_service.hpp │ │ │ ├── dependent_type.hpp │ │ │ ├── descriptor_ops.hpp │ │ │ ├── descriptor_read_op.hpp │ │ │ ├── descriptor_write_op.hpp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── event.hpp │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ ├── exception.hpp │ │ │ ├── executor_function.hpp │ │ │ ├── executor_op.hpp │ │ │ ├── fd_set_adapter.hpp │ │ │ ├── fenced_block.hpp │ │ │ ├── functional.hpp │ │ │ ├── future.hpp │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ ├── global.hpp │ │ │ ├── handler_alloc_helpers.hpp │ │ │ ├── handler_cont_helpers.hpp │ │ │ ├── handler_invoke_helpers.hpp │ │ │ ├── handler_tracking.hpp │ │ │ ├── handler_type_requirements.hpp │ │ │ ├── handler_work.hpp │ │ │ ├── hash_map.hpp │ │ │ ├── impl │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ ├── handler_tracking.ipp │ │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ │ ├── io_uring_file_service.ipp │ │ │ │ ├── io_uring_service.hpp │ │ │ │ ├── io_uring_service.ipp │ │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ ├── null_event.ipp │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ ├── posix_event.ipp │ │ │ │ ├── posix_mutex.ipp │ │ │ │ ├── posix_serial_port_service.ipp │ │ │ │ ├── posix_thread.ipp │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ ├── scheduler.ipp │ │ │ │ ├── select_reactor.hpp │ │ │ │ ├── select_reactor.ipp │ │ │ │ ├── service_registry.hpp │ │ │ │ ├── service_registry.ipp │ │ │ │ ├── signal_set_service.ipp │ │ │ │ ├── socket_ops.ipp │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ ├── strand_service.hpp │ │ │ │ ├── strand_service.ipp │ │ │ │ ├── thread_context.ipp │ │ │ │ ├── throw_error.ipp │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ ├── win_event.ipp │ │ │ │ ├── win_iocp_file_service.ipp │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ ├── win_mutex.ipp │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ ├── win_thread.ipp │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ └── winsock_init.ipp │ │ │ ├── initiate_defer.hpp │ │ │ ├── initiate_dispatch.hpp │ │ │ ├── initiate_post.hpp │ │ │ ├── io_control.hpp │ │ │ ├── io_object_impl.hpp │ │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ │ ├── io_uring_descriptor_read_op.hpp │ │ │ ├── io_uring_descriptor_service.hpp │ │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ │ ├── io_uring_descriptor_write_op.hpp │ │ │ ├── io_uring_file_service.hpp │ │ │ ├── io_uring_null_buffers_op.hpp │ │ │ ├── io_uring_operation.hpp │ │ │ ├── io_uring_service.hpp │ │ │ ├── io_uring_socket_accept_op.hpp │ │ │ ├── io_uring_socket_connect_op.hpp │ │ │ ├── io_uring_socket_recv_op.hpp │ │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ │ ├── io_uring_socket_send_op.hpp │ │ │ ├── io_uring_socket_sendto_op.hpp │ │ │ ├── io_uring_socket_service.hpp │ │ │ ├── io_uring_socket_service_base.hpp │ │ │ ├── io_uring_wait_op.hpp │ │ │ ├── is_buffer_sequence.hpp │ │ │ ├── is_executor.hpp │ │ │ ├── keyword_tss_ptr.hpp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── limits.hpp │ │ │ ├── local_free_on_block_exit.hpp │ │ │ ├── macos_fenced_block.hpp │ │ │ ├── memory.hpp │ │ │ ├── mutex.hpp │ │ │ ├── non_const_lvalue.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── null_event.hpp │ │ │ ├── null_fenced_block.hpp │ │ │ ├── null_global.hpp │ │ │ ├── null_mutex.hpp │ │ │ ├── null_reactor.hpp │ │ │ ├── null_signal_blocker.hpp │ │ │ ├── null_socket_service.hpp │ │ │ ├── null_static_mutex.hpp │ │ │ ├── null_thread.hpp │ │ │ ├── null_tss_ptr.hpp │ │ │ ├── object_pool.hpp │ │ │ ├── old_win_sdk_compat.hpp │ │ │ ├── op_queue.hpp │ │ │ ├── operation.hpp │ │ │ ├── pipe_select_interrupter.hpp │ │ │ ├── pop_options.hpp │ │ │ ├── posix_event.hpp │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ ├── posix_global.hpp │ │ │ ├── posix_mutex.hpp │ │ │ ├── posix_serial_port_service.hpp │ │ │ ├── posix_signal_blocker.hpp │ │ │ ├── posix_static_mutex.hpp │ │ │ ├── posix_thread.hpp │ │ │ ├── posix_tss_ptr.hpp │ │ │ ├── push_options.hpp │ │ │ ├── reactive_descriptor_service.hpp │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ ├── reactive_socket_send_op.hpp │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ ├── reactive_socket_service.hpp │ │ │ ├── reactive_socket_service_base.hpp │ │ │ ├── reactive_wait_op.hpp │ │ │ ├── reactor.hpp │ │ │ ├── reactor_op.hpp │ │ │ ├── reactor_op_queue.hpp │ │ │ ├── recycling_allocator.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── resolve_endpoint_op.hpp │ │ │ ├── resolve_op.hpp │ │ │ ├── resolve_query_op.hpp │ │ │ ├── resolver_service.hpp │ │ │ ├── resolver_service_base.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── scheduler_operation.hpp │ │ │ ├── scheduler_task.hpp │ │ │ ├── scheduler_thread_info.hpp │ │ │ ├── scoped_lock.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── select_interrupter.hpp │ │ │ ├── select_reactor.hpp │ │ │ ├── service_registry.hpp │ │ │ ├── signal_blocker.hpp │ │ │ ├── signal_handler.hpp │ │ │ ├── signal_init.hpp │ │ │ ├── signal_op.hpp │ │ │ ├── signal_set_service.hpp │ │ │ ├── socket_holder.hpp │ │ │ ├── socket_ops.hpp │ │ │ ├── socket_option.hpp │ │ │ ├── socket_select_interrupter.hpp │ │ │ ├── socket_types.hpp │ │ │ ├── solaris_fenced_block.hpp │ │ │ ├── source_location.hpp │ │ │ ├── static_mutex.hpp │ │ │ ├── std_event.hpp │ │ │ ├── std_fenced_block.hpp │ │ │ ├── std_global.hpp │ │ │ ├── std_mutex.hpp │ │ │ ├── std_static_mutex.hpp │ │ │ ├── std_thread.hpp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_service.hpp │ │ │ ├── string_view.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_context.hpp │ │ │ ├── thread_group.hpp │ │ │ ├── thread_info_base.hpp │ │ │ ├── throw_error.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── timer_queue.hpp │ │ │ ├── timer_queue_base.hpp │ │ │ ├── timer_queue_ptime.hpp │ │ │ ├── timer_queue_set.hpp │ │ │ ├── timer_scheduler.hpp │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ ├── tss_ptr.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── variadic_templates.hpp │ │ │ ├── wait_handler.hpp │ │ │ ├── wait_op.hpp │ │ │ ├── win_event.hpp │ │ │ ├── win_fd_set_adapter.hpp │ │ │ ├── win_fenced_block.hpp │ │ │ ├── win_global.hpp │ │ │ ├── win_iocp_file_service.hpp │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ ├── win_iocp_handle_service.hpp │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ ├── win_iocp_io_context.hpp │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ ├── win_iocp_operation.hpp │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ ├── win_iocp_socket_service.hpp │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ ├── win_iocp_thread_info.hpp │ │ │ ├── win_iocp_wait_op.hpp │ │ │ ├── win_mutex.hpp │ │ │ ├── win_object_handle_service.hpp │ │ │ ├── win_static_mutex.hpp │ │ │ ├── win_thread.hpp │ │ │ ├── win_tss_ptr.hpp │ │ │ ├── winapp_thread.hpp │ │ │ ├── wince_thread.hpp │ │ │ ├── winrt_async_manager.hpp │ │ │ ├── winrt_async_op.hpp │ │ │ ├── winrt_resolve_op.hpp │ │ │ ├── winrt_resolver_service.hpp │ │ │ ├── winrt_socket_connect_op.hpp │ │ │ ├── winrt_socket_recv_op.hpp │ │ │ ├── winrt_socket_send_op.hpp │ │ │ ├── winrt_ssocket_service.hpp │ │ │ ├── winrt_ssocket_service_base.hpp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_utils.hpp │ │ │ ├── winsock_init.hpp │ │ │ ├── work_dispatcher.hpp │ │ │ └── wrapped_handler.hpp │ │ │ ├── dispatch.hpp │ │ │ ├── error.hpp │ │ │ ├── error_code.hpp │ │ │ ├── execution.hpp │ │ │ ├── execution │ │ │ ├── allocator.hpp │ │ │ ├── any_executor.hpp │ │ │ ├── bad_executor.hpp │ │ │ ├── blocking.hpp │ │ │ ├── blocking_adaptation.hpp │ │ │ ├── bulk_execute.hpp │ │ │ ├── bulk_guarantee.hpp │ │ │ ├── connect.hpp │ │ │ ├── context.hpp │ │ │ ├── context_as.hpp │ │ │ ├── detail │ │ │ │ ├── as_invocable.hpp │ │ │ │ ├── as_operation.hpp │ │ │ │ ├── as_receiver.hpp │ │ │ │ ├── bulk_sender.hpp │ │ │ │ ├── submit_receiver.hpp │ │ │ │ └── void_receiver.hpp │ │ │ ├── execute.hpp │ │ │ ├── executor.hpp │ │ │ ├── impl │ │ │ │ ├── bad_executor.ipp │ │ │ │ └── receiver_invocation_error.ipp │ │ │ ├── invocable_archetype.hpp │ │ │ ├── mapping.hpp │ │ │ ├── occupancy.hpp │ │ │ ├── operation_state.hpp │ │ │ ├── outstanding_work.hpp │ │ │ ├── prefer_only.hpp │ │ │ ├── receiver.hpp │ │ │ ├── receiver_invocation_error.hpp │ │ │ ├── relationship.hpp │ │ │ ├── schedule.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── sender.hpp │ │ │ ├── set_done.hpp │ │ │ ├── set_error.hpp │ │ │ ├── set_value.hpp │ │ │ ├── start.hpp │ │ │ └── submit.hpp │ │ │ ├── execution_context.hpp │ │ │ ├── executor.hpp │ │ │ ├── executor_work_guard.hpp │ │ │ ├── experimental │ │ │ ├── append.hpp │ │ │ ├── as_single.hpp │ │ │ ├── as_tuple.hpp │ │ │ ├── awaitable_operators.hpp │ │ │ ├── basic_channel.hpp │ │ │ ├── basic_concurrent_channel.hpp │ │ │ ├── cancellation_condition.hpp │ │ │ ├── channel.hpp │ │ │ ├── channel_error.hpp │ │ │ ├── channel_traits.hpp │ │ │ ├── co_composed.hpp │ │ │ ├── co_spawn.hpp │ │ │ ├── concurrent_channel.hpp │ │ │ ├── coro.hpp │ │ │ ├── coro_traits.hpp │ │ │ ├── deferred.hpp │ │ │ ├── detail │ │ │ │ ├── channel_handler.hpp │ │ │ │ ├── channel_message.hpp │ │ │ │ ├── channel_operation.hpp │ │ │ │ ├── channel_payload.hpp │ │ │ │ ├── channel_receive_op.hpp │ │ │ │ ├── channel_send_functions.hpp │ │ │ │ ├── channel_send_op.hpp │ │ │ │ ├── channel_service.hpp │ │ │ │ ├── coro_completion_handler.hpp │ │ │ │ ├── coro_promise_allocator.hpp │ │ │ │ ├── has_signature.hpp │ │ │ │ ├── impl │ │ │ │ │ └── channel_service.hpp │ │ │ │ └── partial_promise.hpp │ │ │ ├── impl │ │ │ │ ├── as_single.hpp │ │ │ │ ├── channel_error.ipp │ │ │ │ ├── co_composed.hpp │ │ │ │ ├── coro.hpp │ │ │ │ ├── parallel_group.hpp │ │ │ │ ├── promise.hpp │ │ │ │ ├── use_coro.hpp │ │ │ │ └── use_promise.hpp │ │ │ ├── parallel_group.hpp │ │ │ ├── prepend.hpp │ │ │ ├── promise.hpp │ │ │ ├── use_coro.hpp │ │ │ └── use_promise.hpp │ │ │ ├── file_base.hpp │ │ │ ├── generic │ │ │ ├── basic_endpoint.hpp │ │ │ ├── datagram_protocol.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ └── impl │ │ │ │ │ └── endpoint.ipp │ │ │ ├── raw_protocol.hpp │ │ │ ├── seq_packet_protocol.hpp │ │ │ └── stream_protocol.hpp │ │ │ ├── handler_alloc_hook.hpp │ │ │ ├── handler_continuation_hook.hpp │ │ │ ├── handler_invoke_hook.hpp │ │ │ ├── high_resolution_timer.hpp │ │ │ ├── impl │ │ │ ├── any_completion_executor.ipp │ │ │ ├── any_io_executor.ipp │ │ │ ├── append.hpp │ │ │ ├── as_tuple.hpp │ │ │ ├── awaitable.hpp │ │ │ ├── buffered_read_stream.hpp │ │ │ ├── buffered_write_stream.hpp │ │ │ ├── cancellation_signal.ipp │ │ │ ├── co_spawn.hpp │ │ │ ├── connect.hpp │ │ │ ├── connect_pipe.hpp │ │ │ ├── connect_pipe.ipp │ │ │ ├── consign.hpp │ │ │ ├── deferred.hpp │ │ │ ├── detached.hpp │ │ │ ├── error.ipp │ │ │ ├── error_code.ipp │ │ │ ├── execution_context.hpp │ │ │ ├── execution_context.ipp │ │ │ ├── executor.hpp │ │ │ ├── executor.ipp │ │ │ ├── handler_alloc_hook.ipp │ │ │ ├── io_context.hpp │ │ │ ├── io_context.ipp │ │ │ ├── multiple_exceptions.ipp │ │ │ ├── prepend.hpp │ │ │ ├── read.hpp │ │ │ ├── read_at.hpp │ │ │ ├── read_until.hpp │ │ │ ├── redirect_error.hpp │ │ │ ├── serial_port_base.hpp │ │ │ ├── serial_port_base.ipp │ │ │ ├── spawn.hpp │ │ │ ├── src.hpp │ │ │ ├── system_context.hpp │ │ │ ├── system_context.ipp │ │ │ ├── system_executor.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── thread_pool.ipp │ │ │ ├── use_awaitable.hpp │ │ │ ├── use_future.hpp │ │ │ ├── write.hpp │ │ │ └── write_at.hpp │ │ │ ├── io_context.hpp │ │ │ ├── io_context_strand.hpp │ │ │ ├── io_service.hpp │ │ │ ├── io_service_strand.hpp │ │ │ ├── ip │ │ │ ├── address.hpp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4_iterator.hpp │ │ │ ├── address_v4_range.hpp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6_iterator.hpp │ │ │ ├── address_v6_range.hpp │ │ │ ├── bad_address_cast.hpp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── basic_resolver.hpp │ │ │ ├── basic_resolver_entry.hpp │ │ │ ├── basic_resolver_iterator.hpp │ │ │ ├── basic_resolver_query.hpp │ │ │ ├── basic_resolver_results.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ ├── impl │ │ │ │ │ └── endpoint.ipp │ │ │ │ └── socket_option.hpp │ │ │ ├── host_name.hpp │ │ │ ├── icmp.hpp │ │ │ ├── impl │ │ │ │ ├── address.hpp │ │ │ │ ├── address.ipp │ │ │ │ ├── address_v4.hpp │ │ │ │ ├── address_v4.ipp │ │ │ │ ├── address_v6.hpp │ │ │ │ ├── address_v6.ipp │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ ├── host_name.ipp │ │ │ │ ├── network_v4.hpp │ │ │ │ ├── network_v4.ipp │ │ │ │ ├── network_v6.hpp │ │ │ │ └── network_v6.ipp │ │ │ ├── multicast.hpp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v6.hpp │ │ │ ├── resolver_base.hpp │ │ │ ├── resolver_query_base.hpp │ │ │ ├── tcp.hpp │ │ │ ├── udp.hpp │ │ │ ├── unicast.hpp │ │ │ └── v6_only.hpp │ │ │ ├── is_applicable_property.hpp │ │ │ ├── is_contiguous_iterator.hpp │ │ │ ├── is_executor.hpp │ │ │ ├── is_read_buffered.hpp │ │ │ ├── is_write_buffered.hpp │ │ │ ├── local │ │ │ ├── basic_endpoint.hpp │ │ │ ├── connect_pair.hpp │ │ │ ├── datagram_protocol.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ └── impl │ │ │ │ │ └── endpoint.ipp │ │ │ ├── seq_packet_protocol.hpp │ │ │ └── stream_protocol.hpp │ │ │ ├── multiple_exceptions.hpp │ │ │ ├── packaged_task.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── posix │ │ │ ├── basic_descriptor.hpp │ │ │ ├── basic_stream_descriptor.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_base.hpp │ │ │ └── stream_descriptor.hpp │ │ │ ├── post.hpp │ │ │ ├── prefer.hpp │ │ │ ├── prepend.hpp │ │ │ ├── query.hpp │ │ │ ├── random_access_file.hpp │ │ │ ├── read.hpp │ │ │ ├── read_at.hpp │ │ │ ├── read_until.hpp │ │ │ ├── readable_pipe.hpp │ │ │ ├── recycling_allocator.hpp │ │ │ ├── redirect_error.hpp │ │ │ ├── registered_buffer.hpp │ │ │ ├── require.hpp │ │ │ ├── require_concept.hpp │ │ │ ├── serial_port.hpp │ │ │ ├── serial_port_base.hpp │ │ │ ├── signal_set.hpp │ │ │ ├── signal_set_base.hpp │ │ │ ├── socket_base.hpp │ │ │ ├── spawn.hpp │ │ │ ├── ssl.hpp │ │ │ ├── ssl │ │ │ ├── context.hpp │ │ │ ├── context_base.hpp │ │ │ ├── detail │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ ├── engine.hpp │ │ │ │ ├── handshake_op.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── engine.ipp │ │ │ │ │ └── openssl_init.ipp │ │ │ │ ├── io.hpp │ │ │ │ ├── openssl_init.hpp │ │ │ │ ├── openssl_types.hpp │ │ │ │ ├── password_callback.hpp │ │ │ │ ├── read_op.hpp │ │ │ │ ├── shutdown_op.hpp │ │ │ │ ├── stream_core.hpp │ │ │ │ ├── verify_callback.hpp │ │ │ │ └── write_op.hpp │ │ │ ├── error.hpp │ │ │ ├── host_name_verification.hpp │ │ │ ├── impl │ │ │ │ ├── context.hpp │ │ │ │ ├── context.ipp │ │ │ │ ├── error.ipp │ │ │ │ ├── host_name_verification.ipp │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ └── src.hpp │ │ │ ├── rfc2818_verification.hpp │ │ │ ├── stream.hpp │ │ │ ├── stream_base.hpp │ │ │ ├── verify_context.hpp │ │ │ └── verify_mode.hpp │ │ │ ├── static_thread_pool.hpp │ │ │ ├── steady_timer.hpp │ │ │ ├── strand.hpp │ │ │ ├── stream_file.hpp │ │ │ ├── streambuf.hpp │ │ │ ├── system_context.hpp │ │ │ ├── system_error.hpp │ │ │ ├── system_executor.hpp │ │ │ ├── system_timer.hpp │ │ │ ├── this_coro.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── time_traits.hpp │ │ │ ├── traits │ │ │ ├── bulk_execute_free.hpp │ │ │ ├── bulk_execute_member.hpp │ │ │ ├── connect_free.hpp │ │ │ ├── connect_member.hpp │ │ │ ├── equality_comparable.hpp │ │ │ ├── execute_free.hpp │ │ │ ├── execute_member.hpp │ │ │ ├── prefer_free.hpp │ │ │ ├── prefer_member.hpp │ │ │ ├── query_free.hpp │ │ │ ├── query_member.hpp │ │ │ ├── query_static_constexpr_member.hpp │ │ │ ├── require_concept_free.hpp │ │ │ ├── require_concept_member.hpp │ │ │ ├── require_free.hpp │ │ │ ├── require_member.hpp │ │ │ ├── schedule_free.hpp │ │ │ ├── schedule_member.hpp │ │ │ ├── set_done_free.hpp │ │ │ ├── set_done_member.hpp │ │ │ ├── set_error_free.hpp │ │ │ ├── set_error_member.hpp │ │ │ ├── set_value_free.hpp │ │ │ ├── set_value_member.hpp │ │ │ ├── start_free.hpp │ │ │ ├── start_member.hpp │ │ │ ├── static_query.hpp │ │ │ ├── static_require.hpp │ │ │ ├── static_require_concept.hpp │ │ │ ├── submit_free.hpp │ │ │ └── submit_member.hpp │ │ │ ├── ts │ │ │ ├── buffer.hpp │ │ │ ├── executor.hpp │ │ │ ├── internet.hpp │ │ │ ├── io_context.hpp │ │ │ ├── net.hpp │ │ │ ├── netfwd.hpp │ │ │ ├── socket.hpp │ │ │ └── timer.hpp │ │ │ ├── unyield.hpp │ │ │ ├── use_awaitable.hpp │ │ │ ├── use_future.hpp │ │ │ ├── uses_executor.hpp │ │ │ ├── version.hpp │ │ │ ├── wait_traits.hpp │ │ │ ├── windows │ │ │ ├── basic_object_handle.hpp │ │ │ ├── basic_overlapped_handle.hpp │ │ │ ├── basic_random_access_handle.hpp │ │ │ ├── basic_stream_handle.hpp │ │ │ ├── object_handle.hpp │ │ │ ├── overlapped_handle.hpp │ │ │ ├── overlapped_ptr.hpp │ │ │ ├── random_access_handle.hpp │ │ │ └── stream_handle.hpp │ │ │ ├── writable_pipe.hpp │ │ │ ├── write.hpp │ │ │ ├── write_at.hpp │ │ │ └── yield.hpp │ │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mgw │ │ ├── Makefile.msc │ │ ├── asio.cpp │ │ └── asio_ssl.cpp ├── fltk │ ├── CMakeLists.txt │ ├── Version.txt │ └── fltk │ │ ├── .clang-format │ │ ├── ANNOUNCEMENT │ │ ├── CHANGES.txt │ │ ├── CHANGES_1.0.txt │ │ ├── CHANGES_1.1.txt │ │ ├── CHANGES_1.3.txt │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── CREDITS.txt │ │ ├── FL │ │ ├── Enumerations.H │ │ ├── Fl.H │ │ ├── Fl_Adjuster.H │ │ ├── Fl_Anim_GIF_Image.H │ │ ├── Fl_BMP_Image.H │ │ ├── Fl_Bitmap.H │ │ ├── Fl_Box.H │ │ ├── Fl_Browser.H │ │ ├── Fl_Browser_.H │ │ ├── Fl_Button.H │ │ ├── Fl_Cairo.H │ │ ├── Fl_Cairo_Window.H │ │ ├── Fl_Chart.H │ │ ├── Fl_Check_Browser.H │ │ ├── Fl_Check_Button.H │ │ ├── Fl_Choice.H │ │ ├── Fl_Clock.H │ │ ├── Fl_Color_Chooser.H │ │ ├── Fl_Copy_Surface.H │ │ ├── Fl_Counter.H │ │ ├── Fl_Device.H │ │ ├── Fl_Dial.H │ │ ├── Fl_Double_Window.H │ │ ├── Fl_Export.H │ │ ├── Fl_File_Browser.H │ │ ├── Fl_File_Chooser.H │ │ ├── Fl_File_Icon.H │ │ ├── Fl_File_Input.H │ │ ├── Fl_Fill_Dial.H │ │ ├── Fl_Fill_Slider.H │ │ ├── Fl_Flex.H │ │ ├── Fl_Float_Input.H │ │ ├── Fl_FormsBitmap.H │ │ ├── Fl_FormsPixmap.H │ │ ├── Fl_Free.H │ │ ├── Fl_GIF_Image.H │ │ ├── Fl_Gl_Window.H │ │ ├── Fl_Graphics_Driver.H │ │ ├── Fl_Group.H │ │ ├── Fl_Help_Dialog.H │ │ ├── Fl_Help_View.H │ │ ├── Fl_Hold_Browser.H │ │ ├── Fl_Hor_Fill_Slider.H │ │ ├── Fl_Hor_Nice_Slider.H │ │ ├── Fl_Hor_Slider.H │ │ ├── Fl_Hor_Value_Slider.H │ │ ├── Fl_ICO_Image.H │ │ ├── Fl_Image.H │ │ ├── Fl_Image_Surface.H │ │ ├── Fl_Input.H │ │ ├── Fl_Input_.H │ │ ├── Fl_Input_Choice.H │ │ ├── Fl_Int_Input.H │ │ ├── Fl_Int_Vector.H │ │ ├── Fl_JPEG_Image.H │ │ ├── Fl_Light_Button.H │ │ ├── Fl_Line_Dial.H │ │ ├── Fl_Menu.H │ │ ├── Fl_Menu_.H │ │ ├── Fl_Menu_Bar.H │ │ ├── Fl_Menu_Button.H │ │ ├── Fl_Menu_Item.H │ │ ├── Fl_Menu_Window.H │ │ ├── Fl_Multi_Browser.H │ │ ├── Fl_Multi_Label.H │ │ ├── Fl_Multiline_Input.H │ │ ├── Fl_Multiline_Output.H │ │ ├── Fl_Native_File_Chooser.H │ │ ├── Fl_Nice_Slider.H │ │ ├── Fl_Object.H │ │ ├── Fl_Output.H │ │ ├── Fl_Overlay_Window.H │ │ ├── Fl_PNG_Image.H │ │ ├── Fl_PNM_Image.H │ │ ├── Fl_Pack.H │ │ ├── Fl_Paged_Device.H │ │ ├── Fl_Pixmap.H │ │ ├── Fl_Plugin.H │ │ ├── Fl_Positioner.H │ │ ├── Fl_PostScript.H │ │ ├── Fl_Preferences.H │ │ ├── Fl_Printer.H │ │ ├── Fl_Progress.H │ │ ├── Fl_RGB_Image.H │ │ ├── Fl_Radio_Button.H │ │ ├── Fl_Radio_Light_Button.H │ │ ├── Fl_Radio_Round_Button.H │ │ ├── Fl_Rect.H │ │ ├── Fl_Repeat_Button.H │ │ ├── Fl_Return_Button.H │ │ ├── Fl_Roller.H │ │ ├── Fl_Round_Button.H │ │ ├── Fl_Round_Clock.H │ │ ├── Fl_SVG_File_Surface.H │ │ ├── Fl_SVG_Image.H │ │ ├── Fl_Scheme.H │ │ ├── Fl_Scheme_Choice.H │ │ ├── Fl_Scroll.H │ │ ├── Fl_Scrollbar.H │ │ ├── Fl_Secret_Input.H │ │ ├── Fl_Select_Browser.H │ │ ├── Fl_Shared_Image.H │ │ ├── Fl_Shortcut_Button.H │ │ ├── Fl_Simple_Counter.H │ │ ├── Fl_Simple_Terminal.H │ │ ├── Fl_Single_Window.H │ │ ├── Fl_Slider.H │ │ ├── Fl_Spinner.H │ │ ├── Fl_String.H │ │ ├── Fl_Sys_Menu_Bar.H │ │ ├── Fl_Table.H │ │ ├── Fl_Table_Row.H │ │ ├── Fl_Tabs.H │ │ ├── Fl_Text_Buffer.H │ │ ├── Fl_Text_Display.H │ │ ├── Fl_Text_Editor.H │ │ ├── Fl_Tile.H │ │ ├── Fl_Tiled_Image.H │ │ ├── Fl_Timer.H │ │ ├── Fl_Toggle_Button.H │ │ ├── Fl_Toggle_Light_Button.H │ │ ├── Fl_Toggle_Round_Button.H │ │ ├── Fl_Tooltip.H │ │ ├── Fl_Tree.H │ │ ├── Fl_Tree_Item.H │ │ ├── Fl_Tree_Item_Array.H │ │ ├── Fl_Tree_Prefs.H │ │ ├── Fl_Valuator.H │ │ ├── Fl_Value_Input.H │ │ ├── Fl_Value_Output.H │ │ ├── Fl_Value_Slider.H │ │ ├── Fl_Widget.H │ │ ├── Fl_Widget_Surface.H │ │ ├── Fl_Window.H │ │ ├── Fl_Wizard.H │ │ ├── Fl_XBM_Image.H │ │ ├── Fl_XPM_Image.H │ │ ├── Makefile.in │ │ ├── README.Xcode │ │ ├── filename.H │ │ ├── fl_ask.H │ │ ├── fl_attr.h │ │ ├── fl_casts.H │ │ ├── fl_config.h │ │ ├── fl_draw.H │ │ ├── fl_message.H │ │ ├── fl_show_colormap.H │ │ ├── fl_show_input.H │ │ ├── fl_string_functions.h │ │ ├── fl_types.h │ │ ├── fl_utf8.h │ │ ├── forms.H │ │ ├── gl.h │ │ ├── gl2opengl.h │ │ ├── gl_draw.H │ │ ├── glu.h │ │ ├── glut.H │ │ ├── mac.H │ │ ├── math.h │ │ ├── names.h │ │ ├── platform.H │ │ ├── platform_types.h │ │ ├── wayland.H │ │ ├── win32.H │ │ ├── x.H │ │ └── x11.H │ │ ├── Makefile │ │ ├── README.CMake.txt │ │ ├── README.Cairo.txt │ │ ├── README.IDE.txt │ │ ├── README.Unix.txt │ │ ├── README.Wayland.txt │ │ ├── README.Windows.txt │ │ ├── README.abi-version.txt │ │ ├── README.experimental.txt │ │ ├── README.macOS.md │ │ ├── README.md │ │ ├── README.txt │ │ ├── autogen.sh │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.sub │ │ ├── configh.cmake.in │ │ ├── configh.in │ │ ├── configure.ac │ │ ├── fl_config.cmake.in │ │ ├── fl_config.in │ │ ├── fltk-config.in │ │ ├── fltk.list.in │ │ ├── fltk.spec.in │ │ ├── fltk.xpm │ │ ├── fltk_version.dat │ │ ├── forms.h │ │ ├── install-sh │ │ ├── mac_endianness.h │ │ ├── makeinclude.in │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── Fl.cxx │ │ ├── Fl_Adjuster.cxx │ │ ├── Fl_Anim_GIF_Image.cxx │ │ ├── Fl_BMP_Image.cxx │ │ ├── Fl_Bitmap.cxx │ │ ├── Fl_Box.cxx │ │ ├── Fl_Browser.cxx │ │ ├── Fl_Browser_.cxx │ │ ├── Fl_Browser_load.cxx │ │ ├── Fl_Button.cxx │ │ ├── Fl_Cairo.cxx │ │ ├── Fl_Chart.cxx │ │ ├── Fl_Check_Browser.cxx │ │ ├── Fl_Check_Button.cxx │ │ ├── Fl_Choice.cxx │ │ ├── Fl_Clock.cxx │ │ ├── Fl_Color_Chooser.cxx │ │ ├── Fl_Copy_Surface.cxx │ │ ├── Fl_Counter.cxx │ │ ├── Fl_Device.cxx │ │ ├── Fl_Dial.cxx │ │ ├── Fl_Double_Window.cxx │ │ ├── Fl_File_Browser.cxx │ │ ├── Fl_File_Chooser.cxx │ │ ├── Fl_File_Chooser.fl │ │ ├── Fl_File_Chooser2.cxx │ │ ├── Fl_File_Icon.cxx │ │ ├── Fl_File_Icon2.cxx │ │ ├── Fl_File_Input.cxx │ │ ├── Fl_Flex.cxx │ │ ├── Fl_GIF_Image.cxx │ │ ├── Fl_Gl_Choice.H │ │ ├── Fl_Gl_Choice.cxx │ │ ├── Fl_Gl_Device_Plugin.cxx │ │ ├── Fl_Gl_Overlay.cxx │ │ ├── Fl_Gl_Window.cxx │ │ ├── Fl_Gl_Window_Driver.H │ │ ├── Fl_Graphics_Driver.cxx │ │ ├── Fl_Group.cxx │ │ ├── Fl_Help_Dialog.cxx │ │ ├── Fl_Help_Dialog.fl │ │ ├── Fl_Help_Dialog_Dox.cxx │ │ ├── Fl_Help_View.cxx │ │ ├── Fl_ICO_Image.cxx │ │ ├── Fl_Image.cxx │ │ ├── Fl_Image_Reader.cxx │ │ ├── Fl_Image_Reader.h │ │ ├── Fl_Image_Surface.cxx │ │ ├── Fl_Input.cxx │ │ ├── Fl_Input_.cxx │ │ ├── Fl_Input_Choice.cxx │ │ ├── Fl_Int_Vector.cxx │ │ ├── Fl_JPEG_Image.cxx │ │ ├── Fl_Light_Button.cxx │ │ ├── Fl_MacOS_Sys_Menu_Bar.mm │ │ ├── Fl_Menu.cxx │ │ ├── Fl_Menu_.cxx │ │ ├── Fl_Menu_Bar.cxx │ │ ├── Fl_Menu_Button.cxx │ │ ├── Fl_Menu_Window.cxx │ │ ├── Fl_Menu_add.cxx │ │ ├── Fl_Menu_global.cxx │ │ ├── Fl_Message.cxx │ │ ├── Fl_Message.h │ │ ├── Fl_Multi_Label.cxx │ │ ├── Fl_Native_File_Chooser.cxx │ │ ├── Fl_Native_File_Chooser_FLTK.cxx │ │ ├── Fl_Native_File_Chooser_GTK.cxx │ │ ├── Fl_Native_File_Chooser_Kdialog.H │ │ ├── Fl_Native_File_Chooser_Kdialog.cxx │ │ ├── Fl_Native_File_Chooser_MAC.mm │ │ ├── Fl_Native_File_Chooser_WIN32.cxx │ │ ├── Fl_Native_File_Chooser_Zenity.H │ │ ├── Fl_Native_File_Chooser_Zenity.cxx │ │ ├── Fl_Overlay_Window.cxx │ │ ├── Fl_PNG_Image.cxx │ │ ├── Fl_PNM_Image.cxx │ │ ├── Fl_Pack.cxx │ │ ├── Fl_Paged_Device.cxx │ │ ├── Fl_Pixmap.cxx │ │ ├── Fl_Positioner.cxx │ │ ├── Fl_Preferences.cxx │ │ ├── Fl_Printer.cxx │ │ ├── Fl_Progress.cxx │ │ ├── Fl_Repeat_Button.cxx │ │ ├── Fl_Return_Button.cxx │ │ ├── Fl_Roller.cxx │ │ ├── Fl_Round_Button.cxx │ │ ├── Fl_SVG_Image.cxx │ │ ├── Fl_Scheme.cxx │ │ ├── Fl_Scheme_Choice.cxx │ │ ├── Fl_Screen_Driver.H │ │ ├── Fl_Screen_Driver.cxx │ │ ├── Fl_Scroll.cxx │ │ ├── Fl_Scrollbar.cxx │ │ ├── Fl_Shared_Image.cxx │ │ ├── Fl_Shortcut_Button.cxx │ │ ├── Fl_Simple_Terminal.cxx │ │ ├── Fl_Single_Window.cxx │ │ ├── Fl_Slider.cxx │ │ ├── Fl_Spinner.cxx │ │ ├── Fl_String.cxx │ │ ├── Fl_Sys_Menu_Bar.cxx │ │ ├── Fl_Sys_Menu_Bar_Driver.H │ │ ├── Fl_System_Driver.H │ │ ├── Fl_System_Driver.cxx │ │ ├── Fl_Table.cxx │ │ ├── Fl_Table_Row.cxx │ │ ├── Fl_Tabs.cxx │ │ ├── Fl_Text_Buffer.cxx │ │ ├── Fl_Text_Display.cxx │ │ ├── Fl_Text_Editor.cxx │ │ ├── Fl_Tile.cxx │ │ ├── Fl_Tiled_Image.cxx │ │ ├── Fl_Timeout.cxx │ │ ├── Fl_Timeout.h │ │ ├── Fl_Tooltip.cxx │ │ ├── Fl_Tree.cxx │ │ ├── Fl_Tree_Item.cxx │ │ ├── Fl_Tree_Item_Array.cxx │ │ ├── Fl_Tree_Prefs.cxx │ │ ├── Fl_Valuator.cxx │ │ ├── Fl_Value_Input.cxx │ │ ├── Fl_Value_Output.cxx │ │ ├── Fl_Value_Slider.cxx │ │ ├── Fl_Widget.cxx │ │ ├── Fl_Widget_Surface.cxx │ │ ├── Fl_Window.cxx │ │ ├── Fl_Window_Driver.H │ │ ├── Fl_Window_Driver.cxx │ │ ├── Fl_Window_fullscreen.cxx │ │ ├── Fl_Window_hotspot.cxx │ │ ├── Fl_Window_iconize.cxx │ │ ├── Fl_Wizard.cxx │ │ ├── Fl_XBM_Image.cxx │ │ ├── Fl_XColor.H │ │ ├── Fl_XPM_Image.cxx │ │ ├── Fl_abort.cxx │ │ ├── Fl_add_idle.cxx │ │ ├── Fl_arg.cxx │ │ ├── Fl_cocoa.mm │ │ ├── Fl_compose.cxx │ │ ├── Fl_display.cxx │ │ ├── Fl_get_key.cxx │ │ ├── Fl_get_key_mac.cxx │ │ ├── Fl_get_key_win32.cxx │ │ ├── Fl_get_system_colors.cxx │ │ ├── Fl_grab.cxx │ │ ├── Fl_lock.cxx │ │ ├── Fl_own_colormap.cxx │ │ ├── Fl_visual.cxx │ │ ├── Fl_win32.cxx │ │ ├── Fl_x.cxx │ │ ├── Makefile │ │ ├── Xutf8.h │ │ ├── allfiles.xbm │ │ ├── cgdebug.h │ │ ├── d1.xbm │ │ ├── d1_mask.xbm │ │ ├── drivers │ │ ├── Cairo │ │ │ ├── Fl_Cairo_Graphics_Driver.H │ │ │ ├── Fl_Cairo_Graphics_Driver.cxx │ │ │ ├── Fl_X11_Cairo_Graphics_Driver.H │ │ │ └── Fl_X11_Cairo_Graphics_Driver.cxx │ │ ├── Cocoa │ │ │ ├── Fl_Cocoa_Gl_Window_Driver.H │ │ │ ├── Fl_Cocoa_Gl_Window_Driver.mm │ │ │ ├── Fl_Cocoa_Printer_Driver.mm │ │ │ ├── Fl_Cocoa_Screen_Driver.H │ │ │ ├── Fl_Cocoa_Screen_Driver.cxx │ │ │ ├── Fl_Cocoa_Window_Driver.H │ │ │ ├── Fl_Cocoa_Window_Driver.cxx │ │ │ └── Fl_MacOS_Sys_Menu_Bar_Driver.H │ │ ├── Darwin │ │ │ ├── Fl_Darwin_System_Driver.H │ │ │ ├── Fl_Darwin_System_Driver.cxx │ │ │ └── fl_macOS_platform_init.cxx │ │ ├── GDI │ │ │ ├── Fl_Font.H │ │ │ ├── Fl_GDI_Copy_Surface_Driver.H │ │ │ ├── Fl_GDI_Copy_Surface_Driver.cxx │ │ │ ├── Fl_GDI_Graphics_Driver.H │ │ │ ├── Fl_GDI_Graphics_Driver.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_arci.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_color.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_font.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_image.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_line_style.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_rect.cxx │ │ │ ├── Fl_GDI_Graphics_Driver_vertex.cxx │ │ │ ├── Fl_GDI_Image_Surface_Driver.H │ │ │ └── Fl_GDI_Image_Surface_Driver.cxx │ │ ├── OpenGL │ │ │ ├── Fl_OpenGL_Display_Device.H │ │ │ ├── Fl_OpenGL_Display_Device.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver.H │ │ │ ├── Fl_OpenGL_Graphics_Driver.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver_arci.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver_color.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver_font.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver_line_style.cxx │ │ │ ├── Fl_OpenGL_Graphics_Driver_rect.cxx │ │ │ └── Fl_OpenGL_Graphics_Driver_vertex.cxx │ │ ├── Posix │ │ │ ├── Fl_Posix_Printer_Driver.cxx │ │ │ ├── Fl_Posix_System_Driver.H │ │ │ └── Fl_Posix_System_Driver.cxx │ │ ├── PostScript │ │ │ ├── Fl_PostScript.cxx │ │ │ ├── Fl_PostScript_Graphics_Driver.H │ │ │ └── Fl_PostScript_image.cxx │ │ ├── Quartz │ │ │ ├── Fl_Font.H │ │ │ ├── Fl_Quartz_Copy_Surface_Driver.H │ │ │ ├── Fl_Quartz_Copy_Surface_Driver.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver.H │ │ │ ├── Fl_Quartz_Graphics_Driver.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_arci.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_color.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_font.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_image.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_line_style.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_rect.cxx │ │ │ ├── Fl_Quartz_Graphics_Driver_vertex.cxx │ │ │ ├── Fl_Quartz_Image_Surface_Driver.H │ │ │ └── Fl_Quartz_Image_Surface_Driver.cxx │ │ ├── SVG │ │ │ └── Fl_SVG_File_Surface.cxx │ │ ├── Unix │ │ │ ├── Fl_Unix_Screen_Driver.H │ │ │ ├── Fl_Unix_Screen_Driver.cxx │ │ │ ├── Fl_Unix_System_Driver.H │ │ │ └── Fl_Unix_System_Driver.cxx │ │ ├── Wayland │ │ │ ├── Fl_Wayland_Copy_Surface_Driver.H │ │ │ ├── Fl_Wayland_Copy_Surface_Driver.cxx │ │ │ ├── Fl_Wayland_Gl_Window_Driver.H │ │ │ ├── Fl_Wayland_Gl_Window_Driver.cxx │ │ │ ├── Fl_Wayland_Graphics_Driver.H │ │ │ ├── Fl_Wayland_Graphics_Driver.cxx │ │ │ ├── Fl_Wayland_Image_Surface_Driver.H │ │ │ ├── Fl_Wayland_Image_Surface_Driver.cxx │ │ │ ├── Fl_Wayland_Screen_Driver.H │ │ │ ├── Fl_Wayland_Screen_Driver.cxx │ │ │ ├── Fl_Wayland_Window_Driver.H │ │ │ ├── Fl_Wayland_Window_Driver.cxx │ │ │ ├── fl_wayland_clipboard_dnd.cxx │ │ │ └── fl_wayland_platform_init.cxx │ │ ├── WinAPI │ │ │ ├── Fl_WinAPI_Gl_Window_Driver.H │ │ │ ├── Fl_WinAPI_Gl_Window_Driver.cxx │ │ │ ├── Fl_WinAPI_Printer_Driver.cxx │ │ │ ├── Fl_WinAPI_Screen_Driver.H │ │ │ ├── Fl_WinAPI_Screen_Driver.cxx │ │ │ ├── Fl_WinAPI_System_Driver.H │ │ │ ├── Fl_WinAPI_System_Driver.cxx │ │ │ ├── Fl_WinAPI_Window_Driver.H │ │ │ ├── Fl_WinAPI_Window_Driver.cxx │ │ │ └── fl_WinAPI_platform_init.cxx │ │ ├── X11 │ │ │ ├── Fl_X11_Gl_Window_Driver.H │ │ │ ├── Fl_X11_Gl_Window_Driver.cxx │ │ │ ├── Fl_X11_Screen_Driver.H │ │ │ ├── Fl_X11_Screen_Driver.cxx │ │ │ ├── Fl_X11_Window_Driver.H │ │ │ ├── Fl_X11_Window_Driver.cxx │ │ │ └── fl_X11_platform_init.cxx │ │ └── Xlib │ │ │ ├── Fl_Font.H │ │ │ ├── Fl_Xlib_Copy_Surface_Driver.H │ │ │ ├── Fl_Xlib_Copy_Surface_Driver.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver.H │ │ │ ├── Fl_Xlib_Graphics_Driver.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_arci.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_color.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_font_x.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_font_xft.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_image.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_line_style.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_rect.cxx │ │ │ ├── Fl_Xlib_Graphics_Driver_vertex.cxx │ │ │ ├── Fl_Xlib_Image_Surface_Driver.H │ │ │ └── Fl_Xlib_Image_Surface_Driver.cxx │ │ ├── dump_compose.c │ │ ├── ew.xbm │ │ ├── ew_mask.xbm │ │ ├── fastarrow.h │ │ ├── filename_absolute.cxx │ │ ├── filename_expand.cxx │ │ ├── filename_ext.cxx │ │ ├── filename_isdir.cxx │ │ ├── filename_list.cxx │ │ ├── filename_match.cxx │ │ ├── filename_setext.cxx │ │ ├── fl_arc.cxx │ │ ├── fl_ask.cxx │ │ ├── fl_boxtype.cxx │ │ ├── fl_call_main.c │ │ ├── fl_cmap.h │ │ ├── fl_color.cxx │ │ ├── fl_contrast.cxx │ │ ├── fl_cursor.cxx │ │ ├── fl_cursor_help.xpm │ │ ├── fl_cursor_nesw.xpm │ │ ├── fl_cursor_none.xpm │ │ ├── fl_cursor_nwse.xpm │ │ ├── fl_cursor_wait.xpm │ │ ├── fl_curve.cxx │ │ ├── fl_diamond_box.cxx │ │ ├── fl_dnd_win32.cxx │ │ ├── fl_dnd_x.cxx │ │ ├── fl_draw.cxx │ │ ├── fl_draw_arrow.cxx │ │ ├── fl_draw_pixmap.cxx │ │ ├── fl_encoding_latin1.cxx │ │ ├── fl_encoding_mac_roman.cxx │ │ ├── fl_engraved_label.cxx │ │ ├── fl_file_dir.cxx │ │ ├── fl_font.cxx │ │ ├── fl_gleam.cxx │ │ ├── fl_gtk.cxx │ │ ├── fl_images_core.cxx │ │ ├── fl_labeltype.cxx │ │ ├── fl_open_uri.cxx │ │ ├── fl_oval_box.cxx │ │ ├── fl_overlay.cxx │ │ ├── fl_oxy.cxx │ │ ├── fl_oxy.h │ │ ├── fl_plastic.cxx │ │ ├── fl_read_image.cxx │ │ ├── fl_rect.cxx │ │ ├── fl_round_box.cxx │ │ ├── fl_rounded_box.cxx │ │ ├── fl_scroll_area.cxx │ │ ├── fl_set_font.cxx │ │ ├── fl_shadow_box.cxx │ │ ├── fl_shortcut.cxx │ │ ├── fl_show_colormap.cxx │ │ ├── fl_string_functions.cxx │ │ ├── fl_symbols.cxx │ │ ├── fl_utf8.cxx │ │ ├── fl_vertex.cxx │ │ ├── fl_write_png.cxx │ │ ├── flstring.c │ │ ├── flstring.h │ │ ├── forms_bitmap.cxx │ │ ├── forms_compatibility.cxx │ │ ├── forms_free.cxx │ │ ├── forms_fselect.cxx │ │ ├── forms_pixmap.cxx │ │ ├── forms_timer.cxx │ │ ├── freeglut_geometry.cxx │ │ ├── freeglut_stroke_mono_roman.cxx │ │ ├── freeglut_stroke_roman.cxx │ │ ├── freeglut_teapot.cxx │ │ ├── freeglut_teapot_data.h │ │ ├── gl_draw.cxx │ │ ├── gl_start.cxx │ │ ├── glut_compatibility.cxx │ │ ├── glut_font.cxx │ │ ├── makedepend │ │ ├── mediumarrow.h │ │ ├── new.xbm │ │ ├── ns.xbm │ │ ├── ns_mask.xbm │ │ ├── numericsort.c │ │ ├── print_button.cxx │ │ ├── print_button.h │ │ ├── print_panel.cxx │ │ ├── print_panel.h │ │ ├── scandir_posix.c │ │ ├── scandir_win32.c │ │ ├── screen_xywh.cxx │ │ ├── slowarrow.h │ │ ├── tile.xpm │ │ ├── up.xbm │ │ ├── utf8_internal.h │ │ ├── vsnprintf.c │ │ └── xutf8 │ │ ├── COPYING │ │ ├── README.txt │ │ ├── Ximint.h │ │ ├── Xlibint.h │ │ ├── case.c │ │ ├── fl_wcwidth.c │ │ ├── headers │ │ ├── case.h │ │ ├── case_tbl.txt │ │ ├── dingbats_.h │ │ ├── spacing.h │ │ ├── spacing_tbl.txt │ │ ├── symbol_.h │ │ └── tbl.txt │ │ ├── imKStoUCS.c │ │ ├── is_right2left.c │ │ ├── is_spacing.c │ │ ├── keysym2Ucs.c │ │ ├── lcUniConv │ │ ├── 8bit_tab_to_h.c │ │ ├── COPYRIGHT │ │ ├── README.txt │ │ ├── armscii_8.h │ │ ├── ascii.h │ │ ├── big5.h │ │ ├── big5_emacs.h │ │ ├── cjk_tab_to_h.c │ │ ├── cp1133.h │ │ ├── cp1251.h │ │ ├── cp1255.h │ │ ├── cp1256.h │ │ ├── cp936ext.h │ │ ├── gb2312.h │ │ ├── gbk_tab_to_h.c │ │ ├── georgian_academy.h │ │ ├── georgian_ps.h │ │ ├── iso8859_1.h │ │ ├── iso8859_10.h │ │ ├── iso8859_11.h │ │ ├── iso8859_13.h │ │ ├── iso8859_14.h │ │ ├── iso8859_15.h │ │ ├── iso8859_16.h │ │ ├── iso8859_2.h │ │ ├── iso8859_3.h │ │ ├── iso8859_4.h │ │ ├── iso8859_5.h │ │ ├── iso8859_6.h │ │ ├── iso8859_7.h │ │ ├── iso8859_8.h │ │ ├── iso8859_9.h │ │ ├── iso8859_9e.h │ │ ├── jisx0201.h │ │ ├── jisx0208.h │ │ ├── jisx0212.h │ │ ├── koi8_c.h │ │ ├── koi8_r.h │ │ ├── koi8_u.h │ │ ├── ksc5601.h │ │ ├── mulelao.h │ │ ├── tatar_cyr.h │ │ ├── tcvn.h │ │ ├── tis620.h │ │ ├── ucs2be.h │ │ ├── utf8.h │ │ └── viscii.h │ │ ├── mk_wcwidth.c │ │ ├── test.c │ │ ├── test2.c │ │ ├── ucs2fontmap.c │ │ ├── ucs2fontmap.c.mini │ │ ├── utf8Input.c │ │ ├── utf8Utils.c │ │ ├── utf8Wrap.c │ │ └── utils │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── README.txt │ │ ├── case.sh │ │ ├── conv_gen.c │ │ ├── convert_map.c │ │ ├── create_table.c │ │ ├── euc_tw.c │ │ ├── non_spacing.sh │ │ └── tbl_gen.sh ├── hash-library │ ├── CMakeLists.txt │ ├── Version.txt │ └── hash-library │ │ ├── LICENSE │ │ ├── crc32.cpp │ │ ├── crc32.h │ │ ├── digest.cpp │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── keccak.cpp │ │ ├── keccak.h │ │ ├── md5.cpp │ │ ├── md5.h │ │ ├── readme.md │ │ ├── sha1.cpp │ │ ├── sha1.h │ │ ├── sha256.cpp │ │ ├── sha256.h │ │ ├── sha3.cpp │ │ └── sha3.h ├── libsdl │ ├── CMakeLists.txt │ ├── Version.txt │ └── sdl2 │ │ ├── BUGS.txt │ │ ├── CREDITS.txt │ │ ├── INSTALL.txt │ │ ├── LICENSE.txt │ │ ├── README-SDL.txt │ │ ├── README.md │ │ ├── TODO.txt │ │ ├── WhatsNew.txt │ │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_emscripten.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_linux.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_ngage.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_wingdk.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_xbox.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_revision.h.cmake │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ │ └── src │ │ ├── SDL.c │ │ ├── SDL_assert.c │ │ ├── SDL_assert_c.h │ │ ├── SDL_dataqueue.c │ │ ├── SDL_dataqueue.h │ │ ├── SDL_error.c │ │ ├── SDL_error_c.h │ │ ├── SDL_guid.c │ │ ├── SDL_hints.c │ │ ├── SDL_hints_c.h │ │ ├── SDL_internal.h │ │ ├── SDL_list.c │ │ ├── SDL_list.h │ │ ├── SDL_log.c │ │ ├── SDL_log_c.h │ │ ├── SDL_utils.c │ │ ├── SDL_utils_c.h │ │ ├── atomic │ │ ├── SDL_atomic.c │ │ └── SDL_spinlock.c │ │ ├── audio │ │ ├── SDL_audio.c │ │ ├── SDL_audio_c.h │ │ ├── SDL_audio_channel_converters.h │ │ ├── SDL_audio_resampler_filter.h │ │ ├── SDL_audiocvt.c │ │ ├── SDL_audiodev.c │ │ ├── SDL_audiodev_c.h │ │ ├── SDL_audiotypecvt.c │ │ ├── SDL_mixer.c │ │ ├── SDL_sysaudio.h │ │ ├── SDL_wave.c │ │ ├── SDL_wave.h │ │ ├── aaudio │ │ │ ├── SDL_aaudio.c │ │ │ ├── SDL_aaudio.h │ │ │ └── SDL_aaudiofuncs.h │ │ ├── alsa │ │ │ ├── SDL_alsa_audio.c │ │ │ └── SDL_alsa_audio.h │ │ ├── android │ │ │ ├── SDL_androidaudio.c │ │ │ └── SDL_androidaudio.h │ │ ├── arts │ │ │ ├── SDL_artsaudio.c │ │ │ └── SDL_artsaudio.h │ │ ├── coreaudio │ │ │ ├── SDL_coreaudio.h │ │ │ └── SDL_coreaudio.m │ │ ├── directsound │ │ │ ├── SDL_directsound.c │ │ │ └── SDL_directsound.h │ │ ├── disk │ │ │ ├── SDL_diskaudio.c │ │ │ └── SDL_diskaudio.h │ │ ├── dsp │ │ │ ├── SDL_dspaudio.c │ │ │ └── SDL_dspaudio.h │ │ ├── dummy │ │ │ ├── SDL_dummyaudio.c │ │ │ └── SDL_dummyaudio.h │ │ ├── emscripten │ │ │ ├── SDL_emscriptenaudio.c │ │ │ └── SDL_emscriptenaudio.h │ │ ├── esd │ │ │ ├── SDL_esdaudio.c │ │ │ └── SDL_esdaudio.h │ │ ├── fusionsound │ │ │ ├── SDL_fsaudio.c │ │ │ └── SDL_fsaudio.h │ │ ├── haiku │ │ │ ├── SDL_haikuaudio.cc │ │ │ └── SDL_haikuaudio.h │ │ ├── jack │ │ │ ├── SDL_jackaudio.c │ │ │ └── SDL_jackaudio.h │ │ ├── n3ds │ │ │ ├── SDL_n3dsaudio.c │ │ │ └── SDL_n3dsaudio.h │ │ ├── nacl │ │ │ ├── SDL_naclaudio.c │ │ │ └── SDL_naclaudio.h │ │ ├── nas │ │ │ ├── SDL_nasaudio.c │ │ │ └── SDL_nasaudio.h │ │ ├── netbsd │ │ │ ├── SDL_netbsdaudio.c │ │ │ └── SDL_netbsdaudio.h │ │ ├── openslES │ │ │ ├── SDL_openslES.c │ │ │ └── SDL_openslES.h │ │ ├── os2 │ │ │ ├── SDL_os2audio.c │ │ │ └── SDL_os2audio.h │ │ ├── paudio │ │ │ ├── SDL_paudio.c │ │ │ └── SDL_paudio.h │ │ ├── pipewire │ │ │ ├── SDL_pipewire.c │ │ │ └── SDL_pipewire.h │ │ ├── ps2 │ │ │ ├── SDL_ps2audio.c │ │ │ └── SDL_ps2audio.h │ │ ├── psp │ │ │ ├── SDL_pspaudio.c │ │ │ └── SDL_pspaudio.h │ │ ├── pulseaudio │ │ │ ├── SDL_pulseaudio.c │ │ │ └── SDL_pulseaudio.h │ │ ├── qsa │ │ │ ├── SDL_qsa_audio.c │ │ │ └── SDL_qsa_audio.h │ │ ├── sndio │ │ │ ├── SDL_sndioaudio.c │ │ │ └── SDL_sndioaudio.h │ │ ├── sun │ │ │ ├── SDL_sunaudio.c │ │ │ └── SDL_sunaudio.h │ │ ├── vita │ │ │ ├── SDL_vitaaudio.c │ │ │ └── SDL_vitaaudio.h │ │ ├── wasapi │ │ │ ├── SDL_wasapi.c │ │ │ ├── SDL_wasapi.h │ │ │ ├── SDL_wasapi_win32.c │ │ │ └── SDL_wasapi_winrt.cpp │ │ └── winmm │ │ │ ├── SDL_winmm.c │ │ │ └── SDL_winmm.h │ │ ├── core │ │ ├── android │ │ │ ├── SDL_android.c │ │ │ └── SDL_android.h │ │ ├── freebsd │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ ├── gdk │ │ │ ├── SDL_gdk.cpp │ │ │ └── SDL_gdk.h │ │ ├── linux │ │ │ ├── SDL_dbus.c │ │ │ ├── SDL_dbus.h │ │ │ ├── SDL_evdev.c │ │ │ ├── SDL_evdev.h │ │ │ ├── SDL_evdev_capabilities.c │ │ │ ├── SDL_evdev_capabilities.h │ │ │ ├── SDL_evdev_kbd.c │ │ │ ├── SDL_evdev_kbd.h │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ ├── SDL_fcitx.c │ │ │ ├── SDL_fcitx.h │ │ │ ├── SDL_ibus.c │ │ │ ├── SDL_ibus.h │ │ │ ├── SDL_ime.c │ │ │ ├── SDL_ime.h │ │ │ ├── SDL_sandbox.c │ │ │ ├── SDL_sandbox.h │ │ │ ├── SDL_threadprio.c │ │ │ ├── SDL_udev.c │ │ │ └── SDL_udev.h │ │ ├── openbsd │ │ │ ├── SDL_wscons.h │ │ │ ├── SDL_wscons_kbd.c │ │ │ └── SDL_wscons_mouse.c │ │ ├── os2 │ │ │ ├── SDL_os2.c │ │ │ ├── SDL_os2.h │ │ │ ├── geniconv │ │ │ │ ├── geniconv.c │ │ │ │ ├── geniconv.h │ │ │ │ ├── iconv.h │ │ │ │ ├── makefile │ │ │ │ ├── os2cp.c │ │ │ │ ├── os2cp.h │ │ │ │ ├── os2iconv.c │ │ │ │ ├── sys2utf8.c │ │ │ │ └── test.c │ │ │ └── iconv2.lbc │ │ ├── unix │ │ │ ├── SDL_poll.c │ │ │ └── SDL_poll.h │ │ ├── windows │ │ │ ├── SDL_directx.h │ │ │ ├── SDL_hid.c │ │ │ ├── SDL_hid.h │ │ │ ├── SDL_immdevice.c │ │ │ ├── SDL_immdevice.h │ │ │ ├── SDL_windows.c │ │ │ ├── SDL_windows.h │ │ │ ├── SDL_xinput.c │ │ │ └── SDL_xinput.h │ │ └── winrt │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ ├── SDL_winrtapp_common.h │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ └── SDL_winrtapp_xaml.h │ │ ├── cpuinfo │ │ └── SDL_cpuinfo.c │ │ ├── dynapi │ │ ├── SDL2.exports │ │ ├── SDL_dynapi.c │ │ ├── SDL_dynapi.h │ │ ├── SDL_dynapi_overrides.h │ │ ├── SDL_dynapi_procs.h │ │ └── gendynapi.pl │ │ ├── events │ │ ├── SDL_clipboardevents.c │ │ ├── SDL_clipboardevents_c.h │ │ ├── SDL_displayevents.c │ │ ├── SDL_displayevents_c.h │ │ ├── SDL_dropevents.c │ │ ├── SDL_dropevents_c.h │ │ ├── SDL_events.c │ │ ├── SDL_events_c.h │ │ ├── SDL_gesture.c │ │ ├── SDL_gesture_c.h │ │ ├── SDL_keyboard.c │ │ ├── SDL_keyboard_c.h │ │ ├── SDL_keysym_to_scancode.c │ │ ├── SDL_keysym_to_scancode_c.h │ │ ├── SDL_mouse.c │ │ ├── SDL_mouse_c.h │ │ ├── SDL_quit.c │ │ ├── SDL_scancode_tables.c │ │ ├── SDL_scancode_tables_c.h │ │ ├── SDL_touch.c │ │ ├── SDL_touch_c.h │ │ ├── SDL_windowevents.c │ │ ├── SDL_windowevents_c.h │ │ ├── blank_cursor.h │ │ ├── default_cursor.h │ │ ├── imKStoUCS.c │ │ ├── imKStoUCS.h │ │ ├── scancodes_ascii.h │ │ ├── scancodes_darwin.h │ │ ├── scancodes_linux.h │ │ ├── scancodes_windows.h │ │ └── scancodes_xfree86.h │ │ ├── file │ │ ├── SDL_rwops.c │ │ ├── cocoa │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ └── SDL_rwopsbundlesupport.m │ │ └── n3ds │ │ │ ├── SDL_rwopsromfs.c │ │ │ └── SDL_rwopsromfs.h │ │ ├── filesystem │ │ ├── android │ │ │ └── SDL_sysfilesystem.c │ │ ├── cocoa │ │ │ └── SDL_sysfilesystem.m │ │ ├── dummy │ │ │ └── SDL_sysfilesystem.c │ │ ├── emscripten │ │ │ └── SDL_sysfilesystem.c │ │ ├── haiku │ │ │ └── SDL_sysfilesystem.cc │ │ ├── n3ds │ │ │ └── SDL_sysfilesystem.c │ │ ├── nacl │ │ │ └── SDL_sysfilesystem.c │ │ ├── os2 │ │ │ └── SDL_sysfilesystem.c │ │ ├── ps2 │ │ │ └── SDL_sysfilesystem.c │ │ ├── psp │ │ │ └── SDL_sysfilesystem.c │ │ ├── riscos │ │ │ └── SDL_sysfilesystem.c │ │ ├── unix │ │ │ └── SDL_sysfilesystem.c │ │ ├── vita │ │ │ └── SDL_sysfilesystem.c │ │ ├── windows │ │ │ └── SDL_sysfilesystem.c │ │ └── winrt │ │ │ └── SDL_sysfilesystem.cpp │ │ ├── haptic │ │ ├── SDL_haptic.c │ │ ├── SDL_haptic_c.h │ │ ├── SDL_syshaptic.h │ │ ├── android │ │ │ ├── SDL_syshaptic.c │ │ │ └── SDL_syshaptic_c.h │ │ ├── darwin │ │ │ ├── SDL_syshaptic.c │ │ │ └── SDL_syshaptic_c.h │ │ ├── dummy │ │ │ └── SDL_syshaptic.c │ │ ├── linux │ │ │ └── SDL_syshaptic.c │ │ └── windows │ │ │ ├── SDL_dinputhaptic.c │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ ├── SDL_windowshaptic.c │ │ │ ├── SDL_windowshaptic_c.h │ │ │ ├── SDL_xinputhaptic.c │ │ │ └── SDL_xinputhaptic_c.h │ │ ├── hidapi │ │ ├── AUTHORS.txt │ │ ├── HACKING.txt │ │ ├── LICENSE-bsd.txt │ │ ├── LICENSE-gpl3.txt │ │ ├── LICENSE-orig.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.am │ │ ├── README.txt │ │ ├── SDL_hidapi.c │ │ ├── SDL_hidapi_c.h │ │ ├── android │ │ │ ├── hid.cpp │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ └── project.properties │ │ ├── bootstrap │ │ ├── configure.ac │ │ ├── doxygen │ │ │ └── Doxyfile │ │ ├── hidapi │ │ │ └── hidapi.h │ │ ├── hidtest │ │ │ ├── Makefile.am │ │ │ └── hidtest.cpp │ │ ├── ios │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ └── hid.m │ │ ├── libusb │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ ├── Makefile.freebsd │ │ │ ├── Makefile.linux │ │ │ ├── hid.c │ │ │ └── hidusb.cpp │ │ ├── linux │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ ├── README.txt │ │ │ ├── hid.c │ │ │ └── hidraw.cpp │ │ ├── m4 │ │ │ ├── ax_pthread.m4 │ │ │ └── pkg.m4 │ │ ├── mac │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ └── hid.c │ │ ├── pc │ │ │ ├── hidapi-hidraw.pc.in │ │ │ ├── hidapi-libusb.pc.in │ │ │ └── hidapi.pc.in │ │ ├── testgui │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ ├── Makefile.freebsd │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.mac │ │ │ ├── Makefile.mingw │ │ │ ├── TestGUI.app.in │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Signal11.icns │ │ │ ├── copy_to_bundle.sh │ │ │ ├── mac_support.cpp │ │ │ ├── mac_support.h │ │ │ ├── mac_support_cocoa.m │ │ │ ├── start.sh │ │ │ ├── test.cpp │ │ │ ├── testgui.sln │ │ │ └── testgui.vcproj │ │ ├── udev │ │ │ └── 99-hid.rules │ │ └── windows │ │ │ ├── Makefile-manual │ │ │ ├── Makefile.am │ │ │ ├── Makefile.mingw │ │ │ ├── ddk_build │ │ │ ├── hidapi.def │ │ │ ├── makefile │ │ │ └── sources │ │ │ ├── hid.c │ │ │ ├── hidapi.sln │ │ │ ├── hidapi.vcproj │ │ │ └── hidtest.vcproj │ │ ├── joystick │ │ ├── SDL_gamecontroller.c │ │ ├── SDL_gamecontrollerdb.h │ │ ├── SDL_joystick.c │ │ ├── SDL_joystick_c.h │ │ ├── SDL_sysjoystick.h │ │ ├── android │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── bsd │ │ │ └── SDL_bsdjoystick.c │ │ ├── check_8bitdo.sh │ │ ├── controller_type.c │ │ ├── controller_type.h │ │ ├── darwin │ │ │ ├── SDL_iokitjoystick.c │ │ │ └── SDL_iokitjoystick_c.h │ │ ├── dummy │ │ │ └── SDL_sysjoystick.c │ │ ├── emscripten │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── haiku │ │ │ └── SDL_haikujoystick.cc │ │ ├── hidapi │ │ │ ├── SDL_hidapi_combined.c │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ ├── SDL_hidapi_luna.c │ │ │ ├── SDL_hidapi_nintendo.h │ │ │ ├── SDL_hidapi_ps3.c │ │ │ ├── SDL_hidapi_ps4.c │ │ │ ├── SDL_hidapi_ps5.c │ │ │ ├── SDL_hidapi_rumble.c │ │ │ ├── SDL_hidapi_rumble.h │ │ │ ├── SDL_hidapi_shield.c │ │ │ ├── SDL_hidapi_stadia.c │ │ │ ├── SDL_hidapi_steam.c │ │ │ ├── SDL_hidapi_switch.c │ │ │ ├── SDL_hidapi_wii.c │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ ├── SDL_hidapijoystick.c │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ └── steam │ │ │ │ ├── controller_constants.h │ │ │ │ └── controller_structs.h │ │ ├── iphoneos │ │ │ ├── SDL_mfijoystick.m │ │ │ └── SDL_mfijoystick_c.h │ │ ├── linux │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── n3ds │ │ │ └── SDL_sysjoystick.c │ │ ├── os2 │ │ │ └── SDL_os2joystick.c │ │ ├── ps2 │ │ │ └── SDL_sysjoystick.c │ │ ├── psp │ │ │ └── SDL_sysjoystick.c │ │ ├── sort_controllers.py │ │ ├── steam │ │ │ ├── SDL_steamcontroller.c │ │ │ └── SDL_steamcontroller.h │ │ ├── usb_ids.h │ │ ├── virtual │ │ │ ├── SDL_virtualjoystick.c │ │ │ └── SDL_virtualjoystick_c.h │ │ ├── vita │ │ │ └── SDL_sysjoystick.c │ │ └── windows │ │ │ ├── SDL_dinputjoystick.c │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ ├── SDL_rawinputjoystick.c │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ ├── SDL_windows_gaming_input.c │ │ │ ├── SDL_windowsjoystick.c │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ ├── SDL_xinputjoystick.c │ │ │ └── SDL_xinputjoystick_c.h │ │ ├── libm │ │ ├── e_atan2.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_sqrt.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── math_libm.h │ │ ├── math_private.h │ │ ├── s_atan.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_fabs.c │ │ ├── s_floor.c │ │ ├── s_scalbn.c │ │ ├── s_sin.c │ │ └── s_tan.c │ │ ├── loadso │ │ ├── dlopen │ │ │ └── SDL_sysloadso.c │ │ ├── dummy │ │ │ └── SDL_sysloadso.c │ │ ├── os2 │ │ │ └── SDL_sysloadso.c │ │ └── windows │ │ │ └── SDL_sysloadso.c │ │ ├── locale │ │ ├── SDL_locale.c │ │ ├── SDL_syslocale.h │ │ ├── android │ │ │ └── SDL_syslocale.c │ │ ├── dummy │ │ │ └── SDL_syslocale.c │ │ ├── emscripten │ │ │ └── SDL_syslocale.c │ │ ├── haiku │ │ │ └── SDL_syslocale.cc │ │ ├── macosx │ │ │ └── SDL_syslocale.m │ │ ├── n3ds │ │ │ └── SDL_syslocale.c │ │ ├── unix │ │ │ └── SDL_syslocale.c │ │ ├── vita │ │ │ └── SDL_syslocale.c │ │ ├── windows │ │ │ └── SDL_syslocale.c │ │ └── winrt │ │ │ └── SDL_syslocale.c │ │ ├── main │ │ ├── android │ │ │ └── SDL_android_main.c │ │ ├── dummy │ │ │ └── SDL_dummy_main.c │ │ ├── gdk │ │ │ └── SDL_gdk_main.c │ │ ├── haiku │ │ │ ├── SDL_BApp.h │ │ │ ├── SDL_BeApp.cc │ │ │ └── SDL_BeApp.h │ │ ├── n3ds │ │ │ └── SDL_n3ds_main.c │ │ ├── nacl │ │ │ └── SDL_nacl_main.c │ │ ├── ngage │ │ │ └── SDL_ngage_main.cpp │ │ ├── ps2 │ │ │ └── SDL_ps2_main.c │ │ ├── psp │ │ │ └── SDL_psp_main.c │ │ ├── uikit │ │ │ └── SDL_uikit_main.c │ │ ├── windows │ │ │ ├── SDL_windows_main.c │ │ │ └── version.rc │ │ └── winrt │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ ├── SDL2-WinRTResources.rc │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ ├── misc │ │ ├── SDL_sysurl.h │ │ ├── SDL_url.c │ │ ├── android │ │ │ └── SDL_sysurl.c │ │ ├── dummy │ │ │ └── SDL_sysurl.c │ │ ├── emscripten │ │ │ └── SDL_sysurl.c │ │ ├── haiku │ │ │ └── SDL_sysurl.cc │ │ ├── ios │ │ │ └── SDL_sysurl.m │ │ ├── macosx │ │ │ └── SDL_sysurl.m │ │ ├── riscos │ │ │ └── SDL_sysurl.c │ │ ├── unix │ │ │ └── SDL_sysurl.c │ │ ├── vita │ │ │ └── SDL_sysurl.c │ │ ├── windows │ │ │ └── SDL_sysurl.c │ │ └── winrt │ │ │ └── SDL_sysurl.cpp │ │ ├── power │ │ ├── SDL_power.c │ │ ├── SDL_syspower.h │ │ ├── android │ │ │ └── SDL_syspower.c │ │ ├── emscripten │ │ │ └── SDL_syspower.c │ │ ├── haiku │ │ │ └── SDL_syspower.c │ │ ├── linux │ │ │ └── SDL_syspower.c │ │ ├── macosx │ │ │ └── SDL_syspower.c │ │ ├── n3ds │ │ │ └── SDL_syspower.c │ │ ├── psp │ │ │ └── SDL_syspower.c │ │ ├── uikit │ │ │ ├── SDL_syspower.h │ │ │ └── SDL_syspower.m │ │ ├── vita │ │ │ └── SDL_syspower.c │ │ ├── windows │ │ │ └── SDL_syspower.c │ │ └── winrt │ │ │ └── SDL_syspower.cpp │ │ ├── render │ │ ├── SDL_d3dmath.c │ │ ├── SDL_d3dmath.h │ │ ├── SDL_render.c │ │ ├── SDL_sysrender.h │ │ ├── SDL_yuv_sw.c │ │ ├── SDL_yuv_sw_c.h │ │ ├── direct3d │ │ │ ├── SDL_render_d3d.c │ │ │ ├── SDL_shaders_d3d.c │ │ │ └── SDL_shaders_d3d.h │ │ ├── direct3d11 │ │ │ ├── SDL_render_d3d11.c │ │ │ ├── SDL_render_winrt.cpp │ │ │ ├── SDL_render_winrt.h │ │ │ ├── SDL_shaders_d3d11.c │ │ │ └── SDL_shaders_d3d11.h │ │ ├── direct3d12 │ │ │ ├── SDL_render_d3d12.c │ │ │ ├── SDL_render_d3d12_xbox.cpp │ │ │ ├── SDL_render_d3d12_xbox.h │ │ │ ├── SDL_shaders_d3d12.c │ │ │ ├── SDL_shaders_d3d12.h │ │ │ ├── SDL_shaders_d3d12_xboxone.cpp │ │ │ └── SDL_shaders_d3d12_xboxseries.cpp │ │ ├── metal │ │ │ ├── SDL_render_metal.m │ │ │ ├── SDL_shaders_metal.metal │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ └── build-metal-shaders.sh │ │ ├── opengl │ │ │ ├── SDL_glfuncs.h │ │ │ ├── SDL_render_gl.c │ │ │ ├── SDL_shaders_gl.c │ │ │ └── SDL_shaders_gl.h │ │ ├── opengles │ │ │ ├── SDL_glesfuncs.h │ │ │ └── SDL_render_gles.c │ │ ├── opengles2 │ │ │ ├── SDL_gles2funcs.h │ │ │ ├── SDL_render_gles2.c │ │ │ ├── SDL_shaders_gles2.c │ │ │ └── SDL_shaders_gles2.h │ │ ├── ps2 │ │ │ └── SDL_render_ps2.c │ │ ├── psp │ │ │ └── SDL_render_psp.c │ │ ├── software │ │ │ ├── SDL_blendfillrect.c │ │ │ ├── SDL_blendfillrect.h │ │ │ ├── SDL_blendline.c │ │ │ ├── SDL_blendline.h │ │ │ ├── SDL_blendpoint.c │ │ │ ├── SDL_blendpoint.h │ │ │ ├── SDL_draw.h │ │ │ ├── SDL_drawline.c │ │ │ ├── SDL_drawline.h │ │ │ ├── SDL_drawpoint.c │ │ │ ├── SDL_drawpoint.h │ │ │ ├── SDL_render_sw.c │ │ │ ├── SDL_render_sw_c.h │ │ │ ├── SDL_rotate.c │ │ │ ├── SDL_rotate.h │ │ │ ├── SDL_triangle.c │ │ │ └── SDL_triangle.h │ │ └── vitagxm │ │ │ ├── SDL_render_vita_gxm.c │ │ │ ├── SDL_render_vita_gxm_memory.c │ │ │ ├── SDL_render_vita_gxm_memory.h │ │ │ ├── SDL_render_vita_gxm_shaders.h │ │ │ ├── SDL_render_vita_gxm_tools.c │ │ │ ├── SDL_render_vita_gxm_tools.h │ │ │ ├── SDL_render_vita_gxm_types.h │ │ │ └── shader_src │ │ │ ├── clear_f.cg │ │ │ ├── clear_v.cg │ │ │ ├── color_f.cg │ │ │ ├── color_v.cg │ │ │ ├── texture_f.cg │ │ │ └── texture_v.cg │ │ ├── sensor │ │ ├── SDL_sensor.c │ │ ├── SDL_sensor_c.h │ │ ├── SDL_syssensor.h │ │ ├── android │ │ │ ├── SDL_androidsensor.c │ │ │ └── SDL_androidsensor.h │ │ ├── coremotion │ │ │ ├── SDL_coremotionsensor.h │ │ │ └── SDL_coremotionsensor.m │ │ ├── dummy │ │ │ ├── SDL_dummysensor.c │ │ │ └── SDL_dummysensor.h │ │ ├── n3ds │ │ │ └── SDL_n3dssensor.c │ │ ├── vita │ │ │ ├── SDL_vitasensor.c │ │ │ └── SDL_vitasensor.h │ │ └── windows │ │ │ ├── SDL_windowssensor.c │ │ │ └── SDL_windowssensor.h │ │ ├── stdlib │ │ ├── SDL_crc16.c │ │ ├── SDL_crc32.c │ │ ├── SDL_getenv.c │ │ ├── SDL_iconv.c │ │ ├── SDL_malloc.c │ │ ├── SDL_mslibc.c │ │ ├── SDL_qsort.c │ │ ├── SDL_stdlib.c │ │ ├── SDL_string.c │ │ ├── SDL_strtokr.c │ │ └── SDL_vacopy.h │ │ ├── test │ │ ├── SDL_test_assert.c │ │ ├── SDL_test_common.c │ │ ├── SDL_test_compare.c │ │ ├── SDL_test_crc32.c │ │ ├── SDL_test_font.c │ │ ├── SDL_test_fuzzer.c │ │ ├── SDL_test_harness.c │ │ ├── SDL_test_imageBlit.c │ │ ├── SDL_test_imageBlitBlend.c │ │ ├── SDL_test_imageFace.c │ │ ├── SDL_test_imagePrimitives.c │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ ├── SDL_test_log.c │ │ ├── SDL_test_md5.c │ │ ├── SDL_test_memory.c │ │ └── SDL_test_random.c │ │ ├── thread │ │ ├── SDL_systhread.h │ │ ├── SDL_thread.c │ │ ├── SDL_thread_c.h │ │ ├── generic │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_syscond_c.h │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ │ ├── n3ds │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── ngage │ │ │ ├── SDL_sysmutex.cpp │ │ │ ├── SDL_syssem.cpp │ │ │ ├── SDL_systhread.cpp │ │ │ └── SDL_systhread_c.h │ │ ├── os2 │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ ├── SDL_systls.c │ │ │ └── SDL_systls_c.h │ │ ├── ps2 │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── psp │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── pthread │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ │ ├── stdcpp │ │ │ ├── SDL_syscond.cpp │ │ │ ├── SDL_sysmutex.cpp │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_systhread.cpp │ │ │ └── SDL_systhread_c.h │ │ ├── vita │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ └── windows │ │ │ ├── SDL_syscond_cv.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ ├── SDL_systhread_c.h │ │ │ └── SDL_systls.c │ │ ├── timer │ │ ├── SDL_timer.c │ │ ├── SDL_timer_c.h │ │ ├── dummy │ │ │ └── SDL_systimer.c │ │ ├── haiku │ │ │ └── SDL_systimer.c │ │ ├── n3ds │ │ │ └── SDL_systimer.c │ │ ├── ngage │ │ │ └── SDL_systimer.cpp │ │ ├── os2 │ │ │ └── SDL_systimer.c │ │ ├── ps2 │ │ │ └── SDL_systimer.c │ │ ├── psp │ │ │ └── SDL_systimer.c │ │ ├── unix │ │ │ └── SDL_systimer.c │ │ ├── vita │ │ │ └── SDL_systimer.c │ │ └── windows │ │ │ └── SDL_systimer.c │ │ └── video │ │ ├── SDL_RLEaccel.c │ │ ├── SDL_RLEaccel_c.h │ │ ├── SDL_blit.c │ │ ├── SDL_blit.h │ │ ├── SDL_blit_0.c │ │ ├── SDL_blit_1.c │ │ ├── SDL_blit_A.c │ │ ├── SDL_blit_N.c │ │ ├── SDL_blit_auto.c │ │ ├── SDL_blit_auto.h │ │ ├── SDL_blit_copy.c │ │ ├── SDL_blit_copy.h │ │ ├── SDL_blit_slow.c │ │ ├── SDL_blit_slow.h │ │ ├── SDL_bmp.c │ │ ├── SDL_clipboard.c │ │ ├── SDL_egl.c │ │ ├── SDL_egl_c.h │ │ ├── SDL_fillrect.c │ │ ├── SDL_pixels.c │ │ ├── SDL_pixels_c.h │ │ ├── SDL_rect.c │ │ ├── SDL_rect_c.h │ │ ├── SDL_rect_impl.h │ │ ├── SDL_shape.c │ │ ├── SDL_shape_internals.h │ │ ├── SDL_stretch.c │ │ ├── SDL_surface.c │ │ ├── SDL_sysvideo.h │ │ ├── SDL_video.c │ │ ├── SDL_vulkan_internal.h │ │ ├── SDL_vulkan_utils.c │ │ ├── SDL_yuv.c │ │ ├── SDL_yuv_c.h │ │ ├── android │ │ ├── SDL_androidclipboard.c │ │ ├── SDL_androidclipboard.h │ │ ├── SDL_androidevents.c │ │ ├── SDL_androidevents.h │ │ ├── SDL_androidgl.c │ │ ├── SDL_androidgl.h │ │ ├── SDL_androidkeyboard.c │ │ ├── SDL_androidkeyboard.h │ │ ├── SDL_androidmessagebox.c │ │ ├── SDL_androidmessagebox.h │ │ ├── SDL_androidmouse.c │ │ ├── SDL_androidmouse.h │ │ ├── SDL_androidtouch.c │ │ ├── SDL_androidtouch.h │ │ ├── SDL_androidvideo.c │ │ ├── SDL_androidvideo.h │ │ ├── SDL_androidvulkan.c │ │ ├── SDL_androidvulkan.h │ │ ├── SDL_androidwindow.c │ │ └── SDL_androidwindow.h │ │ ├── arm │ │ ├── pixman-arm-asm.h │ │ ├── pixman-arm-neon-asm.S │ │ ├── pixman-arm-neon-asm.h │ │ ├── pixman-arm-simd-asm.S │ │ └── pixman-arm-simd-asm.h │ │ ├── cocoa │ │ ├── SDL_cocoaclipboard.h │ │ ├── SDL_cocoaclipboard.m │ │ ├── SDL_cocoaevents.h │ │ ├── SDL_cocoaevents.m │ │ ├── SDL_cocoakeyboard.h │ │ ├── SDL_cocoakeyboard.m │ │ ├── SDL_cocoamessagebox.h │ │ ├── SDL_cocoamessagebox.m │ │ ├── SDL_cocoametalview.h │ │ ├── SDL_cocoametalview.m │ │ ├── SDL_cocoamodes.h │ │ ├── SDL_cocoamodes.m │ │ ├── SDL_cocoamouse.h │ │ ├── SDL_cocoamouse.m │ │ ├── SDL_cocoaopengl.h │ │ ├── SDL_cocoaopengl.m │ │ ├── SDL_cocoaopengles.h │ │ ├── SDL_cocoaopengles.m │ │ ├── SDL_cocoashape.h │ │ ├── SDL_cocoashape.m │ │ ├── SDL_cocoavideo.h │ │ ├── SDL_cocoavideo.m │ │ ├── SDL_cocoavulkan.h │ │ ├── SDL_cocoavulkan.m │ │ ├── SDL_cocoawindow.h │ │ └── SDL_cocoawindow.m │ │ ├── directfb │ │ ├── SDL_DirectFB_WM.c │ │ ├── SDL_DirectFB_WM.h │ │ ├── SDL_DirectFB_dyn.c │ │ ├── SDL_DirectFB_dyn.h │ │ ├── SDL_DirectFB_events.c │ │ ├── SDL_DirectFB_events.h │ │ ├── SDL_DirectFB_modes.c │ │ ├── SDL_DirectFB_modes.h │ │ ├── SDL_DirectFB_mouse.c │ │ ├── SDL_DirectFB_mouse.h │ │ ├── SDL_DirectFB_opengl.c │ │ ├── SDL_DirectFB_opengl.h │ │ ├── SDL_DirectFB_render.c │ │ ├── SDL_DirectFB_render.h │ │ ├── SDL_DirectFB_shape.c │ │ ├── SDL_DirectFB_shape.h │ │ ├── SDL_DirectFB_video.c │ │ ├── SDL_DirectFB_video.h │ │ ├── SDL_DirectFB_vulkan.c │ │ ├── SDL_DirectFB_vulkan.h │ │ ├── SDL_DirectFB_window.c │ │ └── SDL_DirectFB_window.h │ │ ├── dummy │ │ ├── SDL_nullevents.c │ │ ├── SDL_nullevents_c.h │ │ ├── SDL_nullframebuffer.c │ │ ├── SDL_nullframebuffer_c.h │ │ ├── SDL_nullvideo.c │ │ └── SDL_nullvideo.h │ │ ├── emscripten │ │ ├── SDL_emscriptenevents.c │ │ ├── SDL_emscriptenevents.h │ │ ├── SDL_emscriptenframebuffer.c │ │ ├── SDL_emscriptenframebuffer.h │ │ ├── SDL_emscriptenmouse.c │ │ ├── SDL_emscriptenmouse.h │ │ ├── SDL_emscriptenopengles.c │ │ ├── SDL_emscriptenopengles.h │ │ ├── SDL_emscriptenvideo.c │ │ └── SDL_emscriptenvideo.h │ │ ├── haiku │ │ ├── SDL_BApp.h │ │ ├── SDL_BWin.h │ │ ├── SDL_bclipboard.cc │ │ ├── SDL_bclipboard.h │ │ ├── SDL_bevents.cc │ │ ├── SDL_bevents.h │ │ ├── SDL_bframebuffer.cc │ │ ├── SDL_bframebuffer.h │ │ ├── SDL_bkeyboard.cc │ │ ├── SDL_bkeyboard.h │ │ ├── SDL_bmessagebox.cc │ │ ├── SDL_bmessagebox.h │ │ ├── SDL_bmodes.cc │ │ ├── SDL_bmodes.h │ │ ├── SDL_bopengl.cc │ │ ├── SDL_bopengl.h │ │ ├── SDL_bvideo.cc │ │ ├── SDL_bvideo.h │ │ ├── SDL_bwindow.cc │ │ └── SDL_bwindow.h │ │ ├── khronos │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── vulkan │ │ │ ├── vk_icd.h │ │ │ ├── vk_layer.h │ │ │ ├── vk_platform.h │ │ │ ├── vk_sdk_platform.h │ │ │ ├── vulkan.h │ │ │ ├── vulkan.hpp │ │ │ ├── vulkan_android.h │ │ │ ├── vulkan_beta.h │ │ │ ├── vulkan_core.h │ │ │ ├── vulkan_directfb.h │ │ │ ├── vulkan_enums.hpp │ │ │ ├── vulkan_format_traits.hpp │ │ │ ├── vulkan_fuchsia.h │ │ │ ├── vulkan_funcs.hpp │ │ │ ├── vulkan_ggp.h │ │ │ ├── vulkan_handles.hpp │ │ │ ├── vulkan_hash.hpp │ │ │ ├── vulkan_ios.h │ │ │ ├── vulkan_macos.h │ │ │ ├── vulkan_metal.h │ │ │ ├── vulkan_raii.hpp │ │ │ ├── vulkan_screen.h │ │ │ ├── vulkan_static_assertions.hpp │ │ │ ├── vulkan_structs.hpp │ │ │ ├── vulkan_to_string.hpp │ │ │ ├── vulkan_vi.h │ │ │ ├── vulkan_wayland.h │ │ │ ├── vulkan_win32.h │ │ │ ├── vulkan_xcb.h │ │ │ ├── vulkan_xlib.h │ │ │ └── vulkan_xlib_xrandr.h │ │ ├── kmsdrm │ │ ├── SDL_kmsdrmdyn.c │ │ ├── SDL_kmsdrmdyn.h │ │ ├── SDL_kmsdrmevents.c │ │ ├── SDL_kmsdrmevents.h │ │ ├── SDL_kmsdrmmouse.c │ │ ├── SDL_kmsdrmmouse.h │ │ ├── SDL_kmsdrmopengles.c │ │ ├── SDL_kmsdrmopengles.h │ │ ├── SDL_kmsdrmsym.h │ │ ├── SDL_kmsdrmvideo.c │ │ ├── SDL_kmsdrmvideo.h │ │ ├── SDL_kmsdrmvulkan.c │ │ └── SDL_kmsdrmvulkan.h │ │ ├── n3ds │ │ ├── SDL_n3dsevents.c │ │ ├── SDL_n3dsevents_c.h │ │ ├── SDL_n3dsframebuffer.c │ │ ├── SDL_n3dsframebuffer_c.h │ │ ├── SDL_n3dsswkb.c │ │ ├── SDL_n3dsswkb.h │ │ ├── SDL_n3dstouch.c │ │ ├── SDL_n3dstouch.h │ │ ├── SDL_n3dsvideo.c │ │ └── SDL_n3dsvideo.h │ │ ├── nacl │ │ ├── SDL_naclevents.c │ │ ├── SDL_naclevents_c.h │ │ ├── SDL_naclglue.c │ │ ├── SDL_naclopengles.c │ │ ├── SDL_naclopengles.h │ │ ├── SDL_naclvideo.c │ │ ├── SDL_naclvideo.h │ │ ├── SDL_naclwindow.c │ │ └── SDL_naclwindow.h │ │ ├── ngage │ │ ├── SDL_ngageevents.cpp │ │ ├── SDL_ngageevents_c.h │ │ ├── SDL_ngageframebuffer.cpp │ │ ├── SDL_ngageframebuffer_c.h │ │ ├── SDL_ngagevideo.cpp │ │ ├── SDL_ngagevideo.h │ │ ├── SDL_ngagewindow.cpp │ │ └── SDL_ngagewindow.h │ │ ├── offscreen │ │ ├── SDL_offscreenevents.c │ │ ├── SDL_offscreenevents_c.h │ │ ├── SDL_offscreenframebuffer.c │ │ ├── SDL_offscreenframebuffer_c.h │ │ ├── SDL_offscreenopengles.c │ │ ├── SDL_offscreenopengles.h │ │ ├── SDL_offscreenvideo.c │ │ ├── SDL_offscreenvideo.h │ │ ├── SDL_offscreenwindow.c │ │ └── SDL_offscreenwindow.h │ │ ├── os2 │ │ ├── SDL_gradd.h │ │ ├── SDL_os2dive.c │ │ ├── SDL_os2messagebox.c │ │ ├── SDL_os2messagebox.h │ │ ├── SDL_os2mouse.c │ │ ├── SDL_os2mouse.h │ │ ├── SDL_os2output.h │ │ ├── SDL_os2util.c │ │ ├── SDL_os2util.h │ │ ├── SDL_os2video.c │ │ ├── SDL_os2video.h │ │ └── SDL_os2vman.c │ │ ├── pandora │ │ ├── SDL_pandora.c │ │ ├── SDL_pandora.h │ │ ├── SDL_pandora_events.c │ │ └── SDL_pandora_events.h │ │ ├── ps2 │ │ ├── SDL_ps2video.c │ │ └── SDL_ps2video.h │ │ ├── psp │ │ ├── SDL_pspevents.c │ │ ├── SDL_pspevents_c.h │ │ ├── SDL_pspgl.c │ │ ├── SDL_pspgl_c.h │ │ ├── SDL_pspmouse.c │ │ ├── SDL_pspmouse_c.h │ │ ├── SDL_pspvideo.c │ │ └── SDL_pspvideo.h │ │ ├── qnx │ │ ├── gl.c │ │ ├── keyboard.c │ │ ├── sdl_qnx.h │ │ └── video.c │ │ ├── raspberry │ │ ├── SDL_rpievents.c │ │ ├── SDL_rpievents_c.h │ │ ├── SDL_rpimouse.c │ │ ├── SDL_rpimouse.h │ │ ├── SDL_rpiopengles.c │ │ ├── SDL_rpiopengles.h │ │ ├── SDL_rpivideo.c │ │ └── SDL_rpivideo.h │ │ ├── riscos │ │ ├── SDL_riscosdefs.h │ │ ├── SDL_riscosevents.c │ │ ├── SDL_riscosevents_c.h │ │ ├── SDL_riscosframebuffer.c │ │ ├── SDL_riscosframebuffer_c.h │ │ ├── SDL_riscosmessagebox.c │ │ ├── SDL_riscosmessagebox.h │ │ ├── SDL_riscosmodes.c │ │ ├── SDL_riscosmodes.h │ │ ├── SDL_riscosmouse.c │ │ ├── SDL_riscosmouse.h │ │ ├── SDL_riscosvideo.c │ │ ├── SDL_riscosvideo.h │ │ ├── SDL_riscoswindow.c │ │ ├── SDL_riscoswindow.h │ │ └── scancodes_riscos.h │ │ ├── sdlgenblit.pl │ │ ├── uikit │ │ ├── SDL_uikitappdelegate.h │ │ ├── SDL_uikitappdelegate.m │ │ ├── SDL_uikitclipboard.h │ │ ├── SDL_uikitclipboard.m │ │ ├── SDL_uikitevents.h │ │ ├── SDL_uikitevents.m │ │ ├── SDL_uikitmessagebox.h │ │ ├── SDL_uikitmessagebox.m │ │ ├── SDL_uikitmetalview.h │ │ ├── SDL_uikitmetalview.m │ │ ├── SDL_uikitmodes.h │ │ ├── SDL_uikitmodes.m │ │ ├── SDL_uikitopengles.h │ │ ├── SDL_uikitopengles.m │ │ ├── SDL_uikitopenglview.h │ │ ├── SDL_uikitopenglview.m │ │ ├── SDL_uikitvideo.h │ │ ├── SDL_uikitvideo.m │ │ ├── SDL_uikitview.h │ │ ├── SDL_uikitview.m │ │ ├── SDL_uikitviewcontroller.h │ │ ├── SDL_uikitviewcontroller.m │ │ ├── SDL_uikitvulkan.h │ │ ├── SDL_uikitvulkan.m │ │ ├── SDL_uikitwindow.h │ │ └── SDL_uikitwindow.m │ │ ├── vita │ │ ├── SDL_vitaframebuffer.c │ │ ├── SDL_vitaframebuffer.h │ │ ├── SDL_vitagl_pvr.c │ │ ├── SDL_vitagl_pvr_c.h │ │ ├── SDL_vitagles.c │ │ ├── SDL_vitagles_c.h │ │ ├── SDL_vitagles_pvr.c │ │ ├── SDL_vitagles_pvr_c.h │ │ ├── SDL_vitakeyboard.c │ │ ├── SDL_vitakeyboard.h │ │ ├── SDL_vitamessagebox.c │ │ ├── SDL_vitamessagebox.h │ │ ├── SDL_vitamouse.c │ │ ├── SDL_vitamouse_c.h │ │ ├── SDL_vitatouch.c │ │ ├── SDL_vitatouch.h │ │ ├── SDL_vitavideo.c │ │ └── SDL_vitavideo.h │ │ ├── vivante │ │ ├── SDL_vivanteopengles.c │ │ ├── SDL_vivanteopengles.h │ │ ├── SDL_vivanteplatform.c │ │ ├── SDL_vivanteplatform.h │ │ ├── SDL_vivantevideo.c │ │ ├── SDL_vivantevideo.h │ │ ├── SDL_vivantevulkan.c │ │ └── SDL_vivantevulkan.h │ │ ├── wayland │ │ ├── SDL_waylandclipboard.c │ │ ├── SDL_waylandclipboard.h │ │ ├── SDL_waylanddatamanager.c │ │ ├── SDL_waylanddatamanager.h │ │ ├── SDL_waylanddyn.c │ │ ├── SDL_waylanddyn.h │ │ ├── SDL_waylandevents.c │ │ ├── SDL_waylandevents_c.h │ │ ├── SDL_waylandkeyboard.c │ │ ├── SDL_waylandkeyboard.h │ │ ├── SDL_waylandmessagebox.c │ │ ├── SDL_waylandmessagebox.h │ │ ├── SDL_waylandmouse.c │ │ ├── SDL_waylandmouse.h │ │ ├── SDL_waylandopengles.c │ │ ├── SDL_waylandopengles.h │ │ ├── SDL_waylandsym.h │ │ ├── SDL_waylandtouch.c │ │ ├── SDL_waylandtouch.h │ │ ├── SDL_waylandvideo.c │ │ ├── SDL_waylandvideo.h │ │ ├── SDL_waylandvulkan.c │ │ ├── SDL_waylandvulkan.h │ │ ├── SDL_waylandwindow.c │ │ └── SDL_waylandwindow.h │ │ ├── windows │ │ ├── SDL_msctf.h │ │ ├── SDL_vkeys.h │ │ ├── SDL_windowsclipboard.c │ │ ├── SDL_windowsclipboard.h │ │ ├── SDL_windowsevents.c │ │ ├── SDL_windowsevents.h │ │ ├── SDL_windowsframebuffer.c │ │ ├── SDL_windowsframebuffer.h │ │ ├── SDL_windowskeyboard.c │ │ ├── SDL_windowskeyboard.h │ │ ├── SDL_windowsmessagebox.c │ │ ├── SDL_windowsmessagebox.h │ │ ├── SDL_windowsmodes.c │ │ ├── SDL_windowsmodes.h │ │ ├── SDL_windowsmouse.c │ │ ├── SDL_windowsmouse.h │ │ ├── SDL_windowsopengl.c │ │ ├── SDL_windowsopengl.h │ │ ├── SDL_windowsopengles.c │ │ ├── SDL_windowsopengles.h │ │ ├── SDL_windowsshape.c │ │ ├── SDL_windowsshape.h │ │ ├── SDL_windowsvideo.c │ │ ├── SDL_windowsvideo.h │ │ ├── SDL_windowsvulkan.c │ │ ├── SDL_windowsvulkan.h │ │ ├── SDL_windowswindow.c │ │ ├── SDL_windowswindow.h │ │ └── wmmsg.h │ │ ├── winrt │ │ ├── SDL_winrtevents.cpp │ │ ├── SDL_winrtevents_c.h │ │ ├── SDL_winrtgamebar.cpp │ │ ├── SDL_winrtgamebar_cpp.h │ │ ├── SDL_winrtkeyboard.cpp │ │ ├── SDL_winrtmessagebox.cpp │ │ ├── SDL_winrtmessagebox.h │ │ ├── SDL_winrtmouse.cpp │ │ ├── SDL_winrtmouse_c.h │ │ ├── SDL_winrtopengles.cpp │ │ ├── SDL_winrtopengles.h │ │ ├── SDL_winrtpointerinput.cpp │ │ ├── SDL_winrtvideo.cpp │ │ └── SDL_winrtvideo_cpp.h │ │ ├── x11 │ │ ├── SDL_x11clipboard.c │ │ ├── SDL_x11clipboard.h │ │ ├── SDL_x11dyn.c │ │ ├── SDL_x11dyn.h │ │ ├── SDL_x11events.c │ │ ├── SDL_x11events.h │ │ ├── SDL_x11framebuffer.c │ │ ├── SDL_x11framebuffer.h │ │ ├── SDL_x11keyboard.c │ │ ├── SDL_x11keyboard.h │ │ ├── SDL_x11messagebox.c │ │ ├── SDL_x11messagebox.h │ │ ├── SDL_x11modes.c │ │ ├── SDL_x11modes.h │ │ ├── SDL_x11mouse.c │ │ ├── SDL_x11mouse.h │ │ ├── SDL_x11opengl.c │ │ ├── SDL_x11opengl.h │ │ ├── SDL_x11opengles.c │ │ ├── SDL_x11opengles.h │ │ ├── SDL_x11shape.c │ │ ├── SDL_x11shape.h │ │ ├── SDL_x11sym.h │ │ ├── SDL_x11touch.c │ │ ├── SDL_x11touch.h │ │ ├── SDL_x11video.c │ │ ├── SDL_x11video.h │ │ ├── SDL_x11vulkan.c │ │ ├── SDL_x11vulkan.h │ │ ├── SDL_x11window.c │ │ ├── SDL_x11window.h │ │ ├── SDL_x11xfixes.c │ │ ├── SDL_x11xfixes.h │ │ ├── SDL_x11xinput2.c │ │ ├── SDL_x11xinput2.h │ │ ├── edid-parse.c │ │ └── edid.h │ │ └── yuv2rgb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── yuv_rgb.c │ │ ├── yuv_rgb.h │ │ ├── yuv_rgb_lsx_func.h │ │ ├── yuv_rgb_sse_func.h │ │ └── yuv_rgb_std_func.h ├── lua │ ├── CMakeLists.txt │ ├── Version.txt │ └── lua │ │ ├── Makefile │ │ ├── README │ │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── ljumptab.h │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── lopnames.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── rapidjson │ ├── CMakeLists.txt │ ├── Version.txt │ └── rapidjson │ │ ├── CHANGELOG.md │ │ ├── contrib │ │ └── natvis │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── rapidjson.natvis │ │ ├── include │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ │ ├── license.txt │ │ ├── readme.md │ │ └── readme.zh-cn.md └── sol2 │ ├── CMakeLists.txt │ ├── Version.txt │ └── sol2 │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS.md │ ├── LICENSE.txt │ ├── README.md │ ├── include │ └── sol │ │ ├── as_args.hpp │ │ ├── as_returns.hpp │ │ ├── assert.hpp │ │ ├── base_traits.hpp │ │ ├── bind_traits.hpp │ │ ├── bytecode.hpp │ │ ├── call.hpp │ │ ├── compatibility.hpp │ │ ├── compatibility │ │ ├── compat-5.3.c.h │ │ ├── compat-5.3.h │ │ ├── compat-5.4.h │ │ └── lua_version.hpp │ │ ├── config.hpp │ │ ├── coroutine.hpp │ │ ├── debug.hpp │ │ ├── demangle.hpp │ │ ├── deprecate.hpp │ │ ├── detail │ │ └── build_version.hpp │ │ ├── dump_handler.hpp │ │ ├── ebco.hpp │ │ ├── environment.hpp │ │ ├── epilogue.hpp │ │ ├── error.hpp │ │ ├── error_handler.hpp │ │ ├── forward.hpp │ │ ├── forward_detail.hpp │ │ ├── function.hpp │ │ ├── function_result.hpp │ │ ├── function_types.hpp │ │ ├── function_types_core.hpp │ │ ├── function_types_overloaded.hpp │ │ ├── function_types_stateful.hpp │ │ ├── function_types_stateless.hpp │ │ ├── function_types_templated.hpp │ │ ├── in_place.hpp │ │ ├── inheritance.hpp │ │ ├── load_result.hpp │ │ ├── lua_table.hpp │ │ ├── lua_value.hpp │ │ ├── make_reference.hpp │ │ ├── metatable.hpp │ │ ├── object.hpp │ │ ├── object_base.hpp │ │ ├── optional.hpp │ │ ├── optional_implementation.hpp │ │ ├── overload.hpp │ │ ├── packaged_coroutine.hpp │ │ ├── pairs_iterator.hpp │ │ ├── pointer_like.hpp │ │ ├── policies.hpp │ │ ├── prologue.hpp │ │ ├── property.hpp │ │ ├── protect.hpp │ │ ├── protected_function.hpp │ │ ├── protected_function_result.hpp │ │ ├── protected_handler.hpp │ │ ├── proxy_base.hpp │ │ ├── raii.hpp │ │ ├── reference.hpp │ │ ├── resolve.hpp │ │ ├── sol.hpp │ │ ├── stack.hpp │ │ ├── stack │ │ └── detail │ │ │ └── pairs.hpp │ │ ├── stack_check.hpp │ │ ├── stack_check_get.hpp │ │ ├── stack_check_get_qualified.hpp │ │ ├── stack_check_get_unqualified.hpp │ │ ├── stack_check_qualified.hpp │ │ ├── stack_check_unqualified.hpp │ │ ├── stack_core.hpp │ │ ├── stack_field.hpp │ │ ├── stack_get.hpp │ │ ├── stack_get_qualified.hpp │ │ ├── stack_get_unqualified.hpp │ │ ├── stack_guard.hpp │ │ ├── stack_iterator.hpp │ │ ├── stack_pop.hpp │ │ ├── stack_probe.hpp │ │ ├── stack_proxy.hpp │ │ ├── stack_proxy_base.hpp │ │ ├── stack_push.hpp │ │ ├── stack_reference.hpp │ │ ├── state.hpp │ │ ├── state_handling.hpp │ │ ├── state_view.hpp │ │ ├── string_view.hpp │ │ ├── table.hpp │ │ ├── table_core.hpp │ │ ├── table_iterator.hpp │ │ ├── table_proxy.hpp │ │ ├── thread.hpp │ │ ├── tie.hpp │ │ ├── traits.hpp │ │ ├── trampoline.hpp │ │ ├── tuple.hpp │ │ ├── types.hpp │ │ ├── unicode.hpp │ │ ├── unique_usertype_traits.hpp │ │ ├── unsafe_function.hpp │ │ ├── unsafe_function_result.hpp │ │ ├── userdata.hpp │ │ ├── usertype.hpp │ │ ├── usertype_container.hpp │ │ ├── usertype_container_launch.hpp │ │ ├── usertype_core.hpp │ │ ├── usertype_proxy.hpp │ │ ├── usertype_storage.hpp │ │ ├── usertype_traits.hpp │ │ ├── variadic_args.hpp │ │ ├── variadic_results.hpp │ │ ├── version.hpp │ │ └── wrapper.hpp │ └── sol2.natvis ├── tools ├── audio │ ├── audio_tools_common │ │ ├── AudioUtils.cpp │ │ ├── AudioUtils.h │ │ ├── CMakeLists.txt │ │ ├── Lcd.cpp │ │ ├── Lcd.h │ │ ├── MidiConvert.cpp │ │ ├── MidiConvert.h │ │ ├── MidiTypes.cpp │ │ ├── MidiTypes.h │ │ ├── MidiUtils.cpp │ │ ├── MidiUtils.h │ │ ├── Module.cpp │ │ ├── Module.h │ │ ├── ModuleFileUtils.cpp │ │ ├── ModuleFileUtils.h │ │ ├── PsxAdsrEnvelope.h │ │ ├── PsxPatch.cpp │ │ ├── PsxPatch.h │ │ ├── PsxPatchGroup.cpp │ │ ├── PsxPatchGroup.h │ │ ├── PsxPatchSample.cpp │ │ ├── PsxPatchSample.h │ │ ├── PsxPatchVoice.cpp │ │ ├── PsxPatchVoice.h │ │ ├── Sequence.cpp │ │ ├── Sequence.h │ │ ├── Track.cpp │ │ ├── Track.h │ │ ├── TrackCmd.cpp │ │ ├── TrackCmd.h │ │ ├── VagUtils.cpp │ │ ├── VagUtils.h │ │ ├── WavUtils.cpp │ │ ├── WavUtils.h │ │ ├── WmdFileTypes.cpp │ │ └── WmdFileTypes.h │ ├── lcd_tool │ │ ├── CMakeLists.txt │ │ └── LcdTool.cpp │ ├── vag_tool │ │ ├── CMakeLists.txt │ │ └── VagTool.cpp │ └── wmd_tool │ │ ├── CMakeLists.txt │ │ └── WmdTool.cpp ├── linux │ └── make-psydoom-linux-appimage.sh ├── other │ └── pal_tool │ │ ├── CMakeLists.txt │ │ └── PalTool.cpp └── reversing │ ├── doom_disassemble │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── ProgElems.h │ ├── ProgElems_DestructionDerby.cpp │ └── ProgElems_Doom.cpp │ ├── psxexe_sigmatcher │ ├── CMakeLists.txt │ ├── FuncSignature.cpp │ ├── FuncSignature.h │ └── Main.cpp │ ├── psxobj_siggen │ ├── CMakeLists.txt │ ├── FuncSignature.cpp │ ├── FuncSignature.h │ ├── Main.cpp │ ├── ObjFileData.h │ ├── ObjFileParser.cpp │ └── ObjFileParser.h │ ├── reversing_common │ ├── CMakeLists.txt │ ├── ConstEvalRegState.h │ ├── ConstInstructionEvaluator.cpp │ ├── ConstInstructionEvaluator.h │ ├── CpuGpr.h │ ├── CpuInstruction.cpp │ ├── CpuInstruction.h │ ├── CpuOpcode.h │ ├── DisassemblyPrinter.cpp │ ├── DisassemblyPrinter.h │ ├── ExeFile.cpp │ ├── ExeFile.h │ ├── ExeWord.h │ ├── FatalErrors.cpp │ ├── FatalErrors.h │ ├── FileUtils.cpp │ ├── FileUtils.h │ ├── InstructionCommenter.cpp │ ├── InstructionCommenter.h │ ├── JRInstHandler.h │ ├── PrintUtils.cpp │ ├── PrintUtils.h │ ├── ProgElem.cpp │ ├── ProgElem.h │ ├── PseudoCppPrinter.cpp │ ├── PseudoCppPrinter.h │ ├── PseudoCppPrinter_InstPrint.cpp │ ├── PseudoCppPrinter_InstPrint.h │ ├── TextIStream.cpp │ └── TextIStream.h │ └── vram_dump_getrect │ ├── CMakeLists.txt │ └── Main.cpp ├── vulkan_gl ├── AbstractFixedQTreeMemMgr.h ├── AlphaMode.h ├── ApiLayers.cpp ├── ApiLayers.h ├── AttachmentUsageFlags.h ├── BaseTexture.cpp ├── BaseTexture.h ├── Buffer.cpp ├── Buffer.h ├── CMakeLists.txt ├── CmdBuffer.cpp ├── CmdBuffer.h ├── CmdBufferRecorder.cpp ├── CmdBufferRecorder.h ├── CmdBufferWaitCond.h ├── CmdPool.cpp ├── CmdPool.h ├── Defines.h ├── DescriptorPool.cpp ├── DescriptorPool.h ├── DescriptorSet.cpp ├── DescriptorSet.h ├── DescriptorSetLayout.cpp ├── DescriptorSetLayout.h ├── DeviceExtensions.cpp ├── DeviceExtensions.h ├── DeviceMemAlloc.h ├── DeviceMemMgr.cpp ├── DeviceMemMgr.h ├── DeviceSurfaceCaps.cpp ├── DeviceSurfaceCaps.h ├── Fence.cpp ├── Fence.h ├── Framebuffer.cpp ├── Framebuffer.h ├── IRetirementProvider.h ├── InstanceExtensions.cpp ├── InstanceExtensions.h ├── LogicalDevice.cpp ├── LogicalDevice.h ├── MutableTexture.cpp ├── MutableTexture.h ├── PhysicalDevice.cpp ├── PhysicalDevice.h ├── PhysicalDeviceSelection.cpp ├── PhysicalDeviceSelection.h ├── Pipeline.cpp ├── Pipeline.h ├── PipelineLayout.cpp ├── PipelineLayout.h ├── RawBuffer.cpp ├── RawBuffer.h ├── RenderPass.cpp ├── RenderPass.h ├── RenderPassDef.cpp ├── RenderPassDef.h ├── RenderTexture.cpp ├── RenderTexture.h ├── RetirementMgr.cpp ├── RetirementMgr.h ├── RingbufferMgr.cpp ├── RingbufferMgr.h ├── Sampler.cpp ├── Sampler.h ├── Semaphore.cpp ├── Semaphore.h ├── ShaderModule.cpp ├── ShaderModule.h ├── SubpassDef.cpp ├── SubpassDef.h ├── Swapchain.cpp ├── Swapchain.h ├── Texture.cpp ├── Texture.h ├── TextureUtils.cpp ├── TextureUtils.h ├── TransferMgr.cpp ├── TransferMgr.h ├── TransferTask.cpp ├── TransferTask.h ├── Utils.h ├── VkFormatUtils.cpp ├── VkFormatUtils.h ├── VkFuncs.cpp ├── VkFuncs.h ├── VulkanInstance.cpp ├── VulkanInstance.h ├── WindowSurface.cpp └── WindowSurface.h └── vulkan_shaders ├── ShaderCommon.h ├── ShaderCommon_Frag.h ├── ShaderCommon_Vert.h ├── colored.frag ├── colored.vert ├── compile_all.py ├── compiled ├── SPIRV_colored_frag.bin.h ├── SPIRV_colored_vert.bin.h ├── SPIRV_crossfade_frag.bin.h ├── SPIRV_msaa_resolve_frag.bin.h ├── SPIRV_msaa_resolve_vert.bin.h ├── SPIRV_ndc_textured_frag.bin.h ├── SPIRV_ndc_textured_vert.bin.h ├── SPIRV_sky_frag.bin.h ├── SPIRV_sky_vert.bin.h ├── SPIRV_ui_16bpp_frag.bin.h ├── SPIRV_ui_4bpp_frag.bin.h ├── SPIRV_ui_8bpp_frag.bin.h ├── SPIRV_ui_vert.bin.h ├── SPIRV_world_frag.bin.h └── SPIRV_world_vert.bin.h ├── crossfade.frag ├── msaa_resolve.frag ├── msaa_resolve.vert ├── ndc_textured.frag ├── ndc_textured.vert ├── sky.frag ├── sky.vert ├── ui.vert ├── ui_16bpp.frag ├── ui_4bpp.frag ├── ui_8bpp.frag ├── world.frag └── world.vert /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/CHANGELIST.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/README.md -------------------------------------------------------------------------------- /baselib/Asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Asserts.h -------------------------------------------------------------------------------- /baselib/ByteInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/ByteInputStream.h -------------------------------------------------------------------------------- /baselib/ByteVecOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/ByteVecOutputStream.h -------------------------------------------------------------------------------- /baselib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/CMakeLists.txt -------------------------------------------------------------------------------- /baselib/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Endian.h -------------------------------------------------------------------------------- /baselib/FatalErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FatalErrors.cpp -------------------------------------------------------------------------------- /baselib/FatalErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FatalErrors.h -------------------------------------------------------------------------------- /baselib/FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FileInputStream.h -------------------------------------------------------------------------------- /baselib/FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FileOutputStream.h -------------------------------------------------------------------------------- /baselib/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FileUtils.cpp -------------------------------------------------------------------------------- /baselib/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/FileUtils.h -------------------------------------------------------------------------------- /baselib/Finally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Finally.h -------------------------------------------------------------------------------- /baselib/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Flags.h -------------------------------------------------------------------------------- /baselib/IniUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/IniUtils.cpp -------------------------------------------------------------------------------- /baselib/IniUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/IniUtils.h -------------------------------------------------------------------------------- /baselib/InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/InputStream.h -------------------------------------------------------------------------------- /baselib/JsonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/JsonUtils.h -------------------------------------------------------------------------------- /baselib/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Macros.h -------------------------------------------------------------------------------- /baselib/Matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/Matrix4.h -------------------------------------------------------------------------------- /baselib/OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/OutputStream.h -------------------------------------------------------------------------------- /baselib/SmallString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/baselib/SmallString.h -------------------------------------------------------------------------------- /cmake/BuildSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/cmake/BuildSetup.cmake -------------------------------------------------------------------------------- /cmake/HelperFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/cmake/HelperFunctions.cmake -------------------------------------------------------------------------------- /docs/PsyDoom Icon - Complex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Icon - Complex.svg -------------------------------------------------------------------------------- /docs/PsyDoom Icon - Simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Icon - Simple.svg -------------------------------------------------------------------------------- /docs/PsyDoom Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Logo.svg -------------------------------------------------------------------------------- /docs/PsyDoom Lua Scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Lua Scripting.md -------------------------------------------------------------------------------- /docs/PsyDoom MAPINFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom MAPINFO.md -------------------------------------------------------------------------------- /docs/PsyDoom Modding Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Modding Overview.md -------------------------------------------------------------------------------- /docs/PsyDoom Special Lumps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/PsyDoom Special Lumps.md -------------------------------------------------------------------------------- /docs/Raspbian cross compile on Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/Raspbian cross compile on Linux.txt -------------------------------------------------------------------------------- /docs/old/I_AddPrim-disassembly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/old/I_AddPrim-disassembly.txt -------------------------------------------------------------------------------- /docs/old/old_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/docs/old/old_notes.txt -------------------------------------------------------------------------------- /extras/psxdoom_demos/About These.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/About These.md -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_DEMO1.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_DEMO1.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_DEMO2.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_DEMO2.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP01.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP01.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP02.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP02.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP03.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP03.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP04.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP04.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP05.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP05.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP06.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP06.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP07.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP07.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP08.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP08.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP09.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP09.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP10.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP10.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP11.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP11.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP12.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP12.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP13.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP13.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP14.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP14.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP15.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP15.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP16.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP16.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP17.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP17.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP18.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP18.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP19.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP19.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP20.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP20.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP21.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP21.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP22.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP22.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP23.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP23.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP24.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP24.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP25.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP25.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP26.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP26.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP27.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP27.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP28.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP28.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP29.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP29.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP30.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP30.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP31.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP31.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP32.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP32.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP33.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP33.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP34.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP34.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP35.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP35.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP36.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP36.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP37.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP37.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP38.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP38.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP39.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP39.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP40.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP40.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP41.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP41.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP42.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP42.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP43.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP43.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP44.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP44.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP45.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP45.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP46.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP46.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP47.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP47.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP48.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP48.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP49.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP49.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP50.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP50.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP51.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP51.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP52.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP52.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP53.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP53.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP54.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP54.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP55.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP55.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP56.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP56.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP57.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP57.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP58.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP58.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_NTSC_MAP59.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_NTSC_MAP59.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_DEMO1.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_DEMO1.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_DEMO2.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_DEMO2.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP01.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP01.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP02.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP02.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP03.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP03.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP04.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP04.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP05.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP05.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP06.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP06.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP07.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP07.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP08.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP08.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP09.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP09.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP10.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP10.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP11.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP11.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP12.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP12.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP13.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP13.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP14.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP14.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP15.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP15.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP16.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP16.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP17.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP17.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP18.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP18.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP19.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP19.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP20.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP20.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP21.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP21.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP22.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP22.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP23.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP23.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP24.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP24.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP25.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP25.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP26.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP26.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP27.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP27.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP28.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP28.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP29.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP29.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP30.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP30.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP31.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP31.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP32.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP32.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP33.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP33.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP34.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP34.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP35.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP35.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP36.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP36.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP37.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP37.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP38.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP38.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP39.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP39.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP40.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP40.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP41.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP41.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP42.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP42.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP43.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP43.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP44.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP44.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP45.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP45.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP46.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP46.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP47.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP47.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP48.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP48.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP49.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP49.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP50.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP50.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP51.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP51.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP52.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP52.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP53.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP53.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP54.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP54.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP55.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP55.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP56.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP56.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP57.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP57.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP58.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP58.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/DOOM_PAL_MAP59.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/DOOM_PAL_MAP59.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/FDOOM_PAL_DEMO1.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/FDOOM_PAL_DEMO1.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/FDOOM_PAL_DEMO2.LMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/FDOOM_PAL_DEMO2.LMP -------------------------------------------------------------------------------- /extras/psxdoom_demos/run_demo_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psxdoom_demos/run_demo_tests.py -------------------------------------------------------------------------------- /extras/psydoom_mapping/ALLMAPS.LCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psydoom_mapping/ALLMAPS.LCD -------------------------------------------------------------------------------- /extras/psydoom_mapping/DOOMSND.WMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/extras/psydoom_mapping/DOOMSND.WMD -------------------------------------------------------------------------------- /game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/CMakeLists.txt -------------------------------------------------------------------------------- /game/Doom/Base/d_vsprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/d_vsprintf.cpp -------------------------------------------------------------------------------- /game/Doom/Base/d_vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/d_vsprintf.h -------------------------------------------------------------------------------- /game/Doom/Base/i_crossfade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_crossfade.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_crossfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_crossfade.h -------------------------------------------------------------------------------- /game/Doom/Base/i_drawcmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_drawcmds.h -------------------------------------------------------------------------------- /game/Doom/Base/i_drawstringex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_drawstringex.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_drawstringex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_drawstringex.h -------------------------------------------------------------------------------- /game/Doom/Base/i_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_file.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_file.h -------------------------------------------------------------------------------- /game/Doom/Base/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_main.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_main.h -------------------------------------------------------------------------------- /game/Doom/Base/i_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_misc.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_misc.h -------------------------------------------------------------------------------- /game/Doom/Base/i_texcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_texcache.cpp -------------------------------------------------------------------------------- /game/Doom/Base/i_texcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/i_texcache.h -------------------------------------------------------------------------------- /game/Doom/Base/m_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_bbox.cpp -------------------------------------------------------------------------------- /game/Doom/Base/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_bbox.h -------------------------------------------------------------------------------- /game/Doom/Base/m_fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_fixed.cpp -------------------------------------------------------------------------------- /game/Doom/Base/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_fixed.h -------------------------------------------------------------------------------- /game/Doom/Base/m_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_random.cpp -------------------------------------------------------------------------------- /game/Doom/Base/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/m_random.h -------------------------------------------------------------------------------- /game/Doom/Base/s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/s_sound.cpp -------------------------------------------------------------------------------- /game/Doom/Base/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/s_sound.h -------------------------------------------------------------------------------- /game/Doom/Base/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/sounds.h -------------------------------------------------------------------------------- /game/Doom/Base/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/tables.cpp -------------------------------------------------------------------------------- /game/Doom/Base/w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/w_wad.cpp -------------------------------------------------------------------------------- /game/Doom/Base/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/w_wad.h -------------------------------------------------------------------------------- /game/Doom/Base/z_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/z_zone.cpp -------------------------------------------------------------------------------- /game/Doom/Base/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Base/z_zone.h -------------------------------------------------------------------------------- /game/Doom/Game/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/doomdata.h -------------------------------------------------------------------------------- /game/Doom/Game/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/g_game.cpp -------------------------------------------------------------------------------- /game/Doom/Game/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/g_game.h -------------------------------------------------------------------------------- /game/Doom/Game/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/info.cpp -------------------------------------------------------------------------------- /game/Doom/Game/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/info.h -------------------------------------------------------------------------------- /game/Doom/Game/p_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_base.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_base.h -------------------------------------------------------------------------------- /game/Doom/Game/p_ceiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_ceiling.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_ceiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_ceiling.h -------------------------------------------------------------------------------- /game/Doom/Game/p_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_change.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_change.h -------------------------------------------------------------------------------- /game/Doom/Game/p_doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_doors.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_doors.h -------------------------------------------------------------------------------- /game/Doom/Game/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_enemy.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_enemy.h -------------------------------------------------------------------------------- /game/Doom/Game/p_firesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_firesky.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_firesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_firesky.h -------------------------------------------------------------------------------- /game/Doom/Game/p_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_floor.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_floor.h -------------------------------------------------------------------------------- /game/Doom/Game/p_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_info.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_info.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #if PSYDOOM_MODS 4 | void P_InitMobjInfo() noexcept; 5 | #endif 6 | -------------------------------------------------------------------------------- /game/Doom/Game/p_inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_inter.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_inter.h -------------------------------------------------------------------------------- /game/Doom/Game/p_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_lights.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_lights.h -------------------------------------------------------------------------------- /game/Doom/Game/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_local.h -------------------------------------------------------------------------------- /game/Doom/Game/p_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_map.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_map.h -------------------------------------------------------------------------------- /game/Doom/Game/p_maputl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_maputl.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_maputl.h -------------------------------------------------------------------------------- /game/Doom/Game/p_mobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_mobj.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_mobj.h -------------------------------------------------------------------------------- /game/Doom/Game/p_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_move.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_move.h -------------------------------------------------------------------------------- /game/Doom/Game/p_password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_password.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_password.h -------------------------------------------------------------------------------- /game/Doom/Game/p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_plats.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_plats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_plats.h -------------------------------------------------------------------------------- /game/Doom/Game/p_pspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_pspr.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_pspr.h -------------------------------------------------------------------------------- /game/Doom/Game/p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_setup.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_setup.h -------------------------------------------------------------------------------- /game/Doom/Game/p_shoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_shoot.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_shoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_shoot.h -------------------------------------------------------------------------------- /game/Doom/Game/p_sight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_sight.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_sight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_sight.h -------------------------------------------------------------------------------- /game/Doom/Game/p_slide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_slide.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_slide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_slide.h -------------------------------------------------------------------------------- /game/Doom/Game/p_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_spec.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_spec.h -------------------------------------------------------------------------------- /game/Doom/Game/p_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_switch.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_switch.h -------------------------------------------------------------------------------- /game/Doom/Game/p_telept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_telept.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_telept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_telept.h -------------------------------------------------------------------------------- /game/Doom/Game/p_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_tick.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_tick.h -------------------------------------------------------------------------------- /game/Doom/Game/p_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_user.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_user.h -------------------------------------------------------------------------------- /game/Doom/Game/p_weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_weak.cpp -------------------------------------------------------------------------------- /game/Doom/Game/p_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/p_weak.h -------------------------------------------------------------------------------- /game/Doom/Game/sprinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/sprinfo.cpp -------------------------------------------------------------------------------- /game/Doom/Game/sprinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Game/sprinfo.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_bsp.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_bsp.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_data.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_data.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_draw.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_draw.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_local.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_main.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_main.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_plane.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_plane.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_segs.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_segs.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_sky.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_sky.h -------------------------------------------------------------------------------- /game/Doom/Renderer/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_things.cpp -------------------------------------------------------------------------------- /game/Doom/Renderer/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/Renderer/r_things.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_automap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_automap.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_automap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_automap.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_bsp.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_bsp.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_data.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_data.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_flats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_flats.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_flats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_flats.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_main.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_main.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_occlusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_occlusion.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_occlusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_occlusion.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_sky.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_sky.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_sprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_sprites.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_sprites.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_utils.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_utils.h -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_walls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_walls.cpp -------------------------------------------------------------------------------- /game/Doom/RendererVk/rv_walls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/RendererVk/rv_walls.h -------------------------------------------------------------------------------- /game/Doom/UI/am_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/am_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/am_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/am_main.h -------------------------------------------------------------------------------- /game/Doom/UI/cr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/cr_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/cr_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/cr_main.h -------------------------------------------------------------------------------- /game/Doom/UI/errormenu_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/errormenu_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/errormenu_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/errormenu_main.h -------------------------------------------------------------------------------- /game/Doom/UI/f_finale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/f_finale.cpp -------------------------------------------------------------------------------- /game/Doom/UI/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/f_finale.h -------------------------------------------------------------------------------- /game/Doom/UI/in_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/in_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/in_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/in_main.h -------------------------------------------------------------------------------- /game/Doom/UI/le_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/le_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/le_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/le_main.h -------------------------------------------------------------------------------- /game/Doom/UI/loadsave_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/loadsave_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/loadsave_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/loadsave_main.h -------------------------------------------------------------------------------- /game/Doom/UI/m_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/m_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/m_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/m_main.h -------------------------------------------------------------------------------- /game/Doom/UI/o_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/o_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/o_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/o_main.h -------------------------------------------------------------------------------- /game/Doom/UI/pw_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/pw_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/pw_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/pw_main.h -------------------------------------------------------------------------------- /game/Doom/UI/saveroot_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/saveroot_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/saveroot_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/saveroot_main.h -------------------------------------------------------------------------------- /game/Doom/UI/st_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/st_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/st_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/st_main.h -------------------------------------------------------------------------------- /game/Doom/UI/ti_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/ti_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/ti_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/ti_main.h -------------------------------------------------------------------------------- /game/Doom/UI/xoptions_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/xoptions_main.cpp -------------------------------------------------------------------------------- /game/Doom/UI/xoptions_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/UI/xoptions_main.h -------------------------------------------------------------------------------- /game/Doom/cdmaptbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/cdmaptbl.cpp -------------------------------------------------------------------------------- /game/Doom/cdmaptbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/cdmaptbl.h -------------------------------------------------------------------------------- /game/Doom/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/d_main.cpp -------------------------------------------------------------------------------- /game/Doom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/d_main.h -------------------------------------------------------------------------------- /game/Doom/doomdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/doomdef.cpp -------------------------------------------------------------------------------- /game/Doom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/doomdef.h -------------------------------------------------------------------------------- /game/Doom/psx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/psx_main.cpp -------------------------------------------------------------------------------- /game/Doom/psx_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Doom/psx_main.h -------------------------------------------------------------------------------- /game/EngineLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/EngineLimits.h -------------------------------------------------------------------------------- /game/Main_Mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Main_Mac.mm -------------------------------------------------------------------------------- /game/Main_StandardCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Main_StandardCpp.cpp -------------------------------------------------------------------------------- /game/Main_Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Main_Windows.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_i_crossfade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_i_crossfade.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_i_drawcmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_i_drawcmds.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_i_drawcmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_i_drawcmds.h -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_i_main.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_i_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_i_main.h -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_s_sound.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_w_wad.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_w_wad.h -------------------------------------------------------------------------------- /game/Old/Doom/Base/Old_z_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Base/Old_z_zone.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Game/Old_g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Game/Old_g_game.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Game/Old_p_ceiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Game/Old_p_ceiling.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Game/Old_p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Game/Old_p_plats.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Game/Old_p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Game/Old_p_setup.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Game/Old_sprinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Game/Old_sprinfo.cpp -------------------------------------------------------------------------------- /game/Old/Doom/Renderer/Old_r_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/Renderer/Old_r_data.cpp -------------------------------------------------------------------------------- /game/Old/Doom/UI/Old_cn_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/UI/Old_cn_main.cpp -------------------------------------------------------------------------------- /game/Old/Doom/UI/Old_cn_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/UI/Old_cn_main.h -------------------------------------------------------------------------------- /game/Old/Doom/UI/Old_cr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/UI/Old_cr_main.cpp -------------------------------------------------------------------------------- /game/Old/Doom/UI/Old_ti_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Doom/UI/Old_ti_main.cpp -------------------------------------------------------------------------------- /game/Old/Old_cdmaptbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Old_cdmaptbl.cpp -------------------------------------------------------------------------------- /game/Old/Old_cdmaptbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Old_cdmaptbl.h -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBAPI.cpp -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBAPI.h -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBCD.cpp -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBCD.h -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBCOMB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBCOMB.cpp -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBCOMB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBCOMB.h -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBETC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBETC.cpp -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBETC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBETC.h -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBGPU.cpp -------------------------------------------------------------------------------- /game/Old/PsyQ/Old_LIBGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/PsyQ/Old_LIBGPU.h -------------------------------------------------------------------------------- /game/Old/Wess/Old_lcdload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Wess/Old_lcdload.cpp -------------------------------------------------------------------------------- /game/Old/Wess/Old_lcdload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Wess/Old_lcdload.h -------------------------------------------------------------------------------- /game/Old/Wess/Old_psxcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Wess/Old_psxcd.cpp -------------------------------------------------------------------------------- /game/Old/Wess/Old_psxcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Old/Wess/Old_psxcd.h -------------------------------------------------------------------------------- /game/PsyDoom/AudioCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/AudioCompressor.cpp -------------------------------------------------------------------------------- /game/PsyDoom/AudioCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/AudioCompressor.h -------------------------------------------------------------------------------- /game/PsyDoom/BitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/BitShift.h -------------------------------------------------------------------------------- /game/PsyDoom/BuiltInPaletteData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/BuiltInPaletteData.cpp -------------------------------------------------------------------------------- /game/PsyDoom/BuiltInPaletteData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/BuiltInPaletteData.h -------------------------------------------------------------------------------- /game/PsyDoom/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Cheats.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Cheats.h -------------------------------------------------------------------------------- /game/PsyDoom/Config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Config/Config.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Config/Config.h -------------------------------------------------------------------------------- /game/PsyDoom/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Controls.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Controls.h -------------------------------------------------------------------------------- /game/PsyDoom/DemoCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoCommon.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DemoCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoCommon.h -------------------------------------------------------------------------------- /game/PsyDoom/DemoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoPlayer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DemoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoPlayer.h -------------------------------------------------------------------------------- /game/PsyDoom/DemoRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoRecorder.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DemoRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoRecorder.h -------------------------------------------------------------------------------- /game/PsyDoom/DemoResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoResult.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DemoResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DemoResult.h -------------------------------------------------------------------------------- /game/PsyDoom/DevMapAutoReloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DevMapAutoReloader.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DevMapAutoReloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DevMapAutoReloader.h -------------------------------------------------------------------------------- /game/PsyDoom/DiscInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DiscInfo.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DiscInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DiscInfo.h -------------------------------------------------------------------------------- /game/PsyDoom/DiscReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DiscReader.cpp -------------------------------------------------------------------------------- /game/PsyDoom/DiscReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/DiscReader.h -------------------------------------------------------------------------------- /game/PsyDoom/FixedIndexSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/FixedIndexSet.h -------------------------------------------------------------------------------- /game/PsyDoom/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Game.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Game.h -------------------------------------------------------------------------------- /game/PsyDoom/GameConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameConstants.cpp -------------------------------------------------------------------------------- /game/PsyDoom/GameConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameConstants.h -------------------------------------------------------------------------------- /game/PsyDoom/GameFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameFileReader.cpp -------------------------------------------------------------------------------- /game/PsyDoom/GameFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameFileReader.h -------------------------------------------------------------------------------- /game/PsyDoom/GameSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameSettings.cpp -------------------------------------------------------------------------------- /game/PsyDoom/GameSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GameSettings.h -------------------------------------------------------------------------------- /game/PsyDoom/GamepadInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GamepadInput.cpp -------------------------------------------------------------------------------- /game/PsyDoom/GamepadInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/GamepadInput.h -------------------------------------------------------------------------------- /game/PsyDoom/IVideoBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IVideoBackend.h -------------------------------------------------------------------------------- /game/PsyDoom/IVideoSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IVideoSurface.h -------------------------------------------------------------------------------- /game/PsyDoom/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Input.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Input.h -------------------------------------------------------------------------------- /game/PsyDoom/InterpFixedT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/InterpFixedT.cpp -------------------------------------------------------------------------------- /game/PsyDoom/InterpFixedT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/InterpFixedT.h -------------------------------------------------------------------------------- /game/PsyDoom/IntroLogos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IntroLogos.cpp -------------------------------------------------------------------------------- /game/PsyDoom/IntroLogos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IntroLogos.h -------------------------------------------------------------------------------- /game/PsyDoom/IsoFileSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IsoFileSys.cpp -------------------------------------------------------------------------------- /game/PsyDoom/IsoFileSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/IsoFileSys.h -------------------------------------------------------------------------------- /game/PsyDoom/LIBGPU_CmdDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/LIBGPU_CmdDispatch.cpp -------------------------------------------------------------------------------- /game/PsyDoom/LIBGPU_CmdDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/LIBGPU_CmdDispatch.h -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/AddInputPrompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/AddInputPrompt.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/AddInputPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/AddInputPrompt.h -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/Launcher.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/Launcher.h -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/LauncherPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/LauncherPrefs.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/LauncherPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/LauncherPrefs.h -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/Launcher_Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/Launcher_Context.h -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/Launcher_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/Launcher_Utils.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Launcher/Launcher_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Launcher/Launcher_Utils.h -------------------------------------------------------------------------------- /game/PsyDoom/LogoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/LogoPlayer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/LogoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/LogoPlayer.h -------------------------------------------------------------------------------- /game/PsyDoom/MapHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapHash.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MapHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapHash.h -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/GecMapInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/GecMapInfo.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/GecMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/GecMapInfo.h -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/MapInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/MapInfo.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/MapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/MapInfo.h -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/MapInfo_Defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/MapInfo_Defaults.h -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/MapInfo_Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/MapInfo_Parse.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MapInfo/MapInfo_Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapInfo/MapInfo_Parse.h -------------------------------------------------------------------------------- /game/PsyDoom/MapPatcher/MapPatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapPatcher/MapPatcher.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MapPatcher/MapPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapPatcher/MapPatcher.h -------------------------------------------------------------------------------- /game/PsyDoom/MapPatcher/MapPatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MapPatcher/MapPatches.h -------------------------------------------------------------------------------- /game/PsyDoom/MobjSpritePrecacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MobjSpritePrecacher.cpp -------------------------------------------------------------------------------- /game/PsyDoom/MobjSpritePrecacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MobjSpritePrecacher.h -------------------------------------------------------------------------------- /game/PsyDoom/ModMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ModMgr.cpp -------------------------------------------------------------------------------- /game/PsyDoom/ModMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ModMgr.h -------------------------------------------------------------------------------- /game/PsyDoom/MouseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/MouseButton.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/Block.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/Block.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/CDXAFileStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/CDXAFileStreamer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/CDXAFileStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/CDXAFileStreamer.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/Frame.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/Frame.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MBlockBitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MBlockBitStream.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MBlockBitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MBlockBitStream.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MacroBlockDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MacroBlockDecoder.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MacroBlockDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MacroBlockDecoder.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MoviePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MoviePlayer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/MoviePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/MoviePlayer.h -------------------------------------------------------------------------------- /game/PsyDoom/Movie/XAAdpcmDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/XAAdpcmDecoder.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Movie/XAAdpcmDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Movie/XAAdpcmDecoder.h -------------------------------------------------------------------------------- /game/PsyDoom/NetPacketReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/NetPacketReader.h -------------------------------------------------------------------------------- /game/PsyDoom/NetPacketWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/NetPacketWriter.h -------------------------------------------------------------------------------- /game/PsyDoom/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Network.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Network.h -------------------------------------------------------------------------------- /game/PsyDoom/ParserTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ParserTokenizer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/ParserTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ParserTokenizer.h -------------------------------------------------------------------------------- /game/PsyDoom/PlayerPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/PlayerPrefs.cpp -------------------------------------------------------------------------------- /game/PsyDoom/PlayerPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/PlayerPrefs.h -------------------------------------------------------------------------------- /game/PsyDoom/ProgArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ProgArgs.cpp -------------------------------------------------------------------------------- /game/PsyDoom/ProgArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ProgArgs.h -------------------------------------------------------------------------------- /game/PsyDoom/PsxPadButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/PsxPadButtons.h -------------------------------------------------------------------------------- /game/PsyDoom/PsxVm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/PsxVm.cpp -------------------------------------------------------------------------------- /game/PsyDoom/PsxVm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/PsxVm.h -------------------------------------------------------------------------------- /game/PsyDoom/ResizableBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ResizableBuffer.h -------------------------------------------------------------------------------- /game/PsyDoom/SaveAndLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/SaveAndLoad.cpp -------------------------------------------------------------------------------- /game/PsyDoom/SaveAndLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/SaveAndLoad.h -------------------------------------------------------------------------------- /game/PsyDoom/SaveDataTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/SaveDataTypes.cpp -------------------------------------------------------------------------------- /game/PsyDoom/SaveDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/SaveDataTypes.h -------------------------------------------------------------------------------- /game/PsyDoom/ScriptBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ScriptBindings.cpp -------------------------------------------------------------------------------- /game/PsyDoom/ScriptBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ScriptBindings.h -------------------------------------------------------------------------------- /game/PsyDoom/ScriptingEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ScriptingEngine.cpp -------------------------------------------------------------------------------- /game/PsyDoom/ScriptingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/ScriptingEngine.h -------------------------------------------------------------------------------- /game/PsyDoom/TexturePatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/TexturePatcher.cpp -------------------------------------------------------------------------------- /game/PsyDoom/TexturePatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/TexturePatcher.h -------------------------------------------------------------------------------- /game/PsyDoom/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Utils.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Utils.h -------------------------------------------------------------------------------- /game/PsyDoom/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Video.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Video.h -------------------------------------------------------------------------------- /game/PsyDoom/VideoBackend_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoBackend_SDL.cpp -------------------------------------------------------------------------------- /game/PsyDoom/VideoBackend_SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoBackend_SDL.h -------------------------------------------------------------------------------- /game/PsyDoom/VideoBackend_Vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoBackend_Vulkan.cpp -------------------------------------------------------------------------------- /game/PsyDoom/VideoBackend_Vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoBackend_Vulkan.h -------------------------------------------------------------------------------- /game/PsyDoom/VideoSurface_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoSurface_SDL.cpp -------------------------------------------------------------------------------- /game/PsyDoom/VideoSurface_SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoSurface_SDL.h -------------------------------------------------------------------------------- /game/PsyDoom/VideoSurface_Vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoSurface_Vulkan.cpp -------------------------------------------------------------------------------- /game/PsyDoom/VideoSurface_Vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/VideoSurface_Vulkan.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/IVRenderPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/IVRenderPath.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VCrossfader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VCrossfader.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VCrossfader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VCrossfader.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VDrawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VDrawing.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VDrawing.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VMsaaResolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VMsaaResolver.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VMsaaResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VMsaaResolver.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VPipelines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VPipelines.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VPipelines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VPipelines.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VPlaqueDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VPlaqueDrawer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VPlaqueDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VPlaqueDrawer.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Blit.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Blit.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Main.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Main.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Psx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Psx.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderPath_Psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderPath_Psx.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderer.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VRenderer.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VScreenQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VScreenQuad.cpp -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VScreenQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VScreenQuad.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VTypes.h -------------------------------------------------------------------------------- /game/PsyDoom/Vulkan/VVertexBufferSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/Vulkan/VVertexBufferSet.h -------------------------------------------------------------------------------- /game/PsyDoom/WadFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadFile.cpp -------------------------------------------------------------------------------- /game/PsyDoom/WadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadFile.h -------------------------------------------------------------------------------- /game/PsyDoom/WadList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadList.cpp -------------------------------------------------------------------------------- /game/PsyDoom/WadList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadList.h -------------------------------------------------------------------------------- /game/PsyDoom/WadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadUtils.cpp -------------------------------------------------------------------------------- /game/PsyDoom/WadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyDoom/WadUtils.h -------------------------------------------------------------------------------- /game/PsyQ/LIBAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBAPI.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBAPI.h -------------------------------------------------------------------------------- /game/PsyQ/LIBETC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBETC.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBETC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBETC.h -------------------------------------------------------------------------------- /game/PsyQ/LIBGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBGPU.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBGPU.h -------------------------------------------------------------------------------- /game/PsyQ/LIBGPU_Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBGPU_Resources.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBGTE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBGTE.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBGTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBGTE.h -------------------------------------------------------------------------------- /game/PsyQ/LIBSN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBSN.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBSN.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void LIBSN__main() noexcept; 4 | -------------------------------------------------------------------------------- /game/PsyQ/LIBSPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBSPU.cpp -------------------------------------------------------------------------------- /game/PsyQ/LIBSPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBSPU.h -------------------------------------------------------------------------------- /game/PsyQ/LIBSPU_Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/PsyQ/LIBSPU_Resources.cpp -------------------------------------------------------------------------------- /game/Resources/Generic/Launcher_Logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/Launcher_Logo.xpm -------------------------------------------------------------------------------- /game/Resources/Generic/icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_1024.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_128.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_16.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_160.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_192.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_20.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_22.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_24.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_256.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_28.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_30.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_32.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_36.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_384.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_40.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_42.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_44.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_48.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_480.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_512.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_56.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_60.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_64.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_72.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_8.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_80.png -------------------------------------------------------------------------------- /game/Resources/Generic/icon_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Generic/icon_96.png -------------------------------------------------------------------------------- /game/Resources/Linux/icon_8.raw_rgb888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Linux/icon_8.raw_rgb888.c -------------------------------------------------------------------------------- /game/Resources/Windows/PsyDoom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Windows/PsyDoom.rc -------------------------------------------------------------------------------- /game/Resources/Windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/Windows/icon.ico -------------------------------------------------------------------------------- /game/Resources/macOS/MoltenVK_icd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/macOS/MoltenVK_icd.json -------------------------------------------------------------------------------- /game/Resources/macOS/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Resources/macOS/icon.icns -------------------------------------------------------------------------------- /game/Wess/lcdload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/lcdload.cpp -------------------------------------------------------------------------------- /game/Wess/lcdload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/lcdload.h -------------------------------------------------------------------------------- /game/Wess/psxcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxcd.cpp -------------------------------------------------------------------------------- /game/Wess/psxcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxcd.h -------------------------------------------------------------------------------- /game/Wess/psxcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxcmd.cpp -------------------------------------------------------------------------------- /game/Wess/psxcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxcmd.h -------------------------------------------------------------------------------- /game/Wess/psxspu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxspu.cpp -------------------------------------------------------------------------------- /game/Wess/psxspu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/psxspu.h -------------------------------------------------------------------------------- /game/Wess/seqload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/seqload.cpp -------------------------------------------------------------------------------- /game/Wess/seqload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/seqload.h -------------------------------------------------------------------------------- /game/Wess/seqload_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/seqload_r.cpp -------------------------------------------------------------------------------- /game/Wess/seqload_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/seqload_r.h -------------------------------------------------------------------------------- /game/Wess/wessapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi.cpp -------------------------------------------------------------------------------- /game/Wess/wessapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi.h -------------------------------------------------------------------------------- /game/Wess/wessapi_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_m.cpp -------------------------------------------------------------------------------- /game/Wess/wessapi_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_m.h -------------------------------------------------------------------------------- /game/Wess/wessapi_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_p.cpp -------------------------------------------------------------------------------- /game/Wess/wessapi_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_p.h -------------------------------------------------------------------------------- /game/Wess/wessapi_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_t.cpp -------------------------------------------------------------------------------- /game/Wess/wessapi_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessapi_t.h -------------------------------------------------------------------------------- /game/Wess/wessarc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessarc.cpp -------------------------------------------------------------------------------- /game/Wess/wessarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessarc.h -------------------------------------------------------------------------------- /game/Wess/wessseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessseq.cpp -------------------------------------------------------------------------------- /game/Wess/wessseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/game/Wess/wessseq.h -------------------------------------------------------------------------------- /simple_gpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_gpu/CMakeLists.txt -------------------------------------------------------------------------------- /simple_gpu/Gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_gpu/Gpu.cpp -------------------------------------------------------------------------------- /simple_gpu/Gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_gpu/Gpu.h -------------------------------------------------------------------------------- /simple_spu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_spu/CMakeLists.txt -------------------------------------------------------------------------------- /simple_spu/Spu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_spu/Spu.cpp -------------------------------------------------------------------------------- /simple_spu/Spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/simple_spu/Spu.h -------------------------------------------------------------------------------- /third_party_libs/asio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/asio/CMakeLists.txt -------------------------------------------------------------------------------- /third_party_libs/asio/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/asio/Version.txt -------------------------------------------------------------------------------- /third_party_libs/asio/asio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/asio/asio/COPYING -------------------------------------------------------------------------------- /third_party_libs/asio/asio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/asio/asio/README -------------------------------------------------------------------------------- /third_party_libs/asio/asio/src/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/asio/asio/src/asio.cpp -------------------------------------------------------------------------------- /third_party_libs/fltk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/CMakeLists.txt -------------------------------------------------------------------------------- /third_party_libs/fltk/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/Version.txt -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/.clang-format -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/ANNOUNCEMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/ANNOUNCEMENT -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/CHANGES.txt -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/COPYING -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/CREDITS.txt -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Box.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Box.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Cairo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Cairo.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Chart.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Chart.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Clock.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Dial.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Flex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Flex.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Free.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Free.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Group.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Group.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Image.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Input.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Menu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Menu.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Menu_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Menu_.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Pack.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Pack.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Rect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Rect.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Table.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Table.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Tabs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Tabs.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Tile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Tile.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Timer.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/Fl_Tree.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/Fl_Tree.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/filename.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/filename.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_ask.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_ask.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_attr.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_casts.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_casts.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_draw.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_types.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/fl_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/fl_utf8.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/forms.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/forms.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/gl.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/gl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/gl_draw.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/glu.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/glut.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/glut.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/mac.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/mac.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/math.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/names.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/platform.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/platform.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/wayland.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/wayland.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/win32.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/win32.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/x.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/x.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/FL/x11.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/FL/x11.H -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/Makefile -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/README.md -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/README.txt -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/autogen.sh -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/config.guess -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/config.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/config.sub -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/configh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/configh.in -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/configure.ac -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/fl_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/fl_config.in -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/fltk.list.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/fltk.list.in -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/fltk.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/fltk.spec.in -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/fltk.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/fltk.xpm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/fltk_version.dat: -------------------------------------------------------------------------------- 1 | 1.4.0 2 | -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/forms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/forms.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/install-sh -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/Fl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/Fl.cxx -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/Fl_x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/Fl_x.cxx -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/Makefile -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/Xutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/Xutf8.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/cgdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/cgdebug.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/d1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/d1.xbm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/ew.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/ew.xbm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/fl_cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/fl_cmap.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/fl_oxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/fl_oxy.h -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/new.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/new.xbm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/ns.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/ns.xbm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/tile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/tile.xpm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/up.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/fltk/fltk/src/up.xbm -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/xutf8/Ximint.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party_libs/fltk/fltk/src/xutf8/Xlibint.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party_libs/libsdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/CMakeLists.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/Version.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/BUGS.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/CREDITS.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/INSTALL.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/LICENSE.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/README.md -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/TODO.txt -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/libsdl/sdl2/src/SDL.c -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /third_party_libs/libsdl/sdl2/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /third_party_libs/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/CMakeLists.txt -------------------------------------------------------------------------------- /third_party_libs/lua/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/Version.txt -------------------------------------------------------------------------------- /third_party_libs/lua/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/Makefile -------------------------------------------------------------------------------- /third_party_libs/lua/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/README -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/Makefile -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lapi.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lapi.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lauxlib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lauxlib.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lbaselib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lcode.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lcode.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lcorolib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lctype.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lctype.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldblib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldebug.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldebug.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldo.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldo.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ldump.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lfunc.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lfunc.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lgc.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lgc.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/linit.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/liolib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ljumptab.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/llex.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/llex.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/llimits.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lmathlib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lmem.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lmem.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/loadlib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/loslib.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lstate.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lstate.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ltable.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ltable.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ltm.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/ltm.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lua.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lua.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lua.hpp -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/luac.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lualib.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lvm.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lvm.h -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lzio.c -------------------------------------------------------------------------------- /third_party_libs/lua/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/lua/lua/src/lzio.h -------------------------------------------------------------------------------- /third_party_libs/sol2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/sol2/CMakeLists.txt -------------------------------------------------------------------------------- /third_party_libs/sol2/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/sol2/Version.txt -------------------------------------------------------------------------------- /third_party_libs/sol2/sol2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/third_party_libs/sol2/sol2/README.md -------------------------------------------------------------------------------- /tools/audio/audio_tools_common/Lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/audio_tools_common/Lcd.h -------------------------------------------------------------------------------- /tools/audio/lcd_tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/lcd_tool/CMakeLists.txt -------------------------------------------------------------------------------- /tools/audio/lcd_tool/LcdTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/lcd_tool/LcdTool.cpp -------------------------------------------------------------------------------- /tools/audio/vag_tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/vag_tool/CMakeLists.txt -------------------------------------------------------------------------------- /tools/audio/vag_tool/VagTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/vag_tool/VagTool.cpp -------------------------------------------------------------------------------- /tools/audio/wmd_tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/wmd_tool/CMakeLists.txt -------------------------------------------------------------------------------- /tools/audio/wmd_tool/WmdTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/audio/wmd_tool/WmdTool.cpp -------------------------------------------------------------------------------- /tools/other/pal_tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/other/pal_tool/CMakeLists.txt -------------------------------------------------------------------------------- /tools/other/pal_tool/PalTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/tools/other/pal_tool/PalTool.cpp -------------------------------------------------------------------------------- /vulkan_gl/AbstractFixedQTreeMemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/AbstractFixedQTreeMemMgr.h -------------------------------------------------------------------------------- /vulkan_gl/AlphaMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/AlphaMode.h -------------------------------------------------------------------------------- /vulkan_gl/ApiLayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/ApiLayers.cpp -------------------------------------------------------------------------------- /vulkan_gl/ApiLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/ApiLayers.h -------------------------------------------------------------------------------- /vulkan_gl/AttachmentUsageFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/AttachmentUsageFlags.h -------------------------------------------------------------------------------- /vulkan_gl/BaseTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/BaseTexture.cpp -------------------------------------------------------------------------------- /vulkan_gl/BaseTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/BaseTexture.h -------------------------------------------------------------------------------- /vulkan_gl/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Buffer.cpp -------------------------------------------------------------------------------- /vulkan_gl/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Buffer.h -------------------------------------------------------------------------------- /vulkan_gl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CMakeLists.txt -------------------------------------------------------------------------------- /vulkan_gl/CmdBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdBuffer.cpp -------------------------------------------------------------------------------- /vulkan_gl/CmdBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdBuffer.h -------------------------------------------------------------------------------- /vulkan_gl/CmdBufferRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdBufferRecorder.cpp -------------------------------------------------------------------------------- /vulkan_gl/CmdBufferRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdBufferRecorder.h -------------------------------------------------------------------------------- /vulkan_gl/CmdBufferWaitCond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdBufferWaitCond.h -------------------------------------------------------------------------------- /vulkan_gl/CmdPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdPool.cpp -------------------------------------------------------------------------------- /vulkan_gl/CmdPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/CmdPool.h -------------------------------------------------------------------------------- /vulkan_gl/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Defines.h -------------------------------------------------------------------------------- /vulkan_gl/DescriptorPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorPool.cpp -------------------------------------------------------------------------------- /vulkan_gl/DescriptorPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorPool.h -------------------------------------------------------------------------------- /vulkan_gl/DescriptorSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorSet.cpp -------------------------------------------------------------------------------- /vulkan_gl/DescriptorSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorSet.h -------------------------------------------------------------------------------- /vulkan_gl/DescriptorSetLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorSetLayout.cpp -------------------------------------------------------------------------------- /vulkan_gl/DescriptorSetLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DescriptorSetLayout.h -------------------------------------------------------------------------------- /vulkan_gl/DeviceExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceExtensions.cpp -------------------------------------------------------------------------------- /vulkan_gl/DeviceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceExtensions.h -------------------------------------------------------------------------------- /vulkan_gl/DeviceMemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceMemAlloc.h -------------------------------------------------------------------------------- /vulkan_gl/DeviceMemMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceMemMgr.cpp -------------------------------------------------------------------------------- /vulkan_gl/DeviceMemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceMemMgr.h -------------------------------------------------------------------------------- /vulkan_gl/DeviceSurfaceCaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceSurfaceCaps.cpp -------------------------------------------------------------------------------- /vulkan_gl/DeviceSurfaceCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/DeviceSurfaceCaps.h -------------------------------------------------------------------------------- /vulkan_gl/Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Fence.cpp -------------------------------------------------------------------------------- /vulkan_gl/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Fence.h -------------------------------------------------------------------------------- /vulkan_gl/Framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Framebuffer.cpp -------------------------------------------------------------------------------- /vulkan_gl/Framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Framebuffer.h -------------------------------------------------------------------------------- /vulkan_gl/IRetirementProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/IRetirementProvider.h -------------------------------------------------------------------------------- /vulkan_gl/InstanceExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/InstanceExtensions.cpp -------------------------------------------------------------------------------- /vulkan_gl/InstanceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/InstanceExtensions.h -------------------------------------------------------------------------------- /vulkan_gl/LogicalDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/LogicalDevice.cpp -------------------------------------------------------------------------------- /vulkan_gl/LogicalDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/LogicalDevice.h -------------------------------------------------------------------------------- /vulkan_gl/MutableTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/MutableTexture.cpp -------------------------------------------------------------------------------- /vulkan_gl/MutableTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/MutableTexture.h -------------------------------------------------------------------------------- /vulkan_gl/PhysicalDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PhysicalDevice.cpp -------------------------------------------------------------------------------- /vulkan_gl/PhysicalDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PhysicalDevice.h -------------------------------------------------------------------------------- /vulkan_gl/PhysicalDeviceSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PhysicalDeviceSelection.cpp -------------------------------------------------------------------------------- /vulkan_gl/PhysicalDeviceSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PhysicalDeviceSelection.h -------------------------------------------------------------------------------- /vulkan_gl/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Pipeline.cpp -------------------------------------------------------------------------------- /vulkan_gl/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Pipeline.h -------------------------------------------------------------------------------- /vulkan_gl/PipelineLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PipelineLayout.cpp -------------------------------------------------------------------------------- /vulkan_gl/PipelineLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/PipelineLayout.h -------------------------------------------------------------------------------- /vulkan_gl/RawBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RawBuffer.cpp -------------------------------------------------------------------------------- /vulkan_gl/RawBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RawBuffer.h -------------------------------------------------------------------------------- /vulkan_gl/RenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderPass.cpp -------------------------------------------------------------------------------- /vulkan_gl/RenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderPass.h -------------------------------------------------------------------------------- /vulkan_gl/RenderPassDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderPassDef.cpp -------------------------------------------------------------------------------- /vulkan_gl/RenderPassDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderPassDef.h -------------------------------------------------------------------------------- /vulkan_gl/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderTexture.cpp -------------------------------------------------------------------------------- /vulkan_gl/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RenderTexture.h -------------------------------------------------------------------------------- /vulkan_gl/RetirementMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RetirementMgr.cpp -------------------------------------------------------------------------------- /vulkan_gl/RetirementMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RetirementMgr.h -------------------------------------------------------------------------------- /vulkan_gl/RingbufferMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RingbufferMgr.cpp -------------------------------------------------------------------------------- /vulkan_gl/RingbufferMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/RingbufferMgr.h -------------------------------------------------------------------------------- /vulkan_gl/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Sampler.cpp -------------------------------------------------------------------------------- /vulkan_gl/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Sampler.h -------------------------------------------------------------------------------- /vulkan_gl/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Semaphore.cpp -------------------------------------------------------------------------------- /vulkan_gl/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Semaphore.h -------------------------------------------------------------------------------- /vulkan_gl/ShaderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/ShaderModule.cpp -------------------------------------------------------------------------------- /vulkan_gl/ShaderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/ShaderModule.h -------------------------------------------------------------------------------- /vulkan_gl/SubpassDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/SubpassDef.cpp -------------------------------------------------------------------------------- /vulkan_gl/SubpassDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/SubpassDef.h -------------------------------------------------------------------------------- /vulkan_gl/Swapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Swapchain.cpp -------------------------------------------------------------------------------- /vulkan_gl/Swapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Swapchain.h -------------------------------------------------------------------------------- /vulkan_gl/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Texture.cpp -------------------------------------------------------------------------------- /vulkan_gl/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Texture.h -------------------------------------------------------------------------------- /vulkan_gl/TextureUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TextureUtils.cpp -------------------------------------------------------------------------------- /vulkan_gl/TextureUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TextureUtils.h -------------------------------------------------------------------------------- /vulkan_gl/TransferMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TransferMgr.cpp -------------------------------------------------------------------------------- /vulkan_gl/TransferMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TransferMgr.h -------------------------------------------------------------------------------- /vulkan_gl/TransferTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TransferTask.cpp -------------------------------------------------------------------------------- /vulkan_gl/TransferTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/TransferTask.h -------------------------------------------------------------------------------- /vulkan_gl/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/Utils.h -------------------------------------------------------------------------------- /vulkan_gl/VkFormatUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VkFormatUtils.cpp -------------------------------------------------------------------------------- /vulkan_gl/VkFormatUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VkFormatUtils.h -------------------------------------------------------------------------------- /vulkan_gl/VkFuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VkFuncs.cpp -------------------------------------------------------------------------------- /vulkan_gl/VkFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VkFuncs.h -------------------------------------------------------------------------------- /vulkan_gl/VulkanInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VulkanInstance.cpp -------------------------------------------------------------------------------- /vulkan_gl/VulkanInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/VulkanInstance.h -------------------------------------------------------------------------------- /vulkan_gl/WindowSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/WindowSurface.cpp -------------------------------------------------------------------------------- /vulkan_gl/WindowSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_gl/WindowSurface.h -------------------------------------------------------------------------------- /vulkan_shaders/ShaderCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ShaderCommon.h -------------------------------------------------------------------------------- /vulkan_shaders/ShaderCommon_Frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ShaderCommon_Frag.h -------------------------------------------------------------------------------- /vulkan_shaders/ShaderCommon_Vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ShaderCommon_Vert.h -------------------------------------------------------------------------------- /vulkan_shaders/colored.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/colored.frag -------------------------------------------------------------------------------- /vulkan_shaders/colored.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/colored.vert -------------------------------------------------------------------------------- /vulkan_shaders/compile_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/compile_all.py -------------------------------------------------------------------------------- /vulkan_shaders/crossfade.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/crossfade.frag -------------------------------------------------------------------------------- /vulkan_shaders/msaa_resolve.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/msaa_resolve.frag -------------------------------------------------------------------------------- /vulkan_shaders/msaa_resolve.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/msaa_resolve.vert -------------------------------------------------------------------------------- /vulkan_shaders/ndc_textured.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ndc_textured.frag -------------------------------------------------------------------------------- /vulkan_shaders/ndc_textured.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ndc_textured.vert -------------------------------------------------------------------------------- /vulkan_shaders/sky.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/sky.frag -------------------------------------------------------------------------------- /vulkan_shaders/sky.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/sky.vert -------------------------------------------------------------------------------- /vulkan_shaders/ui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ui.vert -------------------------------------------------------------------------------- /vulkan_shaders/ui_16bpp.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ui_16bpp.frag -------------------------------------------------------------------------------- /vulkan_shaders/ui_4bpp.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ui_4bpp.frag -------------------------------------------------------------------------------- /vulkan_shaders/ui_8bpp.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/ui_8bpp.frag -------------------------------------------------------------------------------- /vulkan_shaders/world.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/world.frag -------------------------------------------------------------------------------- /vulkan_shaders/world.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodbDearg/PsyDoom/HEAD/vulkan_shaders/world.vert --------------------------------------------------------------------------------