├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── gamedb-lint.yml │ ├── linux-appimage-build.yml │ ├── linux-cross-appimage-build.yml │ ├── macos-build.yml │ ├── main.yml │ ├── translation-lint.yml │ ├── upload-caches.yml │ └── windows-build.yml ├── .gitignore ├── CMakeLists.txt ├── CMakeModules ├── AddMetalSources.cmake ├── CheckCXXFlag.cmake ├── CopyBaseTranslations.cmake ├── DuckStationBuildOptions.cmake ├── DuckStationBuildSummary.cmake ├── DuckStationCompilerRequirement.cmake ├── DuckStationDependencies.cmake ├── DuckStationUtils.cmake ├── ECMFindModuleHelpers.cmake ├── ECMFindModuleHelpersStub.cmake ├── FindFFMPEG.cmake ├── FindLibbacktrace.cmake ├── FindUDEV.cmake ├── FindWebP.cmake └── Findzstd.cmake ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── README.pt-br.md ├── data ├── LICENSE.txt └── resources │ ├── achievement_hashlib.yaml │ ├── discdb.yaml │ ├── discsets.yaml │ ├── fonts │ ├── JetBrainsMono-VariableFont_wght.ttf │ ├── NotoSansJP-VariableFont_wght.ttf │ ├── NotoSansKR-VariableFont_wght.ttf │ ├── NotoSansSC-VariableFont_wght.ttf │ ├── Roboto-VariableFont_wdth,wght.ttf │ ├── TwitterColorEmoji-SVGinOT.ttf │ ├── fa-solid-900.ttf │ └── promptfont.otf │ ├── fullscreenui │ ├── back-icon.svg │ ├── backgrounds │ │ ├── Default.glsl │ │ ├── StaticGray.png │ │ ├── Strobe.glsl │ │ └── Trails.glsl │ ├── cdrom.png │ ├── desktop-mode.svg │ ├── exe-file.png │ ├── exit.svg │ ├── game-list.svg │ ├── playlist-file.png │ ├── psf-file.png │ ├── settings.svg │ ├── start-bios.svg │ ├── start-disc.svg │ └── start-file.svg │ ├── gamecontrollerdb.txt │ ├── gamedb.yaml │ ├── images │ ├── cover-placeholder.png │ ├── crosshair.png │ ├── duck.png │ ├── flags │ │ ├── Catalan.svg │ │ ├── Chinese.svg │ │ ├── Czech.svg │ │ ├── Danish.svg │ │ ├── Dutch.svg │ │ ├── English.svg │ │ ├── Finnish.svg │ │ ├── French.svg │ │ ├── German.svg │ │ ├── Greek.svg │ │ ├── Hebrew.svg │ │ ├── Iranian.svg │ │ ├── Italian.svg │ │ ├── Japanese.svg │ │ ├── Korean.svg │ │ ├── NTSC-J.svg │ │ ├── NTSC-U.svg │ │ ├── Non-PS1.svg │ │ ├── Norwegian.svg │ │ ├── Other.svg │ │ ├── PAL.svg │ │ ├── Polish.svg │ │ ├── Portuguese.svg │ │ ├── Russian.svg │ │ ├── Spanish.svg │ │ ├── Swedish.svg │ │ ├── Turkish.svg │ │ └── sources.txt │ ├── placeholder.png │ ├── ra-generic-user.png │ ├── ra-icon.webp │ ├── sources.txt │ ├── star-0.svg │ ├── star-1.svg │ ├── star-2.svg │ ├── star-3.svg │ ├── star-4.svg │ ├── star-5.svg │ ├── trophy-icon-gray.svg │ ├── trophy-icon-star.svg │ ├── trophy-icon.svg │ └── warning.svg │ ├── no-save.png │ ├── overlays │ ├── OVERLAY_CREDITS_AND_LICENSE.md │ ├── psx.webp │ └── psx.yml │ ├── shaders │ ├── Cccalibrator.glsl │ ├── crt-lottes.glsl │ ├── dolphinfx │ │ ├── crt │ │ │ └── CRT-HYLLIAN.glsl │ │ ├── edge-smoothing │ │ │ ├── DDT.glsl │ │ │ └── XBR.glsl │ │ ├── pixel-art │ │ │ └── PIXELLATE.glsl │ │ └── scanlines.glsl │ ├── reshade │ │ ├── README.md │ │ ├── REFERENCE.md │ │ ├── Shaders │ │ │ ├── Blending.fxh │ │ │ ├── CRT-NewPixie.fx │ │ │ ├── CRTLottes2.fx │ │ │ ├── Daltonize.fx │ │ │ ├── Deband.fx │ │ │ ├── DisplayDepth.fx │ │ │ ├── DrawText.fxh │ │ │ ├── FilmGrain2.fx │ │ │ ├── LUT.fx │ │ │ ├── Macros.fxh │ │ │ ├── ReShade.fxh │ │ │ ├── ReShadeUI.fxh │ │ │ ├── TriDither.fxh │ │ │ ├── UIMask.fx │ │ │ ├── anti-aliasing │ │ │ │ └── fxaa.fx │ │ │ ├── edge-smoothing │ │ │ │ └── super-xbr.fx │ │ │ ├── interpolation │ │ │ │ └── bicubic.fx │ │ │ ├── misc │ │ │ │ └── multi-LUT.fx │ │ │ ├── ntsc │ │ │ │ └── ntsc-adaptive-lite.fx │ │ │ └── scanlines-abs.fx │ │ ├── Textures │ │ │ ├── FontAtlas.png │ │ │ ├── crt-newpixie │ │ │ │ └── crtframe.png │ │ │ ├── lut.png │ │ │ └── multi-LUT │ │ │ │ ├── grade-composite.png │ │ │ │ └── grade-rgb.png │ │ └── source.txt │ ├── simple-brightness.glsl │ ├── simple-flip.glsl │ ├── simple-gamma.glsl │ └── simple-sharpen.glsl │ ├── sounds │ └── achievements │ │ ├── lbsubmit.wav │ │ ├── message.wav │ │ ├── sources.txt │ │ └── unlock.wav │ └── thirdparty.html ├── dep ├── CMakeLists.txt ├── biscuit │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── clang-format │ ├── cmake │ │ └── biscuit-config.cmake.in │ ├── include │ │ └── biscuit │ │ │ ├── assembler.hpp │ │ │ ├── assert.hpp │ │ │ ├── code_buffer.hpp │ │ │ ├── cpuinfo.hpp │ │ │ ├── csr.hpp │ │ │ ├── isa.hpp │ │ │ ├── label.hpp │ │ │ ├── registers.hpp │ │ │ └── vector.hpp │ └── src │ │ ├── CMakeLists.txt │ │ ├── assembler.cpp │ │ ├── assembler_crypto.cpp │ │ ├── assembler_vector.cpp │ │ ├── code_buffer.cpp │ │ └── cpuinfo.cpp ├── cubeb │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ └── compile_tests │ │ │ └── oss_is_v4.c │ ├── cubeb.vcxproj │ ├── cubeb.vcxproj.filters │ ├── include │ │ └── cubeb │ │ │ ├── cubeb.h │ │ │ └── cubeb_export.h │ ├── src │ │ ├── cubeb-internal.h │ │ ├── cubeb-jni-instances.h │ │ ├── cubeb-jni.cpp │ │ ├── cubeb-jni.h │ │ ├── cubeb-speex-resampler.h │ │ ├── cubeb.c │ │ ├── cubeb_alsa.c │ │ ├── cubeb_assert.h │ │ ├── cubeb_audiounit.cpp │ │ ├── cubeb_jack.cpp │ │ ├── cubeb_log.cpp │ │ ├── cubeb_log.h │ │ ├── cubeb_mixer.cpp │ │ ├── cubeb_mixer.h │ │ ├── cubeb_oss.c │ │ ├── cubeb_osx_run_loop.cpp │ │ ├── cubeb_osx_run_loop.h │ │ ├── cubeb_pulse.c │ │ ├── cubeb_resampler.cpp │ │ ├── cubeb_resampler.h │ │ ├── cubeb_resampler_internal.h │ │ ├── cubeb_ring_array.h │ │ ├── cubeb_ringbuffer.h │ │ ├── cubeb_sndio.c │ │ ├── cubeb_strings.c │ │ ├── cubeb_strings.h │ │ ├── cubeb_tracing.h │ │ ├── cubeb_triple_buffer.h │ │ ├── cubeb_utils.cpp │ │ ├── cubeb_utils.h │ │ ├── cubeb_utils_unix.h │ │ ├── cubeb_utils_win.h │ │ ├── cubeb_wasapi.cpp │ │ └── cubeb_winmm.c │ └── subprojects │ │ └── speex │ │ ├── arch.h │ │ ├── fixed_generic.h │ │ ├── resample.c │ │ ├── resample_neon.h │ │ ├── resample_sse.h │ │ ├── speex_config_types.h │ │ ├── speex_resampler.h │ │ └── stack_alloc.h ├── d3d12ma │ ├── CMakeLists.txt │ ├── d3d12ma.vcxproj │ ├── d3d12ma.vcxproj.filters │ ├── include │ │ └── D3D12MemAlloc.h │ └── src │ │ └── D3D12MemAlloc.cpp ├── fast_float │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── include │ │ └── fast_float │ │ ├── ascii_number.h │ │ ├── bigint.h │ │ ├── decimal_to_binary.h │ │ ├── digit_comparison.h │ │ ├── fast_float.h │ │ ├── fast_table.h │ │ ├── float_common.h │ │ ├── parse_number.h │ │ └── simple_decimal_conversion.h ├── ffmpeg │ ├── COPYING.LGPLv2.1 │ ├── CREDITS │ ├── VERSION │ └── include │ │ ├── libavcodec │ │ ├── ac3_parser.h │ │ ├── adts_parser.h │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── bsf.h │ │ ├── codec.h │ │ ├── codec_desc.h │ │ ├── codec_id.h │ │ ├── codec_par.h │ │ ├── container_fifo.h │ │ ├── d3d11va.h │ │ ├── defs.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── hwcontext_amf.h │ │ ├── hwcontext_oh.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── packet.h │ │ ├── qsv.h │ │ ├── refstruct.h │ │ ├── smpte_436m.h │ │ ├── tdrdi.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── version_major.h │ │ ├── videotoolbox.h │ │ └── vorbis_parser.h │ │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ ├── version.h │ │ └── version_major.h │ │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── ambient_viewing_environment.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── csp.h │ │ ├── des.h │ │ ├── detection_bbox.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── dovi_meta.h │ │ ├── downmix_info.h │ │ ├── encryption_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── executor.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── film_grain_params.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hdr_dynamic_metadata.h │ │ ├── hdr_dynamic_vivid_metadata.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_d3d12va.h │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_mediacodec.h │ │ ├── hwcontext_opencl.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.h │ │ ├── hwcontext_vulkan.h │ │ ├── iamf.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── spherical.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── tx.h │ │ ├── uuid.h │ │ ├── version.h │ │ ├── video_enc_params.h │ │ ├── video_hint.h │ │ └── xtea.h │ │ ├── libswresample │ │ ├── swresample.h │ │ ├── version.h │ │ └── version_major.h │ │ └── libswscale │ │ ├── swscale.h │ │ ├── version.h │ │ └── version_major.h ├── fmt │ ├── .clang-format │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── fmt.vcxproj │ ├── fmt.vcxproj.filters │ ├── include │ │ └── fmt │ │ │ ├── args.h │ │ │ ├── base.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ ├── src │ │ ├── fmt.cc │ │ ├── format.cc │ │ └── os.cc │ └── support │ │ └── cmake │ │ ├── FindSetEnv.cmake │ │ ├── JoinPaths.cmake │ │ ├── fmt-config.cmake.in │ │ └── fmt.pc.in ├── glad │ ├── CMakeLists.txt │ ├── glad.vcxproj │ ├── glad.vcxproj.filters │ ├── include │ │ ├── EGL │ │ │ └── eglplatform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── egl.h │ │ │ ├── gl.h │ │ │ └── wgl.h │ └── src │ │ ├── egl.c │ │ ├── gl.c │ │ └── wgl.c ├── googletest │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googletest.vcxproj │ ├── googletest.vcxproj.filters │ ├── include │ │ └── gtest │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-assertion-result.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── imgui │ ├── CHANGELOG.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.txt │ ├── imgui.natvis │ ├── imgui.vcxproj │ ├── imgui.vcxproj.filters │ ├── include │ │ ├── IconsEmoji.h │ │ ├── IconsFontAwesome6.h │ │ ├── IconsPromptFont.h │ │ ├── imconfig.h │ │ ├── imgui.h │ │ ├── imgui_freetype.h │ │ ├── imgui_internal.h │ │ ├── imgui_stdlib.h │ │ └── imstb_textedit.h │ └── src │ │ ├── imgui.cpp │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_freetype.cpp │ │ ├── imgui_stdlib.cpp │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_truetype.h │ │ └── stb_sprintf.h ├── libchdr │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── include │ │ ├── dr_libs │ │ │ └── dr_flac.h │ │ └── libchdr │ │ │ ├── bitstream.h │ │ │ ├── cdrom.h │ │ │ ├── chd.h │ │ │ ├── chdconfig.h │ │ │ ├── coretypes.h │ │ │ ├── flac.h │ │ │ └── huffman.h │ ├── libchdr.vcxproj │ ├── libchdr.vcxproj.filters │ └── src │ │ ├── libchdr_bitstream.c │ │ ├── libchdr_cdrom.c │ │ ├── libchdr_chd.c │ │ ├── libchdr_flac.c │ │ ├── libchdr_huffman.c │ │ └── link.T ├── lzma │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ ├── 7z.h │ │ ├── 7zAlloc.h │ │ ├── 7zBuf.h │ │ ├── 7zCrc.h │ │ ├── 7zFile.h │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zWindows.h │ │ ├── Alloc.h │ │ ├── Bcj2.h │ │ ├── Bra.h │ │ ├── Compiler.h │ │ ├── CpuArch.h │ │ ├── Delta.h │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.h │ │ ├── Lzma2DecMt.h │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.h │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.h │ │ ├── Xz.h │ │ ├── XzCrc64.h │ │ └── XzEnc.h │ ├── lzma-history.txt │ ├── lzma.txt │ ├── lzma.vcxproj │ ├── lzma.vcxproj.filters │ └── src │ │ ├── 7zAlloc.c │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zStream.c │ │ ├── Alloc.c │ │ ├── Bcj2.c │ │ ├── Bcj2Enc.c │ │ ├── Bra.c │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── CpuArch.c │ │ ├── Delta.c │ │ ├── LzFind.c │ │ ├── LzFindOpt.c │ │ ├── Lzma2Dec.c │ │ ├── Lzma2DecMt.c │ │ ├── Lzma2Enc.c │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaEnc.c │ │ ├── LzmaLib.c │ │ ├── Ppmd7.c │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Sha256.c │ │ ├── Sha256Opt.c │ │ ├── Xz.c │ │ ├── XzCrc64.c │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ └── XzIn.c ├── minizip │ ├── CMakeLists.txt │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── include │ │ ├── ioapi.h │ │ ├── iowin32.h │ │ ├── mztools.h │ │ ├── unzip.h │ │ └── zip.h │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ └── src │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── iowin32.c │ │ ├── mztools.c │ │ ├── unzip.c │ │ └── zip.c ├── msvc │ ├── .gitignore │ └── vsprops │ │ ├── Base.props │ │ ├── BaseApplication.props │ │ ├── Configurations.props │ │ ├── ConsoleApplication.props │ │ ├── DynamicLibrary.props │ │ ├── QtCompile.props │ │ ├── QtCompile.targets │ │ ├── QtCompile.xml │ │ ├── StaticLibrary.props │ │ ├── Targets.props │ │ ├── Toolkit.props │ │ └── Win32Application.props ├── rapidyaml │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── include │ │ ├── c4 │ │ │ ├── base64.hpp │ │ │ ├── blob.hpp │ │ │ ├── c4core.natvis │ │ │ ├── charconv.hpp │ │ │ ├── compiler.hpp │ │ │ ├── config.hpp │ │ │ ├── cpu.hpp │ │ │ ├── dump.hpp │ │ │ ├── error.hpp │ │ │ ├── export.hpp │ │ │ ├── format.hpp │ │ │ ├── language.hpp │ │ │ ├── memory_util.hpp │ │ │ ├── platform.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── std │ │ │ │ ├── std.hpp │ │ │ │ ├── std_fwd.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── string_fwd.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_fwd.hpp │ │ │ ├── substr.hpp │ │ │ ├── substr_fwd.hpp │ │ │ ├── szconv.hpp │ │ │ ├── types.hpp │ │ │ ├── utf.hpp │ │ │ ├── windows.hpp │ │ │ ├── windows_pop.hpp │ │ │ ├── windows_push.hpp │ │ │ └── yml │ │ │ │ ├── common.hpp │ │ │ │ ├── detail │ │ │ │ ├── checks.hpp │ │ │ │ ├── parser_dbg.hpp │ │ │ │ ├── print.hpp │ │ │ │ └── stack.hpp │ │ │ │ ├── emit.def.hpp │ │ │ │ ├── emit.hpp │ │ │ │ ├── export.hpp │ │ │ │ ├── node.hpp │ │ │ │ ├── parse.hpp │ │ │ │ ├── preprocess.hpp │ │ │ │ ├── std │ │ │ │ ├── map.hpp │ │ │ │ ├── std.hpp │ │ │ │ ├── string.hpp │ │ │ │ └── vector.hpp │ │ │ │ ├── tree.hpp │ │ │ │ ├── writer.hpp │ │ │ │ └── yml.hpp │ │ ├── ryml-gdbtypes.py │ │ ├── ryml.hpp │ │ ├── ryml.natvis │ │ └── ryml_std.hpp │ ├── rapidyaml.vcxproj │ ├── rapidyaml.vcxproj.filters │ └── src │ │ └── c4 │ │ ├── base64.cpp │ │ ├── error.cpp │ │ ├── format.cpp │ │ ├── language.cpp │ │ ├── memory_util.cpp │ │ ├── utf.cpp │ │ └── yml │ │ ├── common.cpp │ │ ├── node.cpp │ │ ├── parse.cpp │ │ ├── preprocess.cpp │ │ └── tree.cpp ├── rcheevos │ ├── .editorconfig │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── rc_api_editor.h │ │ ├── rc_api_info.h │ │ ├── rc_api_request.h │ │ ├── rc_api_runtime.h │ │ ├── rc_api_user.h │ │ ├── rc_client.h │ │ ├── rc_client_raintegration.h │ │ ├── rc_consoles.h │ │ ├── rc_error.h │ │ ├── rc_export.h │ │ ├── rc_hash.h │ │ ├── rc_runtime.h │ │ ├── rc_runtime_types.h │ │ ├── rc_util.h │ │ └── rcheevos.h │ ├── rcheevos.vcxproj │ ├── rcheevos.vcxproj.filters │ └── src │ │ ├── rapi │ │ ├── rc_api_common.c │ │ ├── rc_api_common.h │ │ ├── rc_api_editor.c │ │ ├── rc_api_info.c │ │ ├── rc_api_runtime.c │ │ └── rc_api_user.c │ │ ├── rc_client.c │ │ ├── rc_client_external.c │ │ ├── rc_client_external.h │ │ ├── rc_client_external_versions.h │ │ ├── rc_client_internal.h │ │ ├── rc_client_raintegration.c │ │ ├── rc_client_raintegration_internal.h │ │ ├── rc_client_types.natvis │ │ ├── rc_compat.c │ │ ├── rc_compat.h │ │ ├── rc_util.c │ │ ├── rc_version.c │ │ ├── rc_version.h │ │ ├── rcheevos │ │ ├── alloc.c │ │ ├── condition.c │ │ ├── condset.c │ │ ├── consoleinfo.c │ │ ├── format.c │ │ ├── lboard.c │ │ ├── memref.c │ │ ├── operand.c │ │ ├── rc_internal.h │ │ ├── rc_runtime_types.natvis │ │ ├── rc_validate.c │ │ ├── rc_validate.h │ │ ├── richpresence.c │ │ ├── runtime.c │ │ ├── runtime_progress.c │ │ ├── trigger.c │ │ └── value.c │ │ └── rhash │ │ ├── md5.c │ │ └── md5.h ├── reshadefx │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── include │ │ ├── GLSL.std.450.h │ │ ├── effect_codegen.hpp │ │ ├── effect_expression.hpp │ │ ├── effect_lexer.hpp │ │ ├── effect_module.hpp │ │ ├── effect_parser.hpp │ │ ├── effect_preprocessor.hpp │ │ ├── effect_symbol_table.hpp │ │ ├── effect_token.hpp │ │ └── spirv.hpp │ ├── reshadefx.vcxproj │ ├── reshadefx.vcxproj.filters │ └── src │ │ ├── effect_codegen_glsl.cpp │ │ ├── effect_codegen_hlsl.cpp │ │ ├── effect_codegen_spirv.cpp │ │ ├── effect_expression.cpp │ │ ├── effect_lexer.cpp │ │ ├── effect_parser_exp.cpp │ │ ├── effect_parser_stmt.cpp │ │ ├── effect_preprocessor.cpp │ │ ├── effect_symbol_table.cpp │ │ └── effect_symbol_table_intrinsics.inl ├── riscv-disas │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ └── riscv-disas.h │ ├── source.txt │ └── src │ │ └── riscv-disas.c ├── simpleini │ ├── CMakeLists.txt │ ├── LICENCE.txt │ ├── include │ │ ├── ConvertUTF.h │ │ └── SimpleIni.h │ ├── simpleini.vcxproj │ ├── simpleini.vcxproj.filters │ └── src │ │ └── ConvertUTF.c ├── vixl │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENCE │ ├── README.md │ ├── VERSIONS.md │ ├── include │ │ └── vixl │ │ │ ├── aarch32 │ │ │ ├── assembler-aarch32.h │ │ │ ├── constants-aarch32.h │ │ │ ├── disasm-aarch32.h │ │ │ ├── instructions-aarch32.h │ │ │ ├── location-aarch32.h │ │ │ ├── macro-assembler-aarch32.h │ │ │ └── operands-aarch32.h │ │ │ ├── aarch64 │ │ │ ├── abi-aarch64.h │ │ │ ├── assembler-aarch64.h │ │ │ ├── constants-aarch64.h │ │ │ ├── cpu-aarch64.h │ │ │ ├── cpu-features-auditor-aarch64.h │ │ │ ├── debugger-aarch64.h │ │ │ ├── decoder-aarch64.h │ │ │ ├── decoder-constants-aarch64.h │ │ │ ├── decoder-visitor-map-aarch64.h │ │ │ ├── disasm-aarch64.h │ │ │ ├── instructions-aarch64.h │ │ │ ├── macro-assembler-aarch64.h │ │ │ ├── operands-aarch64.h │ │ │ ├── registers-aarch64.h │ │ │ ├── simulator-aarch64.h │ │ │ └── simulator-constants-aarch64.h │ │ │ ├── assembler-base-vixl.h │ │ │ ├── code-buffer-vixl.h │ │ │ ├── code-generation-scopes-vixl.h │ │ │ ├── compiler-intrinsics-vixl.h │ │ │ ├── cpu-features.h │ │ │ ├── globals-vixl.h │ │ │ ├── invalset-vixl.h │ │ │ ├── macro-assembler-interface.h │ │ │ ├── platform-vixl.h │ │ │ ├── pool-manager-impl.h │ │ │ ├── pool-manager.h │ │ │ └── utils-vixl.h │ ├── src │ │ ├── aarch32 │ │ │ ├── assembler-aarch32.cc │ │ │ ├── constants-aarch32.cc │ │ │ ├── disasm-aarch32.cc │ │ │ ├── instructions-aarch32.cc │ │ │ ├── location-aarch32.cc │ │ │ ├── macro-assembler-aarch32.cc │ │ │ └── operands-aarch32.cc │ │ ├── aarch64 │ │ │ ├── assembler-aarch64.cc │ │ │ ├── assembler-sve-aarch64.cc │ │ │ ├── cpu-aarch64.cc │ │ │ ├── cpu-features-auditor-aarch64.cc │ │ │ ├── debugger-aarch64.cc │ │ │ ├── decoder-aarch64.cc │ │ │ ├── disasm-aarch64.cc │ │ │ ├── instructions-aarch64.cc │ │ │ ├── logic-aarch64.cc │ │ │ ├── macro-assembler-aarch64.cc │ │ │ ├── macro-assembler-sve-aarch64.cc │ │ │ ├── operands-aarch64.cc │ │ │ ├── pointer-auth-aarch64.cc │ │ │ ├── registers-aarch64.cc │ │ │ └── simulator-aarch64.cc │ │ ├── code-buffer-vixl.cc │ │ ├── compiler-intrinsics-vixl.cc │ │ ├── cpu-features.cc │ │ └── utils-vixl.cc │ ├── vixl.vcxproj │ └── vixl.vcxproj.filters ├── vulkan │ ├── CMakeLists.txt │ └── include │ │ ├── vk_video │ │ ├── vulkan_video_codec_av1std.h │ │ ├── vulkan_video_codec_av1std_decode.h │ │ ├── vulkan_video_codec_h264std.h │ │ ├── vulkan_video_codec_h264std_decode.h │ │ ├── vulkan_video_codec_h264std_encode.h │ │ ├── vulkan_video_codec_h265std.h │ │ ├── vulkan_video_codec_h265std_decode.h │ │ ├── vulkan_video_codec_h265std_encode.h │ │ └── vulkan_video_codecs_common.h │ │ └── vulkan │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_mem_alloc.h │ │ ├── vk_platform.h │ │ ├── vulkan.h │ │ ├── vulkan_android.h │ │ ├── vulkan_beta.h │ │ ├── vulkan_core.h │ │ ├── vulkan_directfb.h │ │ ├── vulkan_fuchsia.h │ │ ├── vulkan_ggp.h │ │ ├── vulkan_ios.h │ │ ├── vulkan_macos.h │ │ ├── vulkan_metal.h │ │ ├── vulkan_screen.h │ │ ├── vulkan_vi.h │ │ ├── vulkan_wayland.h │ │ ├── vulkan_win32.h │ │ ├── vulkan_xcb.h │ │ ├── vulkan_xlib.h │ │ └── vulkan_xlib_xrandr.h ├── winpixeventruntime │ ├── CMakeLists.txt │ ├── WinPixEventRuntime.props │ ├── bin64 │ │ └── WinPixEventRuntime.dll │ ├── binarm64 │ │ └── WinPixEventRuntime.dll │ ├── include │ │ └── WinPixEventRuntime │ │ │ ├── PIXEvents.h │ │ │ ├── PIXEventsCommon.h │ │ │ ├── pix3.h │ │ │ └── pix3_win.h │ ├── lib64 │ │ └── WinPixEventRuntime.lib │ └── libarm64 │ │ └── WinPixEventRuntime.lib ├── xbyak │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── readme.md │ ├── readme.txt │ └── xbyak │ │ ├── xbyak.h │ │ ├── xbyak_bin2hex.h │ │ ├── xbyak_mnemonic.h │ │ └── xbyak_util.h ├── xxhash │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── xxh_x86dispatch.h │ │ └── xxhash.h │ ├── src │ │ ├── xxh_x86dispatch.c │ │ └── xxhash.c │ ├── xxhash.vcxproj │ └── xxhash.vcxproj.filters └── zydis │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── dependencies │ └── zycore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ └── Zycore │ │ │ ├── Allocator.h │ │ │ ├── Comparison.h │ │ │ ├── Defines.h │ │ │ ├── Format.h │ │ │ ├── LibC.h │ │ │ ├── Object.h │ │ │ ├── Status.h │ │ │ ├── String.h │ │ │ ├── Types.h │ │ │ └── Vector.h │ │ └── src │ │ ├── Allocator.c │ │ ├── Format.c │ │ ├── String.c │ │ └── Vector.c │ ├── include │ └── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Defines.h │ │ ├── Disassembler.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── Segment.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ └── Zydis.h │ ├── src │ ├── Decoder.c │ ├── DecoderData.c │ ├── Disassembler.c │ ├── Formatter.c │ ├── FormatterATT.c │ ├── FormatterBase.c │ ├── FormatterBuffer.c │ ├── FormatterIntel.c │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── GetRelInfo.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ ├── OperandDefinitions.inc │ │ ├── RegisterClassLookup.inc │ │ └── RegisterLookup.inc │ ├── MetaInfo.c │ ├── Mnemonic.c │ ├── Register.c │ ├── Segment.c │ ├── SharedData.c │ ├── String.c │ ├── Utils.c │ └── Zydis.c │ ├── zydis.vcxproj │ └── zydis.vcxproj.filters ├── duckstation.sln ├── extras ├── fonts │ └── promptfont.sfd ├── padtest │ ├── padtest.psexe │ └── padtest.txt └── yamllint-config.yaml ├── scripts ├── check_regression_tests.py ├── deps │ ├── build-dependencies-linux-cross.sh │ ├── build-dependencies-linux.sh │ ├── build-dependencies-mac.sh │ ├── build-dependencies-windows-arm64.bat │ ├── build-dependencies-windows-x64.bat │ ├── build-ffmpeg-linux.sh │ ├── cmake-toolchain-windows-arm64.cmake │ ├── freetype-harfbuzz-soname.patch │ ├── libpng-1.6.50-apng.patch │ ├── qtbase-disable-pcre2-jit.patch │ ├── qtbase-fusion-style.patch │ ├── qtbase-macdeploy-imageformats.patch │ ├── qtbase-window-modal-tahoe.patch │ ├── qttools-disable-clang.patch │ ├── qttools-linguist-without-quick.patch │ └── versions ├── generate_achievement_hash_database.py ├── generate_fullscreen_ui_translation_strings.py ├── generate_release_commit_list.sh ├── packaging │ ├── appimage │ │ ├── apprun-cross.sh │ │ ├── inject-libc-apprun.sh │ │ ├── inject-libc.sh │ │ ├── install-packages.sh │ │ ├── make-appimage.sh │ │ └── make-cross-appimage.sh │ ├── generate-metainfo.sh │ ├── org.duckstation.DuckStation.desktop │ ├── org.duckstation.DuckStation.metainfo.xml.in │ └── org.duckstation.DuckStation.png ├── run_regression_tests.py └── verify_translation_placeholders.py └── src ├── CMakeLists.txt ├── common-tests ├── CMakeLists.txt ├── bitutils_tests.cpp ├── common-tests.vcxproj ├── common-tests.vcxproj.filters ├── file_system_tests.cpp ├── gsvector_tests.cpp ├── gsvector_yuvtorgb_test.cpp ├── hash_tests.cpp ├── path_tests.cpp ├── rectangle_tests.cpp └── string_tests.cpp ├── common ├── CMakeLists.txt ├── align.h ├── assert.cpp ├── assert.h ├── binary_reader_writer.cpp ├── binary_reader_writer.h ├── bitfield.h ├── bitfield.natvis ├── bitutils.h ├── cocoa_tools.h ├── cocoa_tools.mm ├── common.props ├── common.vcxproj ├── common.vcxproj.filters ├── crash_handler.cpp ├── crash_handler.h ├── dimensional_array.h ├── dynamic_library.cpp ├── dynamic_library.h ├── easing.h ├── error.cpp ├── error.h ├── fastjmp.cpp ├── fastjmp.h ├── fastjmp_arm.asm ├── fastjmp_x86.asm ├── fifo_queue.h ├── file_system.cpp ├── file_system.h ├── gsvector.cpp ├── gsvector.h ├── gsvector.natvis ├── gsvector_formatter.h ├── gsvector_neon.h ├── gsvector_nosimd.h ├── gsvector_sse.h ├── hash_combine.h ├── heap_array.h ├── heterogeneous_containers.h ├── intrin.h ├── layered_settings_interface.cpp ├── layered_settings_interface.h ├── log.cpp ├── log.h ├── log_channels.h ├── lru_cache.h ├── md5_digest.cpp ├── md5_digest.h ├── memmap.cpp ├── memmap.h ├── memory_settings_interface.cpp ├── memory_settings_interface.h ├── minizip_helpers.h ├── path.h ├── perf_scope.cpp ├── perf_scope.h ├── progress_callback.cpp ├── progress_callback.h ├── ryml_helpers.h ├── scoped_guard.h ├── settings_interface.h ├── sha1_digest.cpp ├── sha1_digest.h ├── sha256_digest.cpp ├── sha256_digest.h ├── small_string.cpp ├── small_string.h ├── string_pool.cpp ├── string_pool.h ├── string_util.cpp ├── string_util.h ├── task_queue.cpp ├── task_queue.h ├── thirdparty │ ├── SmallVector.cpp │ ├── SmallVector.h │ ├── StackWalker.cpp │ ├── StackWalker.h │ ├── aes.cpp │ ├── aes.h │ ├── llvm.natvis │ ├── usb_key_code_data.h │ └── usb_key_code_data.inl ├── threading.cpp ├── threading.h ├── time_helpers.h ├── timer.cpp ├── timer.h ├── types.h ├── windows_headers.h ├── xorshift_prng.h └── zip_helpers.h ├── core ├── CMakeLists.txt ├── achievements.cpp ├── achievements.h ├── achievements_private.h ├── analog_controller.cpp ├── analog_controller.h ├── analog_joystick.cpp ├── analog_joystick.h ├── bios.cpp ├── bios.h ├── bus.cpp ├── bus.h ├── cdrom.cpp ├── cdrom.h ├── cdrom_async_reader.cpp ├── cdrom_async_reader.h ├── cdrom_subq_replacement.cpp ├── cdrom_subq_replacement.h ├── cheats.cpp ├── cheats.h ├── controller.cpp ├── controller.h ├── core.props ├── core.vcxproj ├── core.vcxproj.filters ├── cpu_code_cache.cpp ├── cpu_code_cache.h ├── cpu_code_cache_private.h ├── cpu_core.cpp ├── cpu_core.h ├── cpu_core_private.h ├── cpu_disasm.cpp ├── cpu_disasm.h ├── cpu_pgxp.cpp ├── cpu_pgxp.h ├── cpu_recompiler.cpp ├── cpu_recompiler.h ├── cpu_recompiler_arm32.cpp ├── cpu_recompiler_arm32.h ├── cpu_recompiler_arm64.cpp ├── cpu_recompiler_arm64.h ├── cpu_recompiler_riscv64.cpp ├── cpu_recompiler_riscv64.h ├── cpu_recompiler_x64.cpp ├── cpu_recompiler_x64.h ├── cpu_types.cpp ├── cpu_types.h ├── ddgo_controller.cpp ├── ddgo_controller.h ├── digital_controller.cpp ├── digital_controller.h ├── dma.cpp ├── dma.h ├── fullscreenui.cpp ├── fullscreenui.h ├── fullscreenui_achievements.cpp ├── fullscreenui_game_list.cpp ├── fullscreenui_private.h ├── fullscreenui_settings.cpp ├── fullscreenui_strings.h ├── fullscreenui_widgets.cpp ├── fullscreenui_widgets.h ├── game_database.cpp ├── game_database.h ├── game_list.cpp ├── game_list.h ├── gdb_server.cpp ├── gdb_server.h ├── gpu.cpp ├── gpu.h ├── gpu_backend.cpp ├── gpu_backend.h ├── gpu_commands.cpp ├── gpu_dump.cpp ├── gpu_dump.h ├── gpu_hw.cpp ├── gpu_hw.h ├── gpu_hw_shadergen.cpp ├── gpu_hw_shadergen.h ├── gpu_hw_texture_cache.cpp ├── gpu_hw_texture_cache.h ├── gpu_presenter.cpp ├── gpu_presenter.h ├── gpu_shadergen.cpp ├── gpu_shadergen.h ├── gpu_sw.cpp ├── gpu_sw.h ├── gpu_sw_rasterizer.cpp ├── gpu_sw_rasterizer.h ├── gpu_sw_rasterizer.inl ├── gpu_sw_rasterizer_avx2.cpp ├── gpu_thread.cpp ├── gpu_thread.h ├── gpu_thread_commands.h ├── gpu_types.h ├── gte.cpp ├── gte.h ├── gte_types.h ├── guncon.cpp ├── guncon.h ├── host.cpp ├── host.h ├── hotkeys.cpp ├── imgui_overlays.cpp ├── imgui_overlays.h ├── input_types.h ├── interrupt_controller.cpp ├── interrupt_controller.h ├── jogcon.cpp ├── jogcon.h ├── justifier.cpp ├── justifier.h ├── mdec.cpp ├── mdec.h ├── memory_card.cpp ├── memory_card.h ├── memory_card_image.cpp ├── memory_card_image.h ├── memory_scanner.cpp ├── memory_scanner.h ├── mips_encoder.h ├── multitap.cpp ├── multitap.h ├── negcon.cpp ├── negcon.h ├── negcon_rumble.cpp ├── negcon_rumble.h ├── pad.cpp ├── pad.h ├── pcdrv.cpp ├── pcdrv.h ├── pch.cpp ├── pch.h ├── performance_counters.cpp ├── performance_counters.h ├── pio.cpp ├── pio.h ├── playstation_mouse.cpp ├── playstation_mouse.h ├── psf_loader.cpp ├── psf_loader.h ├── save_state_version.h ├── settings.cpp ├── settings.h ├── shader_cache_version.h ├── sio.cpp ├── sio.h ├── spu.cpp ├── spu.h ├── system.cpp ├── system.h ├── system_private.h ├── timers.cpp ├── timers.h ├── timing_event.cpp ├── timing_event.h └── types.h ├── duckstation-mini ├── CMakeLists.txt ├── duckstation-mini.aps ├── duckstation-mini.ico ├── duckstation-mini.manifest ├── duckstation-mini.rc ├── duckstation-mini.vcxproj ├── duckstation-mini.vcxproj.filters ├── mini_host.cpp └── resource.h ├── duckstation-qt ├── CMakeLists.txt ├── DuckStation.icns ├── Info.plist.in ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── achievementlogindialog.cpp ├── achievementlogindialog.h ├── achievementlogindialog.ui ├── achievementsettingswidget.cpp ├── achievementsettingswidget.h ├── achievementsettingswidget.ui ├── advancedsettingswidget.cpp ├── advancedsettingswidget.h ├── advancedsettingswidget.ui ├── audiosettingswidget.cpp ├── audiosettingswidget.h ├── audiosettingswidget.ui ├── audiostretchsettingsdialog.ui ├── autoupdaterdialog.cpp ├── autoupdaterdialog.h ├── autoupdaterdialog.ui ├── biossettingswidget.cpp ├── biossettingswidget.h ├── biossettingswidget.ui ├── colorpickerbutton.cpp ├── colorpickerbutton.h ├── consolesettingswidget.cpp ├── consolesettingswidget.h ├── consolesettingswidget.ui ├── controllerbindingwidget.ui ├── controllerbindingwidget_analog_controller.ui ├── controllerbindingwidget_analog_joystick.ui ├── controllerbindingwidget_digital_controller.ui ├── controllerbindingwidget_guncon.ui ├── controllerbindingwidget_justifier.ui ├── controllerbindingwidget_mouse.ui ├── controllerbindingwidget_negcon.ui ├── controllerbindingwidget_negconrumble.ui ├── controllerbindingwidgets.cpp ├── controllerbindingwidgets.h ├── controllerglobalsettingswidget.cpp ├── controllerglobalsettingswidget.h ├── controllerglobalsettingswidget.ui ├── controllermacroeditwidget.ui ├── controllermacrowidget.ui ├── controllersettingswindow.cpp ├── controllersettingswindow.h ├── controllersettingswindow.ui ├── controllersettingwidgetbinder.h ├── coverdownloadwindow.cpp ├── coverdownloadwindow.h ├── coverdownloadwindow.ui ├── debuggeraddbreakpointdialog.ui ├── debuggercodeview.cpp ├── debuggercodeview.h ├── debuggermodels.cpp ├── debuggermodels.h ├── debuggerwindow.cpp ├── debuggerwindow.h ├── debuggerwindow.ui ├── displaywidget.cpp ├── displaywidget.h ├── duckstation-qt.aps ├── duckstation-qt.ico ├── duckstation-qt.rc ├── duckstation-qt.vcxproj ├── duckstation-qt.vcxproj.filters ├── emptygamelistwidget.ui ├── emulationsettingswidget.cpp ├── emulationsettingswidget.h ├── emulationsettingswidget.ui ├── foldersettingswidget.cpp ├── foldersettingswidget.h ├── foldersettingswidget.ui ├── gamecheatcodechoiceeditordialog.ui ├── gamecheatcodeeditordialog.ui ├── gamecheatsettingswidget.cpp ├── gamecheatsettingswidget.h ├── gamecheatsettingswidget.ui ├── gamelistrefreshthread.cpp ├── gamelistrefreshthread.h ├── gamelistsettingswidget.cpp ├── gamelistsettingswidget.h ├── gamelistsettingswidget.ui ├── gamelistwidget.cpp ├── gamelistwidget.h ├── gamelistwidget.ui ├── gamepatchdetailswidget.ui ├── gamepatchsettingswidget.cpp ├── gamepatchsettingswidget.h ├── gamepatchsettingswidget.ui ├── gamesummarywidget.cpp ├── gamesummarywidget.h ├── gamesummarywidget.ui ├── graphicssettingswidget.cpp ├── graphicssettingswidget.h ├── graphicssettingswidget.ui ├── hotkeysettingswidget.cpp ├── hotkeysettingswidget.h ├── inputbindingdialog.cpp ├── inputbindingdialog.h ├── inputbindingdialog.ui ├── inputbindingwidgets.cpp ├── inputbindingwidgets.h ├── interfacesettingswidget.cpp ├── interfacesettingswidget.h ├── interfacesettingswidget.ui ├── isobrowserwindow.cpp ├── isobrowserwindow.h ├── isobrowserwindow.ui ├── logwindow.cpp ├── logwindow.h ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── memorycardeditorwindow.cpp ├── memorycardeditorwindow.h ├── memorycardeditorwindow.ui ├── memorycardrenamefiledialog.ui ├── memorycardsettingswidget.cpp ├── memorycardsettingswidget.h ├── memoryeditorwindow.cpp ├── memoryeditorwindow.h ├── memoryeditorwindow.ui ├── memoryscannerwindow.cpp ├── memoryscannerwindow.h ├── memoryscannerwindow.ui ├── memoryviewwidget.cpp ├── memoryviewwidget.h ├── pch.cpp ├── pch.h ├── postprocessingchainconfigwidget.ui ├── postprocessingoverlayconfigwidget.ui ├── postprocessingselectshaderdialog.ui ├── postprocessingsettingswidget.cpp ├── postprocessingsettingswidget.h ├── qt.conf ├── qt.conf.win ├── qthost.cpp ├── qthost.h ├── qtprogresscallback.cpp ├── qtprogresscallback.h ├── qtthemes.cpp ├── qttranslations.inl ├── qtutils.cpp ├── qtutils.h ├── resource.h ├── resources │ ├── controllers │ │ ├── analog_controller.svg │ │ ├── analog_joystick.svg │ │ ├── digital_controller.svg │ │ ├── guncon.svg │ │ ├── justifier.svg │ │ ├── mouse.svg │ │ └── negcon.svg │ ├── duckstation-qt.qrc │ ├── generate.sh │ ├── icons │ │ ├── QT.png │ │ ├── UpdateDuck.png │ │ ├── applications-system.png │ │ ├── applications-system@2x.png │ │ ├── black │ │ │ ├── index.theme │ │ │ └── svg │ │ │ │ ├── add-animation.svg │ │ │ │ ├── add-line.svg │ │ │ │ ├── alert-line.svg │ │ │ │ ├── arrow-down-line.svg │ │ │ │ ├── arrow-left-right-line.svg │ │ │ │ ├── arrow-up-line.svg │ │ │ │ ├── artboard-2-line.svg │ │ │ │ ├── camera-switch-line.svg │ │ │ │ ├── chat-off-line.svg │ │ │ │ ├── cheats-line.svg │ │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ │ ├── chip-2-line.svg │ │ │ │ ├── chip-line.svg │ │ │ │ ├── close-line.svg │ │ │ │ ├── code-line.svg │ │ │ │ ├── controller-digital-line.svg │ │ │ │ ├── controller-line.svg │ │ │ │ ├── controller-strike-line.svg │ │ │ │ ├── controllers-line.svg │ │ │ │ ├── debug-step-into-line.svg │ │ │ │ ├── debug-step-out-line.svg │ │ │ │ ├── debug-step-over-line.svg │ │ │ │ ├── debug-toggle-breakpoint.svg │ │ │ │ ├── debug-trace-line.svg │ │ │ │ ├── debugger-clear-breakpoint.svg │ │ │ │ ├── debugger-dump-address.svg │ │ │ │ ├── debugger-go-to-address.svg │ │ │ │ ├── debugger-go-to-cursor.svg │ │ │ │ ├── debugger-go-to-pc.svg │ │ │ │ ├── disc-eject-line.svg │ │ │ │ ├── disc-line.svg │ │ │ │ ├── door-open-line.svg │ │ │ │ ├── download-2-line.svg │ │ │ │ ├── eject-line.svg │ │ │ │ ├── emulation-line.svg │ │ │ │ ├── export-line.svg │ │ │ │ ├── file-add-line.svg │ │ │ │ ├── file-line.svg │ │ │ │ ├── file-list-line.svg │ │ │ │ ├── file-music-line.svg │ │ │ │ ├── file-reduce-line.svg │ │ │ │ ├── file-search-line.svg │ │ │ │ ├── file-settings-line.svg │ │ │ │ ├── file-unknow-line.svg │ │ │ │ ├── filter-line.svg │ │ │ │ ├── flashlight-line.svg │ │ │ │ ├── folder-add-line.svg │ │ │ │ ├── folder-open-line.svg │ │ │ │ ├── folder-reduce-line.svg │ │ │ │ ├── folder-settings-line.svg │ │ │ │ ├── fullscreen-line.svg │ │ │ │ ├── function-line.svg │ │ │ │ ├── global-line.svg │ │ │ │ ├── guncon-line.svg │ │ │ │ ├── image-fill.svg │ │ │ │ ├── import-line.svg │ │ │ │ ├── information-line.svg │ │ │ │ ├── joystick-line.svg │ │ │ │ ├── keyboard-line.svg │ │ │ │ ├── language.svg │ │ │ │ ├── layout-grid-line.svg │ │ │ │ ├── lightbulb-line.svg │ │ │ │ ├── list-check.svg │ │ │ │ ├── mag-line.svg │ │ │ │ ├── memcard-line.svg │ │ │ │ ├── minus-line.svg │ │ │ │ ├── mouse-line.svg │ │ │ │ ├── multi-discs.svg │ │ │ │ ├── negcon-line.svg │ │ │ │ ├── paint-brush-line.svg │ │ │ │ ├── pause-line.svg │ │ │ │ ├── play-circle-line.svg │ │ │ │ ├── play-line.svg │ │ │ │ ├── play-list-2-line.svg │ │ │ │ ├── price-tag-3-line.svg │ │ │ │ ├── pushpin-line.svg │ │ │ │ ├── refresh-line.svg │ │ │ │ ├── restart-line.svg │ │ │ │ ├── save-3-line.svg │ │ │ │ ├── screenshot-2-line.svg │ │ │ │ ├── settings-3-line.svg │ │ │ │ ├── shader-glsl.svg │ │ │ │ ├── shader-reshade.svg │ │ │ │ ├── shader-slang.svg │ │ │ │ ├── shut-down-line.svg │ │ │ │ ├── sort-alphabet-asc.svg │ │ │ │ ├── sparkle-fill.svg │ │ │ │ ├── sparkling-line.svg │ │ │ │ ├── sun-fill.svg │ │ │ │ ├── trash-fill.svg │ │ │ │ ├── trophy-line.svg │ │ │ │ ├── tv-2-line.svg │ │ │ │ ├── video-on-line.svg │ │ │ │ ├── volume-up-line.svg │ │ │ │ └── window-2-line.svg │ │ ├── debug-execute-from-cursor.png │ │ ├── debug-execute-to-cursor.png │ │ ├── debug-pc.png │ │ ├── debug-pc@2x.png │ │ ├── debug-run-cursor.png │ │ ├── debug-run.png │ │ ├── debug-step-instruction.png │ │ ├── debug-step-into-instruction.png │ │ ├── debug-step-into.png │ │ ├── debug-step-out.png │ │ ├── debug-step-over.png │ │ ├── debug-trace.png │ │ ├── discord.png │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── de@2x.png │ │ │ ├── en.png │ │ │ ├── en@2x.png │ │ │ ├── es-ES.png │ │ │ ├── es-ES@2x.png │ │ │ ├── es.png │ │ │ ├── es@2x.png │ │ │ ├── fr.png │ │ │ ├── fr@2x.png │ │ │ ├── he.png │ │ │ ├── he@2x.png │ │ │ ├── id.png │ │ │ ├── id@2x.png │ │ │ ├── it.png │ │ │ ├── it@2x.png │ │ │ ├── ja.png │ │ │ ├── ja@2x.png │ │ │ ├── ko.png │ │ │ ├── ko@2x.png │ │ │ ├── nl.png │ │ │ ├── nl@2x.png │ │ │ ├── pl.png │ │ │ ├── pl@2x.png │ │ │ ├── pt-BR.png │ │ │ ├── pt-BR@2x.png │ │ │ ├── pt-PT.png │ │ │ ├── pt-PT@2x.png │ │ │ ├── ru.png │ │ │ ├── ru@2x.png │ │ │ ├── sv.png │ │ │ ├── sv@2x.png │ │ │ ├── tr.png │ │ │ ├── tr@2x.png │ │ │ ├── zh-CN.png │ │ │ └── zh-CN@2x.png │ │ ├── github.png │ │ ├── media-record.png │ │ ├── media-record@2x.png │ │ ├── system-search.png │ │ ├── system-search@2x.png │ │ └── white │ │ │ ├── index.theme │ │ │ └── svg │ │ │ ├── add-animation.svg │ │ │ ├── add-line.svg │ │ │ ├── alert-line.svg │ │ │ ├── arrow-down-line.svg │ │ │ ├── arrow-left-right-line.svg │ │ │ ├── arrow-up-line.svg │ │ │ ├── artboard-2-line.svg │ │ │ ├── camera-switch-line.svg │ │ │ ├── chat-off-line.svg │ │ │ ├── cheats-line.svg │ │ │ ├── checkbox-checked-disabled.svg │ │ │ ├── checkbox-checked-pressed.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-indeterminate-disabled.svg │ │ │ ├── checkbox-indeterminate-pressed.svg │ │ │ ├── checkbox-indeterminate.svg │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ ├── checkbox-unchecked-disabled.svg │ │ │ ├── checkbox-unchecked-pressed.svg │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── chip-2-line.svg │ │ │ ├── chip-line.svg │ │ │ ├── close-line.svg │ │ │ ├── code-line.svg │ │ │ ├── controller-digital-line.svg │ │ │ ├── controller-line.svg │ │ │ ├── controller-strike-line.svg │ │ │ ├── controllers-line.svg │ │ │ ├── debug-step-into-line.svg │ │ │ ├── debug-step-out-line.svg │ │ │ ├── debug-step-over-line.svg │ │ │ ├── debug-toggle-breakpoint.svg │ │ │ ├── debug-trace-line.svg │ │ │ ├── debugger-clear-breakpoint.svg │ │ │ ├── debugger-dump-address.svg │ │ │ ├── debugger-go-to-address.svg │ │ │ ├── debugger-go-to-cursor.svg │ │ │ ├── debugger-go-to-pc.svg │ │ │ ├── disc-eject-line.svg │ │ │ ├── disc-line.svg │ │ │ ├── door-open-line.svg │ │ │ ├── download-2-line.svg │ │ │ ├── eject-line.svg │ │ │ ├── emulation-line.svg │ │ │ ├── export-line.svg │ │ │ ├── file-add-line.svg │ │ │ ├── file-line.svg │ │ │ ├── file-list-line.svg │ │ │ ├── file-music-line.svg │ │ │ ├── file-reduce-line.svg │ │ │ ├── file-search-line.svg │ │ │ ├── file-settings-line.svg │ │ │ ├── file-unknow-line.svg │ │ │ ├── filter-line.svg │ │ │ ├── flashlight-line.svg │ │ │ ├── folder-add-line.svg │ │ │ ├── folder-open-line.svg │ │ │ ├── folder-reduce-line.svg │ │ │ ├── folder-settings-line.svg │ │ │ ├── fullscreen-line.svg │ │ │ ├── function-line.svg │ │ │ ├── global-line.svg │ │ │ ├── guncon-line.svg │ │ │ ├── image-fill.svg │ │ │ ├── import-line.svg │ │ │ ├── information-line.svg │ │ │ ├── joystick-line.svg │ │ │ ├── keyboard-line.svg │ │ │ ├── language.svg │ │ │ ├── layout-grid-line.svg │ │ │ ├── lightbulb-line.svg │ │ │ ├── list-check.svg │ │ │ ├── mag-line.svg │ │ │ ├── memcard-line.svg │ │ │ ├── minus-line.svg │ │ │ ├── mouse-line.svg │ │ │ ├── multi-discs.svg │ │ │ ├── negcon-line.svg │ │ │ ├── paint-brush-line.svg │ │ │ ├── pause-line.svg │ │ │ ├── play-circle-line.svg │ │ │ ├── play-line.svg │ │ │ ├── play-list-2-line.svg │ │ │ ├── price-tag-3-line.svg │ │ │ ├── pushpin-line.svg │ │ │ ├── refresh-line.svg │ │ │ ├── restart-line.svg │ │ │ ├── save-3-line.svg │ │ │ ├── screenshot-2-line.svg │ │ │ ├── settings-3-line.svg │ │ │ ├── shader-glsl.svg │ │ │ ├── shader-reshade.svg │ │ │ ├── shader-slang.svg │ │ │ ├── shut-down-line.svg │ │ │ ├── sort-alphabet-asc.svg │ │ │ ├── sparkle-fill.svg │ │ │ ├── sparkling-line.svg │ │ │ ├── sun-fill.svg │ │ │ ├── trash-fill.svg │ │ │ ├── trophy-line.svg │ │ │ ├── tv-2-line.svg │ │ │ ├── video-on-line.svg │ │ │ ├── volume-up-line.svg │ │ │ └── window-2-line.svg │ └── qdarkstyle │ │ ├── arrow_down.png │ │ ├── arrow_down@2x.png │ │ ├── arrow_down_disabled.png │ │ ├── arrow_down_disabled@2x.png │ │ ├── arrow_down_focus.png │ │ ├── arrow_down_focus@2x.png │ │ ├── arrow_down_pressed.png │ │ ├── arrow_down_pressed@2x.png │ │ ├── arrow_left.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_left_disabled.png │ │ ├── arrow_left_disabled@2x.png │ │ ├── arrow_left_focus.png │ │ ├── arrow_left_focus@2x.png │ │ ├── arrow_left_pressed.png │ │ ├── arrow_left_pressed@2x.png │ │ ├── arrow_right.png │ │ ├── arrow_right@2x.png │ │ ├── arrow_right_disabled.png │ │ ├── arrow_right_disabled@2x.png │ │ ├── arrow_right_focus.png │ │ ├── arrow_right_focus@2x.png │ │ ├── arrow_right_pressed.png │ │ ├── arrow_right_pressed@2x.png │ │ ├── arrow_up.png │ │ ├── arrow_up@2x.png │ │ ├── arrow_up_disabled.png │ │ ├── arrow_up_disabled@2x.png │ │ ├── arrow_up_focus.png │ │ ├── arrow_up_focus@2x.png │ │ ├── arrow_up_pressed.png │ │ ├── arrow_up_pressed@2x.png │ │ ├── base_icon.png │ │ ├── base_icon@2x.png │ │ ├── base_icon_disabled.png │ │ ├── base_icon_disabled@2x.png │ │ ├── base_icon_focus.png │ │ ├── base_icon_focus@2x.png │ │ ├── base_icon_pressed.png │ │ ├── base_icon_pressed@2x.png │ │ ├── branch_closed.png │ │ ├── branch_closed@2x.png │ │ ├── branch_closed_disabled.png │ │ ├── branch_closed_disabled@2x.png │ │ ├── branch_closed_focus.png │ │ ├── branch_closed_focus@2x.png │ │ ├── branch_closed_pressed.png │ │ ├── branch_closed_pressed@2x.png │ │ ├── branch_end.png │ │ ├── branch_end@2x.png │ │ ├── branch_end_disabled.png │ │ ├── branch_end_disabled@2x.png │ │ ├── branch_end_focus.png │ │ ├── branch_end_focus@2x.png │ │ ├── branch_end_pressed.png │ │ ├── branch_end_pressed@2x.png │ │ ├── branch_line.png │ │ ├── branch_line@2x.png │ │ ├── branch_line_disabled.png │ │ ├── branch_line_disabled@2x.png │ │ ├── branch_line_focus.png │ │ ├── branch_line_focus@2x.png │ │ ├── branch_line_pressed.png │ │ ├── branch_line_pressed@2x.png │ │ ├── branch_more.png │ │ ├── branch_more@2x.png │ │ ├── branch_more_disabled.png │ │ ├── branch_more_disabled@2x.png │ │ ├── branch_more_focus.png │ │ ├── branch_more_focus@2x.png │ │ ├── branch_more_pressed.png │ │ ├── branch_more_pressed@2x.png │ │ ├── branch_open.png │ │ ├── branch_open@2x.png │ │ ├── branch_open_disabled.png │ │ ├── branch_open_disabled@2x.png │ │ ├── branch_open_focus.png │ │ ├── branch_open_focus@2x.png │ │ ├── branch_open_pressed.png │ │ ├── branch_open_pressed@2x.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked@2x.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_disabled@2x.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_checked_focus@2x.png │ │ ├── checkbox_checked_pressed.png │ │ ├── checkbox_checked_pressed@2x.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate@2x.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_disabled@2x.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_indeterminate_focus@2x.png │ │ ├── checkbox_indeterminate_pressed.png │ │ ├── checkbox_indeterminate_pressed@2x.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked@2x.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_disabled@2x.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── checkbox_unchecked_focus@2x.png │ │ ├── checkbox_unchecked_pressed.png │ │ ├── checkbox_unchecked_pressed@2x.png │ │ ├── line_horizontal.png │ │ ├── line_horizontal@2x.png │ │ ├── line_horizontal_disabled.png │ │ ├── line_horizontal_disabled@2x.png │ │ ├── line_horizontal_focus.png │ │ ├── line_horizontal_focus@2x.png │ │ ├── line_horizontal_pressed.png │ │ ├── line_horizontal_pressed@2x.png │ │ ├── line_vertical.png │ │ ├── line_vertical@2x.png │ │ ├── line_vertical_disabled.png │ │ ├── line_vertical_disabled@2x.png │ │ ├── line_vertical_focus.png │ │ ├── line_vertical_focus@2x.png │ │ ├── line_vertical_pressed.png │ │ ├── line_vertical_pressed@2x.png │ │ ├── radio_checked.png │ │ ├── radio_checked@2x.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_disabled@2x.png │ │ ├── radio_checked_focus.png │ │ ├── radio_checked_focus@2x.png │ │ ├── radio_checked_pressed.png │ │ ├── radio_checked_pressed@2x.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked@2x.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_disabled@2x.png │ │ ├── radio_unchecked_focus.png │ │ ├── radio_unchecked_focus@2x.png │ │ ├── radio_unchecked_pressed.png │ │ ├── radio_unchecked_pressed@2x.png │ │ ├── style.qss │ │ ├── toolbar_move_horizontal.png │ │ ├── toolbar_move_horizontal@2x.png │ │ ├── toolbar_move_horizontal_disabled.png │ │ ├── toolbar_move_horizontal_disabled@2x.png │ │ ├── toolbar_move_horizontal_focus.png │ │ ├── toolbar_move_horizontal_focus@2x.png │ │ ├── toolbar_move_horizontal_pressed.png │ │ ├── toolbar_move_horizontal_pressed@2x.png │ │ ├── toolbar_move_vertical.png │ │ ├── toolbar_move_vertical@2x.png │ │ ├── toolbar_move_vertical_disabled.png │ │ ├── toolbar_move_vertical_disabled@2x.png │ │ ├── toolbar_move_vertical_focus.png │ │ ├── toolbar_move_vertical_focus@2x.png │ │ ├── toolbar_move_vertical_pressed.png │ │ ├── toolbar_move_vertical_pressed@2x.png │ │ ├── toolbar_separator_horizontal.png │ │ ├── toolbar_separator_horizontal@2x.png │ │ ├── toolbar_separator_horizontal_disabled.png │ │ ├── toolbar_separator_horizontal_disabled@2x.png │ │ ├── toolbar_separator_horizontal_focus.png │ │ ├── toolbar_separator_horizontal_focus@2x.png │ │ ├── toolbar_separator_horizontal_pressed.png │ │ ├── toolbar_separator_horizontal_pressed@2x.png │ │ ├── toolbar_separator_vertical.png │ │ ├── toolbar_separator_vertical@2x.png │ │ ├── toolbar_separator_vertical_disabled.png │ │ ├── toolbar_separator_vertical_disabled@2x.png │ │ ├── toolbar_separator_vertical_focus.png │ │ ├── toolbar_separator_vertical_focus@2x.png │ │ ├── toolbar_separator_vertical_pressed.png │ │ ├── toolbar_separator_vertical_pressed@2x.png │ │ ├── transparent.png │ │ ├── transparent@2x.png │ │ ├── transparent_disabled.png │ │ ├── transparent_disabled@2x.png │ │ ├── transparent_focus.png │ │ ├── transparent_focus@2x.png │ │ ├── transparent_pressed.png │ │ ├── transparent_pressed@2x.png │ │ ├── window_close.png │ │ ├── window_close@2x.png │ │ ├── window_close_disabled.png │ │ ├── window_close_disabled@2x.png │ │ ├── window_close_focus.png │ │ ├── window_close_focus@2x.png │ │ ├── window_close_pressed.png │ │ ├── window_close_pressed@2x.png │ │ ├── window_grip.png │ │ ├── window_grip@2x.png │ │ ├── window_grip_disabled.png │ │ ├── window_grip_disabled@2x.png │ │ ├── window_grip_focus.png │ │ ├── window_grip_focus@2x.png │ │ ├── window_grip_pressed.png │ │ ├── window_grip_pressed@2x.png │ │ ├── window_minimize.png │ │ ├── window_minimize@2x.png │ │ ├── window_minimize_disabled.png │ │ ├── window_minimize_disabled@2x.png │ │ ├── window_minimize_focus.png │ │ ├── window_minimize_focus@2x.png │ │ ├── window_minimize_pressed.png │ │ ├── window_minimize_pressed@2x.png │ │ ├── window_undock.png │ │ ├── window_undock@2x.png │ │ ├── window_undock_disabled.png │ │ ├── window_undock_disabled@2x.png │ │ ├── window_undock_focus.png │ │ ├── window_undock_focus@2x.png │ │ ├── window_undock_pressed.png │ │ └── window_undock_pressed@2x.png ├── selectdiscdialog.cpp ├── selectdiscdialog.h ├── selectdiscdialog.ui ├── settingswindow.cpp ├── settingswindow.h ├── settingswindow.ui ├── settingwidgetbinder.h ├── setupwizarddialog.cpp ├── setupwizarddialog.h ├── setupwizarddialog.ui ├── texturereplacementsettingsdialog.ui ├── togglebutton.cpp ├── togglebutton.h ├── translations │ ├── create-update-and-edit-language.bat │ ├── duckstation-qt_de.ts │ ├── duckstation-qt_en.ts │ ├── duckstation-qt_es-ES.ts │ ├── duckstation-qt_es.ts │ ├── duckstation-qt_fr.ts │ ├── duckstation-qt_he.ts │ ├── duckstation-qt_id.ts │ ├── duckstation-qt_it.ts │ ├── duckstation-qt_ja.ts │ ├── duckstation-qt_ko.ts │ ├── duckstation-qt_nl.ts │ ├── duckstation-qt_pl.ts │ ├── duckstation-qt_pt-BR.ts │ ├── duckstation-qt_pt-PT.ts │ ├── duckstation-qt_ru.ts │ ├── duckstation-qt_sv.ts │ ├── duckstation-qt_tr.ts │ ├── duckstation-qt_zh-CN.ts │ └── update-and-edit-english.bat ├── update_translations.bat └── vcruntimecheck.cpp ├── duckstation-regtest ├── CMakeLists.txt ├── duckstation-regtest.vcxproj ├── duckstation-regtest.vcxproj.filters └── regtest_host.cpp ├── scmversion ├── .gitignore ├── CMakeLists.txt ├── gen_scmversion.bat ├── gen_scmversion.sh ├── scmversion.h ├── scmversion.vcxproj ├── scmversion.vcxproj.filters └── update_rc_version.bat ├── updater ├── CMakeLists.txt ├── Info.plist.in ├── Updater.icns ├── cocoa_main.mm ├── cocoa_progress_callback.h ├── cocoa_progress_callback.mm ├── resource.h ├── updater.cpp ├── updater.h ├── updater.manifest ├── updater.rc ├── updater.vcxproj ├── updater.vcxproj.filters ├── updater_progress_callback.h ├── win32_main.cpp ├── win32_progress_callback.cpp └── win32_progress_callback.h ├── util-tests ├── CMakeLists.txt ├── animated_image_tests.cpp ├── cue_parser_tests.cpp ├── elf_parser_tests.cpp ├── image_tests.cpp ├── util-tests.vcxproj └── util-tests.vcxproj.filters └── util ├── CMakeLists.txt ├── animated_image.cpp ├── animated_image.h ├── audio_stream.cpp ├── audio_stream.h ├── cd_image.cpp ├── cd_image.h ├── cd_image_chd.cpp ├── cd_image_cue.cpp ├── cd_image_device.cpp ├── cd_image_hasher.cpp ├── cd_image_hasher.h ├── cd_image_m3u.cpp ├── cd_image_mds.cpp ├── cd_image_memory.cpp ├── cd_image_pbp.cpp ├── cd_image_ppf.cpp ├── compress_helpers.cpp ├── compress_helpers.h ├── cubeb_audio_stream.cpp ├── cue_parser.cpp ├── cue_parser.h ├── d3d11_device.cpp ├── d3d11_device.h ├── d3d11_pipeline.cpp ├── d3d11_pipeline.h ├── d3d11_stream_buffer.cpp ├── d3d11_stream_buffer.h ├── d3d11_texture.cpp ├── d3d11_texture.h ├── d3d12_builders.cpp ├── d3d12_builders.h ├── d3d12_descriptor_heap_manager.cpp ├── d3d12_descriptor_heap_manager.h ├── d3d12_device.cpp ├── d3d12_device.h ├── d3d12_pipeline.cpp ├── d3d12_pipeline.h ├── d3d12_stream_buffer.cpp ├── d3d12_stream_buffer.h ├── d3d12_texture.cpp ├── d3d12_texture.h ├── d3d_common.cpp ├── d3d_common.h ├── dinput_source.cpp ├── dinput_source.h ├── dyn_shaderc.h ├── dyn_spirv_cross.h ├── elf_file.cpp ├── elf_file.h ├── gpu_device.cpp ├── gpu_device.h ├── gpu_framebuffer_manager.h ├── gpu_shader_cache.cpp ├── gpu_shader_cache.h ├── gpu_texture.cpp ├── gpu_texture.h ├── host.cpp ├── host.h ├── http_downloader.cpp ├── http_downloader.h ├── http_downloader_curl.cpp ├── http_downloader_winhttp.cpp ├── image.cpp ├── image.h ├── imgui_animated.h ├── imgui_gsvector.h ├── imgui_manager.cpp ├── imgui_manager.h ├── ini_settings_interface.cpp ├── ini_settings_interface.h ├── input_manager.cpp ├── input_manager.h ├── input_source.cpp ├── input_source.h ├── iso_reader.cpp ├── iso_reader.h ├── media_capture.cpp ├── media_capture.h ├── metal_device.h ├── metal_device.mm ├── metal_layer.h ├── metal_shaders.metal ├── metal_stream_buffer.h ├── metal_stream_buffer.mm ├── opengl_context.cpp ├── opengl_context.h ├── opengl_context_agl.h ├── opengl_context_agl.mm ├── opengl_context_egl.cpp ├── opengl_context_egl.h ├── opengl_context_egl_wayland.cpp ├── opengl_context_egl_wayland.h ├── opengl_context_egl_xcb.cpp ├── opengl_context_egl_xcb.h ├── opengl_context_egl_xlib.cpp ├── opengl_context_egl_xlib.h ├── opengl_context_sdl.cpp ├── opengl_context_sdl.h ├── opengl_context_wgl.cpp ├── opengl_context_wgl.h ├── opengl_device.cpp ├── opengl_device.h ├── opengl_loader.h ├── opengl_pipeline.cpp ├── opengl_pipeline.h ├── opengl_stream_buffer.cpp ├── opengl_stream_buffer.h ├── opengl_texture.cpp ├── opengl_texture.h ├── page_fault_handler.cpp ├── page_fault_handler.h ├── pch.cpp ├── pch.h ├── platform_misc.h ├── platform_misc_mac.mm ├── platform_misc_unix.cpp ├── platform_misc_win32.cpp ├── postprocessing.cpp ├── postprocessing.h ├── postprocessing_shader.cpp ├── postprocessing_shader.h ├── postprocessing_shader_fx.cpp ├── postprocessing_shader_fx.h ├── postprocessing_shader_glsl.cpp ├── postprocessing_shader_glsl.h ├── postprocessing_shader_slang.cpp ├── postprocessing_shader_slang.h ├── sdl_audio_stream.cpp ├── sdl_input_source.cpp ├── sdl_input_source.h ├── shadergen.cpp ├── shadergen.h ├── shiftjis.cpp ├── shiftjis.h ├── sockets.cpp ├── sockets.h ├── spirv_module.cpp ├── spirv_module.h ├── state_wrapper.cpp ├── state_wrapper.h ├── texture_decompress.cpp ├── texture_decompress.h ├── util.props ├── util.vcxproj ├── util.vcxproj.filters ├── vulkan_builders.cpp ├── vulkan_builders.h ├── vulkan_device.cpp ├── vulkan_device.h ├── vulkan_entry_points.h ├── vulkan_entry_points.inl ├── vulkan_loader.cpp ├── vulkan_loader.h ├── vulkan_pipeline.cpp ├── vulkan_pipeline.h ├── vulkan_stream_buffer.cpp ├── vulkan_stream_buffer.h ├── vulkan_swap_chain.cpp ├── vulkan_swap_chain.h ├── vulkan_texture.cpp ├── vulkan_texture.h ├── wav_reader_writer.cpp ├── wav_reader_writer.h ├── win32_raw_input_source.cpp ├── win32_raw_input_source.h ├── window_info.cpp ├── window_info.h ├── x11_tools.cpp ├── x11_tools.h ├── xinput_source.cpp └── xinput_source.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/gamedb-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.github/workflows/gamedb-lint.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/upload-caches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.github/workflows/upload-caches.yml -------------------------------------------------------------------------------- /.github/workflows/windows-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.github/workflows/windows-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/AddMetalSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/AddMetalSources.cmake -------------------------------------------------------------------------------- /CMakeModules/CheckCXXFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/CheckCXXFlag.cmake -------------------------------------------------------------------------------- /CMakeModules/DuckStationUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/DuckStationUtils.cmake -------------------------------------------------------------------------------- /CMakeModules/ECMFindModuleHelpersStub.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpers.cmake) 2 | -------------------------------------------------------------------------------- /CMakeModules/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/FindFFMPEG.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibbacktrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/FindLibbacktrace.cmake -------------------------------------------------------------------------------- /CMakeModules/FindUDEV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/FindUDEV.cmake -------------------------------------------------------------------------------- /CMakeModules/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/FindWebP.cmake -------------------------------------------------------------------------------- /CMakeModules/Findzstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CMakeModules/Findzstd.cmake -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/README.md -------------------------------------------------------------------------------- /README.pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/README.pt-br.md -------------------------------------------------------------------------------- /data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/LICENSE.txt -------------------------------------------------------------------------------- /data/resources/discdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/discdb.yaml -------------------------------------------------------------------------------- /data/resources/discsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/discsets.yaml -------------------------------------------------------------------------------- /data/resources/fonts/promptfont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/fonts/promptfont.otf -------------------------------------------------------------------------------- /data/resources/fullscreenui/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/fullscreenui/exit.svg -------------------------------------------------------------------------------- /data/resources/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/gamecontrollerdb.txt -------------------------------------------------------------------------------- /data/resources/gamedb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/gamedb.yaml -------------------------------------------------------------------------------- /data/resources/images/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/crosshair.png -------------------------------------------------------------------------------- /data/resources/images/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/duck.png -------------------------------------------------------------------------------- /data/resources/images/flags/PAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/flags/PAL.svg -------------------------------------------------------------------------------- /data/resources/images/ra-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/ra-icon.webp -------------------------------------------------------------------------------- /data/resources/images/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/sources.txt -------------------------------------------------------------------------------- /data/resources/images/star-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-0.svg -------------------------------------------------------------------------------- /data/resources/images/star-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-1.svg -------------------------------------------------------------------------------- /data/resources/images/star-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-2.svg -------------------------------------------------------------------------------- /data/resources/images/star-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-3.svg -------------------------------------------------------------------------------- /data/resources/images/star-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-4.svg -------------------------------------------------------------------------------- /data/resources/images/star-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/star-5.svg -------------------------------------------------------------------------------- /data/resources/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/images/warning.svg -------------------------------------------------------------------------------- /data/resources/no-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/no-save.png -------------------------------------------------------------------------------- /data/resources/overlays/psx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/overlays/psx.webp -------------------------------------------------------------------------------- /data/resources/overlays/psx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/overlays/psx.yml -------------------------------------------------------------------------------- /data/resources/thirdparty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/data/resources/thirdparty.html -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/CMakeLists.txt -------------------------------------------------------------------------------- /dep/biscuit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/CMakeLists.txt -------------------------------------------------------------------------------- /dep/biscuit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/LICENSE.md -------------------------------------------------------------------------------- /dep/biscuit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/README.md -------------------------------------------------------------------------------- /dep/biscuit/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/clang-format -------------------------------------------------------------------------------- /dep/biscuit/include/biscuit/csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/include/biscuit/csr.hpp -------------------------------------------------------------------------------- /dep/biscuit/include/biscuit/isa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/include/biscuit/isa.hpp -------------------------------------------------------------------------------- /dep/biscuit/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/CMakeLists.txt -------------------------------------------------------------------------------- /dep/biscuit/src/assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/assembler.cpp -------------------------------------------------------------------------------- /dep/biscuit/src/assembler_crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/assembler_crypto.cpp -------------------------------------------------------------------------------- /dep/biscuit/src/assembler_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/assembler_vector.cpp -------------------------------------------------------------------------------- /dep/biscuit/src/code_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/code_buffer.cpp -------------------------------------------------------------------------------- /dep/biscuit/src/cpuinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/biscuit/src/cpuinfo.cpp -------------------------------------------------------------------------------- /dep/cubeb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/AUTHORS -------------------------------------------------------------------------------- /dep/cubeb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/CMakeLists.txt -------------------------------------------------------------------------------- /dep/cubeb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/INSTALL.md -------------------------------------------------------------------------------- /dep/cubeb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/LICENSE -------------------------------------------------------------------------------- /dep/cubeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/README.md -------------------------------------------------------------------------------- /dep/cubeb/cubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/cubeb.vcxproj -------------------------------------------------------------------------------- /dep/cubeb/cubeb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/cubeb.vcxproj.filters -------------------------------------------------------------------------------- /dep/cubeb/include/cubeb/cubeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/include/cubeb/cubeb.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb-internal.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb-jni-instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb-jni-instances.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb-jni.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb-jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb-jni.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_alsa.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_assert.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_audiounit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_audiounit.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_jack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_jack.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_log.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_log.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_mixer.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_mixer.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_oss.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_osx_run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_osx_run_loop.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_osx_run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_osx_run_loop.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_pulse.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_resampler.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_resampler.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_ring_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_ring_array.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_ringbuffer.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_sndio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_sndio.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_strings.c -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_strings.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_tracing.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_triple_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_triple_buffer.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_utils.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_utils.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_utils_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_utils_unix.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_utils_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_utils_win.h -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_wasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_wasapi.cpp -------------------------------------------------------------------------------- /dep/cubeb/src/cubeb_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/src/cubeb_winmm.c -------------------------------------------------------------------------------- /dep/cubeb/subprojects/speex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/cubeb/subprojects/speex/arch.h -------------------------------------------------------------------------------- /dep/d3d12ma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/d3d12ma/CMakeLists.txt -------------------------------------------------------------------------------- /dep/d3d12ma/d3d12ma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/d3d12ma/d3d12ma.vcxproj -------------------------------------------------------------------------------- /dep/d3d12ma/d3d12ma.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/d3d12ma/d3d12ma.vcxproj.filters -------------------------------------------------------------------------------- /dep/d3d12ma/include/D3D12MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/d3d12ma/include/D3D12MemAlloc.h -------------------------------------------------------------------------------- /dep/d3d12ma/src/D3D12MemAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/d3d12ma/src/D3D12MemAlloc.cpp -------------------------------------------------------------------------------- /dep/fast_float/AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel Lemire 2 | João Paulo Magalhaes 3 | -------------------------------------------------------------------------------- /dep/fast_float/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fast_float/CMakeLists.txt -------------------------------------------------------------------------------- /dep/fast_float/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fast_float/CONTRIBUTORS -------------------------------------------------------------------------------- /dep/fast_float/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fast_float/LICENSE-APACHE -------------------------------------------------------------------------------- /dep/fast_float/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fast_float/LICENSE-MIT -------------------------------------------------------------------------------- /dep/fast_float/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fast_float/README.md -------------------------------------------------------------------------------- /dep/ffmpeg/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /dep/ffmpeg/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/CREDITS -------------------------------------------------------------------------------- /dep/ffmpeg/VERSION: -------------------------------------------------------------------------------- 1 | 8.0 2 | -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavcodec/bsf.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavcodec/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavcodec/defs.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavcodec/jni.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/cast5.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/csp.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/des.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/rc4.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/tea.h -------------------------------------------------------------------------------- /dep/ffmpeg/include/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/ffmpeg/include/libavutil/tx.h -------------------------------------------------------------------------------- /dep/fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/.clang-format -------------------------------------------------------------------------------- /dep/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /dep/fmt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/CONTRIBUTING.md -------------------------------------------------------------------------------- /dep/fmt/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/ChangeLog.md -------------------------------------------------------------------------------- /dep/fmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/LICENSE -------------------------------------------------------------------------------- /dep/fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/README.md -------------------------------------------------------------------------------- /dep/fmt/fmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/fmt.vcxproj -------------------------------------------------------------------------------- /dep/fmt/fmt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/fmt.vcxproj.filters -------------------------------------------------------------------------------- /dep/fmt/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/args.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/base.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/std.h -------------------------------------------------------------------------------- /dep/fmt/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/include/fmt/xchar.h -------------------------------------------------------------------------------- /dep/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/src/fmt.cc -------------------------------------------------------------------------------- /dep/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/src/format.cc -------------------------------------------------------------------------------- /dep/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/src/os.cc -------------------------------------------------------------------------------- /dep/fmt/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/fmt/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /dep/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/CMakeLists.txt -------------------------------------------------------------------------------- /dep/glad/glad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/glad.vcxproj -------------------------------------------------------------------------------- /dep/glad/glad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/glad.vcxproj.filters -------------------------------------------------------------------------------- /dep/glad/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /dep/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /dep/glad/include/glad/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/include/glad/egl.h -------------------------------------------------------------------------------- /dep/glad/include/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/include/glad/gl.h -------------------------------------------------------------------------------- /dep/glad/include/glad/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/include/glad/wgl.h -------------------------------------------------------------------------------- /dep/glad/src/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/src/egl.c -------------------------------------------------------------------------------- /dep/glad/src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/src/gl.c -------------------------------------------------------------------------------- /dep/glad/src/wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/glad/src/wgl.c -------------------------------------------------------------------------------- /dep/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /dep/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /dep/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/LICENSE -------------------------------------------------------------------------------- /dep/googletest/googletest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/googletest.vcxproj -------------------------------------------------------------------------------- /dep/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /dep/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /dep/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/src/gtest.cc -------------------------------------------------------------------------------- /dep/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /dep/imgui/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/CHANGELOG.txt -------------------------------------------------------------------------------- /dep/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /dep/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/LICENSE.txt -------------------------------------------------------------------------------- /dep/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/README.md -------------------------------------------------------------------------------- /dep/imgui/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/TODO.txt -------------------------------------------------------------------------------- /dep/imgui/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/imgui.natvis -------------------------------------------------------------------------------- /dep/imgui/imgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/imgui.vcxproj -------------------------------------------------------------------------------- /dep/imgui/imgui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/imgui.vcxproj.filters -------------------------------------------------------------------------------- /dep/imgui/include/IconsEmoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/IconsEmoji.h -------------------------------------------------------------------------------- /dep/imgui/include/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imconfig.h -------------------------------------------------------------------------------- /dep/imgui/include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imgui.h -------------------------------------------------------------------------------- /dep/imgui/include/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imgui_freetype.h -------------------------------------------------------------------------------- /dep/imgui/include/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imgui_internal.h -------------------------------------------------------------------------------- /dep/imgui/include/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imgui_stdlib.h -------------------------------------------------------------------------------- /dep/imgui/include/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/include/imstb_textedit.h -------------------------------------------------------------------------------- /dep/imgui/src/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_demo.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_draw.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_freetype.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_stdlib.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_tables.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imgui_widgets.cpp -------------------------------------------------------------------------------- /dep/imgui/src/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imstb_rectpack.h -------------------------------------------------------------------------------- /dep/imgui/src/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/imstb_truetype.h -------------------------------------------------------------------------------- /dep/imgui/src/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/imgui/src/stb_sprintf.h -------------------------------------------------------------------------------- /dep/libchdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/CMakeLists.txt -------------------------------------------------------------------------------- /dep/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /dep/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/README.md -------------------------------------------------------------------------------- /dep/libchdr/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/include/libchdr/chd.h -------------------------------------------------------------------------------- /dep/libchdr/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/include/libchdr/flac.h -------------------------------------------------------------------------------- /dep/libchdr/libchdr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/libchdr.vcxproj -------------------------------------------------------------------------------- /dep/libchdr/src/libchdr_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/src/libchdr_cdrom.c -------------------------------------------------------------------------------- /dep/libchdr/src/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/src/libchdr_chd.c -------------------------------------------------------------------------------- /dep/libchdr/src/libchdr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/src/libchdr_flac.c -------------------------------------------------------------------------------- /dep/libchdr/src/libchdr_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/src/libchdr_huffman.c -------------------------------------------------------------------------------- /dep/libchdr/src/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/libchdr/src/link.T -------------------------------------------------------------------------------- /dep/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /dep/lzma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/LICENSE -------------------------------------------------------------------------------- /dep/lzma/include/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7z.h -------------------------------------------------------------------------------- /dep/lzma/include/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zAlloc.h -------------------------------------------------------------------------------- /dep/lzma/include/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zBuf.h -------------------------------------------------------------------------------- /dep/lzma/include/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zCrc.h -------------------------------------------------------------------------------- /dep/lzma/include/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zFile.h -------------------------------------------------------------------------------- /dep/lzma/include/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zTypes.h -------------------------------------------------------------------------------- /dep/lzma/include/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zVersion.h -------------------------------------------------------------------------------- /dep/lzma/include/7zWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/7zWindows.h -------------------------------------------------------------------------------- /dep/lzma/include/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Alloc.h -------------------------------------------------------------------------------- /dep/lzma/include/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Bcj2.h -------------------------------------------------------------------------------- /dep/lzma/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Bra.h -------------------------------------------------------------------------------- /dep/lzma/include/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Compiler.h -------------------------------------------------------------------------------- /dep/lzma/include/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/CpuArch.h -------------------------------------------------------------------------------- /dep/lzma/include/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Delta.h -------------------------------------------------------------------------------- /dep/lzma/include/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/LzFind.h -------------------------------------------------------------------------------- /dep/lzma/include/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/LzHash.h -------------------------------------------------------------------------------- /dep/lzma/include/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Lzma2Dec.h -------------------------------------------------------------------------------- /dep/lzma/include/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Lzma2DecMt.h -------------------------------------------------------------------------------- /dep/lzma/include/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Lzma2Enc.h -------------------------------------------------------------------------------- /dep/lzma/include/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Lzma86.h -------------------------------------------------------------------------------- /dep/lzma/include/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/LzmaDec.h -------------------------------------------------------------------------------- /dep/lzma/include/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/LzmaEnc.h -------------------------------------------------------------------------------- /dep/lzma/include/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/LzmaLib.h -------------------------------------------------------------------------------- /dep/lzma/include/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Ppmd.h -------------------------------------------------------------------------------- /dep/lzma/include/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Ppmd7.h -------------------------------------------------------------------------------- /dep/lzma/include/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Precomp.h -------------------------------------------------------------------------------- /dep/lzma/include/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/RotateDefs.h -------------------------------------------------------------------------------- /dep/lzma/include/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Sha256.h -------------------------------------------------------------------------------- /dep/lzma/include/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/Xz.h -------------------------------------------------------------------------------- /dep/lzma/include/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/XzCrc64.h -------------------------------------------------------------------------------- /dep/lzma/include/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/include/XzEnc.h -------------------------------------------------------------------------------- /dep/lzma/lzma-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/lzma-history.txt -------------------------------------------------------------------------------- /dep/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/lzma.txt -------------------------------------------------------------------------------- /dep/lzma/lzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/lzma.vcxproj -------------------------------------------------------------------------------- /dep/lzma/lzma.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/lzma.vcxproj.filters -------------------------------------------------------------------------------- /dep/lzma/src/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zAlloc.c -------------------------------------------------------------------------------- /dep/lzma/src/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zArcIn.c -------------------------------------------------------------------------------- /dep/lzma/src/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zBuf.c -------------------------------------------------------------------------------- /dep/lzma/src/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zBuf2.c -------------------------------------------------------------------------------- /dep/lzma/src/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zCrc.c -------------------------------------------------------------------------------- /dep/lzma/src/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zCrcOpt.c -------------------------------------------------------------------------------- /dep/lzma/src/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zDec.c -------------------------------------------------------------------------------- /dep/lzma/src/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zFile.c -------------------------------------------------------------------------------- /dep/lzma/src/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/7zStream.c -------------------------------------------------------------------------------- /dep/lzma/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Alloc.c -------------------------------------------------------------------------------- /dep/lzma/src/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Bcj2.c -------------------------------------------------------------------------------- /dep/lzma/src/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Bcj2Enc.c -------------------------------------------------------------------------------- /dep/lzma/src/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Bra.c -------------------------------------------------------------------------------- /dep/lzma/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Bra86.c -------------------------------------------------------------------------------- /dep/lzma/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/BraIA64.c -------------------------------------------------------------------------------- /dep/lzma/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/CpuArch.c -------------------------------------------------------------------------------- /dep/lzma/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Delta.c -------------------------------------------------------------------------------- /dep/lzma/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/LzFind.c -------------------------------------------------------------------------------- /dep/lzma/src/LzFindOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/LzFindOpt.c -------------------------------------------------------------------------------- /dep/lzma/src/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Lzma2Dec.c -------------------------------------------------------------------------------- /dep/lzma/src/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Lzma2DecMt.c -------------------------------------------------------------------------------- /dep/lzma/src/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Lzma2Enc.c -------------------------------------------------------------------------------- /dep/lzma/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Lzma86Dec.c -------------------------------------------------------------------------------- /dep/lzma/src/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Lzma86Enc.c -------------------------------------------------------------------------------- /dep/lzma/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/LzmaDec.c -------------------------------------------------------------------------------- /dep/lzma/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/LzmaEnc.c -------------------------------------------------------------------------------- /dep/lzma/src/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/LzmaLib.c -------------------------------------------------------------------------------- /dep/lzma/src/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Ppmd7.c -------------------------------------------------------------------------------- /dep/lzma/src/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Ppmd7Dec.c -------------------------------------------------------------------------------- /dep/lzma/src/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Ppmd7Enc.c -------------------------------------------------------------------------------- /dep/lzma/src/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Sha256.c -------------------------------------------------------------------------------- /dep/lzma/src/Sha256Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Sha256Opt.c -------------------------------------------------------------------------------- /dep/lzma/src/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/Xz.c -------------------------------------------------------------------------------- /dep/lzma/src/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/XzCrc64.c -------------------------------------------------------------------------------- /dep/lzma/src/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/XzCrc64Opt.c -------------------------------------------------------------------------------- /dep/lzma/src/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/XzDec.c -------------------------------------------------------------------------------- /dep/lzma/src/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/XzEnc.c -------------------------------------------------------------------------------- /dep/lzma/src/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/lzma/src/XzIn.c -------------------------------------------------------------------------------- /dep/minizip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/CMakeLists.txt -------------------------------------------------------------------------------- /dep/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/MiniZip64_Changes.txt -------------------------------------------------------------------------------- /dep/minizip/MiniZip64_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/MiniZip64_info.txt -------------------------------------------------------------------------------- /dep/minizip/include/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/include/ioapi.h -------------------------------------------------------------------------------- /dep/minizip/include/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/include/iowin32.h -------------------------------------------------------------------------------- /dep/minizip/include/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/include/mztools.h -------------------------------------------------------------------------------- /dep/minizip/include/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/include/unzip.h -------------------------------------------------------------------------------- /dep/minizip/include/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/include/zip.h -------------------------------------------------------------------------------- /dep/minizip/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/minizip.vcxproj -------------------------------------------------------------------------------- /dep/minizip/src/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/crypt.h -------------------------------------------------------------------------------- /dep/minizip/src/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/ioapi.c -------------------------------------------------------------------------------- /dep/minizip/src/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/iowin32.c -------------------------------------------------------------------------------- /dep/minizip/src/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/mztools.c -------------------------------------------------------------------------------- /dep/minizip/src/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/unzip.c -------------------------------------------------------------------------------- /dep/minizip/src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/minizip/src/zip.c -------------------------------------------------------------------------------- /dep/msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/.gitignore -------------------------------------------------------------------------------- /dep/msvc/vsprops/Base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/Base.props -------------------------------------------------------------------------------- /dep/msvc/vsprops/QtCompile.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/QtCompile.props -------------------------------------------------------------------------------- /dep/msvc/vsprops/QtCompile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/QtCompile.targets -------------------------------------------------------------------------------- /dep/msvc/vsprops/QtCompile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/QtCompile.xml -------------------------------------------------------------------------------- /dep/msvc/vsprops/Targets.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/Targets.props -------------------------------------------------------------------------------- /dep/msvc/vsprops/Toolkit.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/msvc/vsprops/Toolkit.props -------------------------------------------------------------------------------- /dep/rapidyaml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/CMakeLists.txt -------------------------------------------------------------------------------- /dep/rapidyaml/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/LICENSE.txt -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/blob.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/cpu.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/dump.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/error.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/types.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/c4/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/c4/utf.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/ryml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/ryml.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/include/ryml.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/ryml.natvis -------------------------------------------------------------------------------- /dep/rapidyaml/include/ryml_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/include/ryml_std.hpp -------------------------------------------------------------------------------- /dep/rapidyaml/rapidyaml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/rapidyaml.vcxproj -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/base64.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/error.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/format.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/language.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/utf.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/yml/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/yml/node.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/yml/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/yml/parse.cpp -------------------------------------------------------------------------------- /dep/rapidyaml/src/c4/yml/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rapidyaml/src/c4/yml/tree.cpp -------------------------------------------------------------------------------- /dep/rcheevos/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/.editorconfig -------------------------------------------------------------------------------- /dep/rcheevos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/.gitignore -------------------------------------------------------------------------------- /dep/rcheevos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/CHANGELOG.md -------------------------------------------------------------------------------- /dep/rcheevos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/CMakeLists.txt -------------------------------------------------------------------------------- /dep/rcheevos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/LICENSE -------------------------------------------------------------------------------- /dep/rcheevos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/README.md -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_api_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_api_info.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_api_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_api_user.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_client.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_consoles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_consoles.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_error.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_export.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_hash.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_runtime.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rc_util.h -------------------------------------------------------------------------------- /dep/rcheevos/include/rcheevos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/include/rcheevos.h -------------------------------------------------------------------------------- /dep/rcheevos/rcheevos.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/rcheevos.vcxproj -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_client.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_compat.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_compat.h -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_util.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_version.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rc_version.h -------------------------------------------------------------------------------- /dep/rcheevos/src/rcheevos/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rcheevos/alloc.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rcheevos/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rcheevos/format.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rcheevos/lboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rcheevos/lboard.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rcheevos/memref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rcheevos/memref.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rcheevos/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rcheevos/value.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rhash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rhash/md5.c -------------------------------------------------------------------------------- /dep/rcheevos/src/rhash/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/rcheevos/src/rhash/md5.h -------------------------------------------------------------------------------- /dep/reshadefx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/CMakeLists.txt -------------------------------------------------------------------------------- /dep/reshadefx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/LICENSE.md -------------------------------------------------------------------------------- /dep/reshadefx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/README.md -------------------------------------------------------------------------------- /dep/reshadefx/include/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/include/spirv.hpp -------------------------------------------------------------------------------- /dep/reshadefx/reshadefx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/reshadefx.vcxproj -------------------------------------------------------------------------------- /dep/reshadefx/src/effect_lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/reshadefx/src/effect_lexer.cpp -------------------------------------------------------------------------------- /dep/riscv-disas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/riscv-disas/CMakeLists.txt -------------------------------------------------------------------------------- /dep/riscv-disas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/riscv-disas/README.md -------------------------------------------------------------------------------- /dep/riscv-disas/source.txt: -------------------------------------------------------------------------------- 1 | https://github.com/michaeljclark/riscv-disassembler -------------------------------------------------------------------------------- /dep/riscv-disas/src/riscv-disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/riscv-disas/src/riscv-disas.c -------------------------------------------------------------------------------- /dep/simpleini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/CMakeLists.txt -------------------------------------------------------------------------------- /dep/simpleini/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/LICENCE.txt -------------------------------------------------------------------------------- /dep/simpleini/include/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/include/ConvertUTF.h -------------------------------------------------------------------------------- /dep/simpleini/include/SimpleIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/include/SimpleIni.h -------------------------------------------------------------------------------- /dep/simpleini/simpleini.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/simpleini.vcxproj -------------------------------------------------------------------------------- /dep/simpleini/src/ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/simpleini/src/ConvertUTF.c -------------------------------------------------------------------------------- /dep/vixl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/AUTHORS -------------------------------------------------------------------------------- /dep/vixl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/CMakeLists.txt -------------------------------------------------------------------------------- /dep/vixl/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/LICENCE -------------------------------------------------------------------------------- /dep/vixl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/README.md -------------------------------------------------------------------------------- /dep/vixl/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/VERSIONS.md -------------------------------------------------------------------------------- /dep/vixl/include/vixl/utils-vixl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/include/vixl/utils-vixl.h -------------------------------------------------------------------------------- /dep/vixl/src/code-buffer-vixl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/src/code-buffer-vixl.cc -------------------------------------------------------------------------------- /dep/vixl/src/cpu-features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/src/cpu-features.cc -------------------------------------------------------------------------------- /dep/vixl/src/utils-vixl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/src/utils-vixl.cc -------------------------------------------------------------------------------- /dep/vixl/vixl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/vixl.vcxproj -------------------------------------------------------------------------------- /dep/vixl/vixl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vixl/vixl.vcxproj.filters -------------------------------------------------------------------------------- /dep/vulkan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vulkan/CMakeLists.txt -------------------------------------------------------------------------------- /dep/vulkan/include/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vulkan/include/vulkan/vk_icd.h -------------------------------------------------------------------------------- /dep/vulkan/include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/vulkan/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /dep/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /dep/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /dep/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/readme.md -------------------------------------------------------------------------------- /dep/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/readme.txt -------------------------------------------------------------------------------- /dep/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /dep/xbyak/xbyak/xbyak_bin2hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/xbyak/xbyak_bin2hex.h -------------------------------------------------------------------------------- /dep/xbyak/xbyak/xbyak_mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/xbyak/xbyak_mnemonic.h -------------------------------------------------------------------------------- /dep/xbyak/xbyak/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xbyak/xbyak/xbyak_util.h -------------------------------------------------------------------------------- /dep/xxhash/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/CHANGELOG -------------------------------------------------------------------------------- /dep/xxhash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/CMakeLists.txt -------------------------------------------------------------------------------- /dep/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/LICENSE -------------------------------------------------------------------------------- /dep/xxhash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/README.md -------------------------------------------------------------------------------- /dep/xxhash/include/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/include/xxhash.h -------------------------------------------------------------------------------- /dep/xxhash/src/xxh_x86dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/src/xxh_x86dispatch.c -------------------------------------------------------------------------------- /dep/xxhash/src/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/src/xxhash.c -------------------------------------------------------------------------------- /dep/xxhash/xxhash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/xxhash.vcxproj -------------------------------------------------------------------------------- /dep/xxhash/xxhash.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/xxhash/xxhash.vcxproj.filters -------------------------------------------------------------------------------- /dep/zydis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/CMakeLists.txt -------------------------------------------------------------------------------- /dep/zydis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/LICENSE -------------------------------------------------------------------------------- /dep/zydis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/README.md -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Defines.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Register.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Segment.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Status.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Utils.h -------------------------------------------------------------------------------- /dep/zydis/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /dep/zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Decoder.c -------------------------------------------------------------------------------- /dep/zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/DecoderData.c -------------------------------------------------------------------------------- /dep/zydis/src/Disassembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Disassembler.c -------------------------------------------------------------------------------- /dep/zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Formatter.c -------------------------------------------------------------------------------- /dep/zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /dep/zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /dep/zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /dep/zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /dep/zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /dep/zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /dep/zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Register.c -------------------------------------------------------------------------------- /dep/zydis/src/Segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Segment.c -------------------------------------------------------------------------------- /dep/zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/SharedData.c -------------------------------------------------------------------------------- /dep/zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/String.c -------------------------------------------------------------------------------- /dep/zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Utils.c -------------------------------------------------------------------------------- /dep/zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/src/Zydis.c -------------------------------------------------------------------------------- /dep/zydis/zydis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/zydis.vcxproj -------------------------------------------------------------------------------- /dep/zydis/zydis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/dep/zydis/zydis.vcxproj.filters -------------------------------------------------------------------------------- /duckstation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/duckstation.sln -------------------------------------------------------------------------------- /extras/fonts/promptfont.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/extras/fonts/promptfont.sfd -------------------------------------------------------------------------------- /extras/padtest/padtest.psexe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/extras/padtest/padtest.psexe -------------------------------------------------------------------------------- /extras/padtest/padtest.txt: -------------------------------------------------------------------------------- 1 | Source available at https://github.com/ShendoXT/padtest -------------------------------------------------------------------------------- /extras/yamllint-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/extras/yamllint-config.yaml -------------------------------------------------------------------------------- /scripts/check_regression_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/scripts/check_regression_tests.py -------------------------------------------------------------------------------- /scripts/deps/build-ffmpeg-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/scripts/deps/build-ffmpeg-linux.sh -------------------------------------------------------------------------------- /scripts/deps/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/scripts/deps/versions -------------------------------------------------------------------------------- /scripts/run_regression_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/scripts/run_regression_tests.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common-tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/common-tests/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common-tests/hash_tests.cpp -------------------------------------------------------------------------------- /src/common-tests/path_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common-tests/path_tests.cpp -------------------------------------------------------------------------------- /src/common-tests/string_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common-tests/string_tests.cpp -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/align.h -------------------------------------------------------------------------------- /src/common/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/assert.cpp -------------------------------------------------------------------------------- /src/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/assert.h -------------------------------------------------------------------------------- /src/common/binary_reader_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/binary_reader_writer.h -------------------------------------------------------------------------------- /src/common/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/bitfield.h -------------------------------------------------------------------------------- /src/common/bitfield.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/bitfield.natvis -------------------------------------------------------------------------------- /src/common/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/bitutils.h -------------------------------------------------------------------------------- /src/common/cocoa_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/cocoa_tools.h -------------------------------------------------------------------------------- /src/common/cocoa_tools.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/cocoa_tools.mm -------------------------------------------------------------------------------- /src/common/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/common.props -------------------------------------------------------------------------------- /src/common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/common.vcxproj -------------------------------------------------------------------------------- /src/common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/common.vcxproj.filters -------------------------------------------------------------------------------- /src/common/crash_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/crash_handler.cpp -------------------------------------------------------------------------------- /src/common/crash_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/crash_handler.h -------------------------------------------------------------------------------- /src/common/dimensional_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/dimensional_array.h -------------------------------------------------------------------------------- /src/common/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/dynamic_library.cpp -------------------------------------------------------------------------------- /src/common/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/dynamic_library.h -------------------------------------------------------------------------------- /src/common/easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/easing.h -------------------------------------------------------------------------------- /src/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/error.cpp -------------------------------------------------------------------------------- /src/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/error.h -------------------------------------------------------------------------------- /src/common/fastjmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/fastjmp.cpp -------------------------------------------------------------------------------- /src/common/fastjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/fastjmp.h -------------------------------------------------------------------------------- /src/common/fastjmp_arm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/fastjmp_arm.asm -------------------------------------------------------------------------------- /src/common/fastjmp_x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/fastjmp_x86.asm -------------------------------------------------------------------------------- /src/common/fifo_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/fifo_queue.h -------------------------------------------------------------------------------- /src/common/file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/file_system.cpp -------------------------------------------------------------------------------- /src/common/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/file_system.h -------------------------------------------------------------------------------- /src/common/gsvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector.cpp -------------------------------------------------------------------------------- /src/common/gsvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector.h -------------------------------------------------------------------------------- /src/common/gsvector.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector.natvis -------------------------------------------------------------------------------- /src/common/gsvector_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector_formatter.h -------------------------------------------------------------------------------- /src/common/gsvector_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector_neon.h -------------------------------------------------------------------------------- /src/common/gsvector_nosimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector_nosimd.h -------------------------------------------------------------------------------- /src/common/gsvector_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/gsvector_sse.h -------------------------------------------------------------------------------- /src/common/hash_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/hash_combine.h -------------------------------------------------------------------------------- /src/common/heap_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/heap_array.h -------------------------------------------------------------------------------- /src/common/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/intrin.h -------------------------------------------------------------------------------- /src/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/log.cpp -------------------------------------------------------------------------------- /src/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/log.h -------------------------------------------------------------------------------- /src/common/log_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/log_channels.h -------------------------------------------------------------------------------- /src/common/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/lru_cache.h -------------------------------------------------------------------------------- /src/common/md5_digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/md5_digest.cpp -------------------------------------------------------------------------------- /src/common/md5_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/md5_digest.h -------------------------------------------------------------------------------- /src/common/memmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/memmap.cpp -------------------------------------------------------------------------------- /src/common/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/memmap.h -------------------------------------------------------------------------------- /src/common/minizip_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/minizip_helpers.h -------------------------------------------------------------------------------- /src/common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/path.h -------------------------------------------------------------------------------- /src/common/perf_scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/perf_scope.cpp -------------------------------------------------------------------------------- /src/common/perf_scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/perf_scope.h -------------------------------------------------------------------------------- /src/common/progress_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/progress_callback.cpp -------------------------------------------------------------------------------- /src/common/progress_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/progress_callback.h -------------------------------------------------------------------------------- /src/common/ryml_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/ryml_helpers.h -------------------------------------------------------------------------------- /src/common/scoped_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/scoped_guard.h -------------------------------------------------------------------------------- /src/common/settings_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/settings_interface.h -------------------------------------------------------------------------------- /src/common/sha1_digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/sha1_digest.cpp -------------------------------------------------------------------------------- /src/common/sha1_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/sha1_digest.h -------------------------------------------------------------------------------- /src/common/sha256_digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/sha256_digest.cpp -------------------------------------------------------------------------------- /src/common/sha256_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/sha256_digest.h -------------------------------------------------------------------------------- /src/common/small_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/small_string.cpp -------------------------------------------------------------------------------- /src/common/small_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/small_string.h -------------------------------------------------------------------------------- /src/common/string_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/string_pool.cpp -------------------------------------------------------------------------------- /src/common/string_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/string_pool.h -------------------------------------------------------------------------------- /src/common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/string_util.cpp -------------------------------------------------------------------------------- /src/common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/string_util.h -------------------------------------------------------------------------------- /src/common/task_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/task_queue.cpp -------------------------------------------------------------------------------- /src/common/task_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/task_queue.h -------------------------------------------------------------------------------- /src/common/thirdparty/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/thirdparty/aes.cpp -------------------------------------------------------------------------------- /src/common/thirdparty/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/thirdparty/aes.h -------------------------------------------------------------------------------- /src/common/thirdparty/llvm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/thirdparty/llvm.natvis -------------------------------------------------------------------------------- /src/common/threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/threading.cpp -------------------------------------------------------------------------------- /src/common/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/threading.h -------------------------------------------------------------------------------- /src/common/time_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/time_helpers.h -------------------------------------------------------------------------------- /src/common/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/timer.cpp -------------------------------------------------------------------------------- /src/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/timer.h -------------------------------------------------------------------------------- /src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/types.h -------------------------------------------------------------------------------- /src/common/windows_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/windows_headers.h -------------------------------------------------------------------------------- /src/common/xorshift_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/xorshift_prng.h -------------------------------------------------------------------------------- /src/common/zip_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/common/zip_helpers.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/achievements.cpp -------------------------------------------------------------------------------- /src/core/achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/achievements.h -------------------------------------------------------------------------------- /src/core/achievements_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/achievements_private.h -------------------------------------------------------------------------------- /src/core/analog_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/analog_controller.cpp -------------------------------------------------------------------------------- /src/core/analog_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/analog_controller.h -------------------------------------------------------------------------------- /src/core/analog_joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/analog_joystick.cpp -------------------------------------------------------------------------------- /src/core/analog_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/analog_joystick.h -------------------------------------------------------------------------------- /src/core/bios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/bios.cpp -------------------------------------------------------------------------------- /src/core/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/bios.h -------------------------------------------------------------------------------- /src/core/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/bus.cpp -------------------------------------------------------------------------------- /src/core/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/bus.h -------------------------------------------------------------------------------- /src/core/cdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cdrom.cpp -------------------------------------------------------------------------------- /src/core/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cdrom.h -------------------------------------------------------------------------------- /src/core/cdrom_async_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cdrom_async_reader.cpp -------------------------------------------------------------------------------- /src/core/cdrom_async_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cdrom_async_reader.h -------------------------------------------------------------------------------- /src/core/cdrom_subq_replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cdrom_subq_replacement.h -------------------------------------------------------------------------------- /src/core/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cheats.cpp -------------------------------------------------------------------------------- /src/core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cheats.h -------------------------------------------------------------------------------- /src/core/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/controller.cpp -------------------------------------------------------------------------------- /src/core/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/controller.h -------------------------------------------------------------------------------- /src/core/core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/core.props -------------------------------------------------------------------------------- /src/core/core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/core.vcxproj -------------------------------------------------------------------------------- /src/core/core.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/core.vcxproj.filters -------------------------------------------------------------------------------- /src/core/cpu_code_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_code_cache.cpp -------------------------------------------------------------------------------- /src/core/cpu_code_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_code_cache.h -------------------------------------------------------------------------------- /src/core/cpu_code_cache_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_code_cache_private.h -------------------------------------------------------------------------------- /src/core/cpu_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_core.cpp -------------------------------------------------------------------------------- /src/core/cpu_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_core.h -------------------------------------------------------------------------------- /src/core/cpu_core_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_core_private.h -------------------------------------------------------------------------------- /src/core/cpu_disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_disasm.cpp -------------------------------------------------------------------------------- /src/core/cpu_disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_disasm.h -------------------------------------------------------------------------------- /src/core/cpu_pgxp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_pgxp.cpp -------------------------------------------------------------------------------- /src/core/cpu_pgxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_pgxp.h -------------------------------------------------------------------------------- /src/core/cpu_recompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler.cpp -------------------------------------------------------------------------------- /src/core/cpu_recompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler.h -------------------------------------------------------------------------------- /src/core/cpu_recompiler_arm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_arm32.cpp -------------------------------------------------------------------------------- /src/core/cpu_recompiler_arm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_arm32.h -------------------------------------------------------------------------------- /src/core/cpu_recompiler_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_arm64.cpp -------------------------------------------------------------------------------- /src/core/cpu_recompiler_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_arm64.h -------------------------------------------------------------------------------- /src/core/cpu_recompiler_riscv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_riscv64.h -------------------------------------------------------------------------------- /src/core/cpu_recompiler_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_x64.cpp -------------------------------------------------------------------------------- /src/core/cpu_recompiler_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_recompiler_x64.h -------------------------------------------------------------------------------- /src/core/cpu_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_types.cpp -------------------------------------------------------------------------------- /src/core/cpu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/cpu_types.h -------------------------------------------------------------------------------- /src/core/ddgo_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/ddgo_controller.cpp -------------------------------------------------------------------------------- /src/core/ddgo_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/ddgo_controller.h -------------------------------------------------------------------------------- /src/core/digital_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/digital_controller.cpp -------------------------------------------------------------------------------- /src/core/digital_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/digital_controller.h -------------------------------------------------------------------------------- /src/core/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/dma.cpp -------------------------------------------------------------------------------- /src/core/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/dma.h -------------------------------------------------------------------------------- /src/core/fullscreenui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui.cpp -------------------------------------------------------------------------------- /src/core/fullscreenui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui.h -------------------------------------------------------------------------------- /src/core/fullscreenui_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui_private.h -------------------------------------------------------------------------------- /src/core/fullscreenui_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui_settings.cpp -------------------------------------------------------------------------------- /src/core/fullscreenui_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui_strings.h -------------------------------------------------------------------------------- /src/core/fullscreenui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui_widgets.cpp -------------------------------------------------------------------------------- /src/core/fullscreenui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/fullscreenui_widgets.h -------------------------------------------------------------------------------- /src/core/game_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/game_database.cpp -------------------------------------------------------------------------------- /src/core/game_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/game_database.h -------------------------------------------------------------------------------- /src/core/game_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/game_list.cpp -------------------------------------------------------------------------------- /src/core/game_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/game_list.h -------------------------------------------------------------------------------- /src/core/gdb_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gdb_server.cpp -------------------------------------------------------------------------------- /src/core/gdb_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gdb_server.h -------------------------------------------------------------------------------- /src/core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu.cpp -------------------------------------------------------------------------------- /src/core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu.h -------------------------------------------------------------------------------- /src/core/gpu_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_backend.cpp -------------------------------------------------------------------------------- /src/core/gpu_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_backend.h -------------------------------------------------------------------------------- /src/core/gpu_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_commands.cpp -------------------------------------------------------------------------------- /src/core/gpu_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_dump.cpp -------------------------------------------------------------------------------- /src/core/gpu_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_dump.h -------------------------------------------------------------------------------- /src/core/gpu_hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw.cpp -------------------------------------------------------------------------------- /src/core/gpu_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw.h -------------------------------------------------------------------------------- /src/core/gpu_hw_shadergen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw_shadergen.cpp -------------------------------------------------------------------------------- /src/core/gpu_hw_shadergen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw_shadergen.h -------------------------------------------------------------------------------- /src/core/gpu_hw_texture_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw_texture_cache.cpp -------------------------------------------------------------------------------- /src/core/gpu_hw_texture_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_hw_texture_cache.h -------------------------------------------------------------------------------- /src/core/gpu_presenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_presenter.cpp -------------------------------------------------------------------------------- /src/core/gpu_presenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_presenter.h -------------------------------------------------------------------------------- /src/core/gpu_shadergen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_shadergen.cpp -------------------------------------------------------------------------------- /src/core/gpu_shadergen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_shadergen.h -------------------------------------------------------------------------------- /src/core/gpu_sw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_sw.cpp -------------------------------------------------------------------------------- /src/core/gpu_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_sw.h -------------------------------------------------------------------------------- /src/core/gpu_sw_rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_sw_rasterizer.cpp -------------------------------------------------------------------------------- /src/core/gpu_sw_rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_sw_rasterizer.h -------------------------------------------------------------------------------- /src/core/gpu_sw_rasterizer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_sw_rasterizer.inl -------------------------------------------------------------------------------- /src/core/gpu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_thread.cpp -------------------------------------------------------------------------------- /src/core/gpu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_thread.h -------------------------------------------------------------------------------- /src/core/gpu_thread_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_thread_commands.h -------------------------------------------------------------------------------- /src/core/gpu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gpu_types.h -------------------------------------------------------------------------------- /src/core/gte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gte.cpp -------------------------------------------------------------------------------- /src/core/gte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gte.h -------------------------------------------------------------------------------- /src/core/gte_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/gte_types.h -------------------------------------------------------------------------------- /src/core/guncon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/guncon.cpp -------------------------------------------------------------------------------- /src/core/guncon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/guncon.h -------------------------------------------------------------------------------- /src/core/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/host.cpp -------------------------------------------------------------------------------- /src/core/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/host.h -------------------------------------------------------------------------------- /src/core/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/hotkeys.cpp -------------------------------------------------------------------------------- /src/core/imgui_overlays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/imgui_overlays.cpp -------------------------------------------------------------------------------- /src/core/imgui_overlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/imgui_overlays.h -------------------------------------------------------------------------------- /src/core/input_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/input_types.h -------------------------------------------------------------------------------- /src/core/interrupt_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/interrupt_controller.cpp -------------------------------------------------------------------------------- /src/core/interrupt_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/interrupt_controller.h -------------------------------------------------------------------------------- /src/core/jogcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/jogcon.cpp -------------------------------------------------------------------------------- /src/core/jogcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/jogcon.h -------------------------------------------------------------------------------- /src/core/justifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/justifier.cpp -------------------------------------------------------------------------------- /src/core/justifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/justifier.h -------------------------------------------------------------------------------- /src/core/mdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/mdec.cpp -------------------------------------------------------------------------------- /src/core/mdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/mdec.h -------------------------------------------------------------------------------- /src/core/memory_card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_card.cpp -------------------------------------------------------------------------------- /src/core/memory_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_card.h -------------------------------------------------------------------------------- /src/core/memory_card_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_card_image.cpp -------------------------------------------------------------------------------- /src/core/memory_card_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_card_image.h -------------------------------------------------------------------------------- /src/core/memory_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_scanner.cpp -------------------------------------------------------------------------------- /src/core/memory_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/memory_scanner.h -------------------------------------------------------------------------------- /src/core/mips_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/mips_encoder.h -------------------------------------------------------------------------------- /src/core/multitap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/multitap.cpp -------------------------------------------------------------------------------- /src/core/multitap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/multitap.h -------------------------------------------------------------------------------- /src/core/negcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/negcon.cpp -------------------------------------------------------------------------------- /src/core/negcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/negcon.h -------------------------------------------------------------------------------- /src/core/negcon_rumble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/negcon_rumble.cpp -------------------------------------------------------------------------------- /src/core/negcon_rumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/negcon_rumble.h -------------------------------------------------------------------------------- /src/core/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pad.cpp -------------------------------------------------------------------------------- /src/core/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pad.h -------------------------------------------------------------------------------- /src/core/pcdrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pcdrv.cpp -------------------------------------------------------------------------------- /src/core/pcdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pcdrv.h -------------------------------------------------------------------------------- /src/core/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pch.cpp -------------------------------------------------------------------------------- /src/core/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pch.h -------------------------------------------------------------------------------- /src/core/performance_counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/performance_counters.cpp -------------------------------------------------------------------------------- /src/core/performance_counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/performance_counters.h -------------------------------------------------------------------------------- /src/core/pio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pio.cpp -------------------------------------------------------------------------------- /src/core/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/pio.h -------------------------------------------------------------------------------- /src/core/playstation_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/playstation_mouse.cpp -------------------------------------------------------------------------------- /src/core/playstation_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/playstation_mouse.h -------------------------------------------------------------------------------- /src/core/psf_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/psf_loader.cpp -------------------------------------------------------------------------------- /src/core/psf_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/psf_loader.h -------------------------------------------------------------------------------- /src/core/save_state_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/save_state_version.h -------------------------------------------------------------------------------- /src/core/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/settings.cpp -------------------------------------------------------------------------------- /src/core/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/settings.h -------------------------------------------------------------------------------- /src/core/shader_cache_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/shader_cache_version.h -------------------------------------------------------------------------------- /src/core/sio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/sio.cpp -------------------------------------------------------------------------------- /src/core/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/sio.h -------------------------------------------------------------------------------- /src/core/spu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/spu.cpp -------------------------------------------------------------------------------- /src/core/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/spu.h -------------------------------------------------------------------------------- /src/core/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/system.cpp -------------------------------------------------------------------------------- /src/core/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/system.h -------------------------------------------------------------------------------- /src/core/system_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/system_private.h -------------------------------------------------------------------------------- /src/core/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/timers.cpp -------------------------------------------------------------------------------- /src/core/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/timers.h -------------------------------------------------------------------------------- /src/core/timing_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/timing_event.cpp -------------------------------------------------------------------------------- /src/core/timing_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/timing_event.h -------------------------------------------------------------------------------- /src/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/core/types.h -------------------------------------------------------------------------------- /src/duckstation-mini/mini_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-mini/mini_host.cpp -------------------------------------------------------------------------------- /src/duckstation-mini/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-mini/resource.h -------------------------------------------------------------------------------- /src/duckstation-qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/CMakeLists.txt -------------------------------------------------------------------------------- /src/duckstation-qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/Info.plist.in -------------------------------------------------------------------------------- /src/duckstation-qt/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/aboutdialog.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/aboutdialog.h -------------------------------------------------------------------------------- /src/duckstation-qt/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/aboutdialog.ui -------------------------------------------------------------------------------- /src/duckstation-qt/displaywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/displaywidget.h -------------------------------------------------------------------------------- /src/duckstation-qt/logwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/logwindow.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/logwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/logwindow.h -------------------------------------------------------------------------------- /src/duckstation-qt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/mainwindow.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/mainwindow.h -------------------------------------------------------------------------------- /src/duckstation-qt/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/mainwindow.ui -------------------------------------------------------------------------------- /src/duckstation-qt/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/pch.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/pch.h -------------------------------------------------------------------------------- /src/duckstation-qt/qt.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/duckstation-qt/qt.conf.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qt.conf.win -------------------------------------------------------------------------------- /src/duckstation-qt/qthost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qthost.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/qthost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qthost.h -------------------------------------------------------------------------------- /src/duckstation-qt/qtthemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qtthemes.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/qtutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qtutils.cpp -------------------------------------------------------------------------------- /src/duckstation-qt/qtutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/qtutils.h -------------------------------------------------------------------------------- /src/duckstation-qt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/resource.h -------------------------------------------------------------------------------- /src/duckstation-qt/togglebutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/duckstation-qt/togglebutton.h -------------------------------------------------------------------------------- /src/scmversion/.gitignore: -------------------------------------------------------------------------------- 1 | scmversion.cpp 2 | -------------------------------------------------------------------------------- /src/scmversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/scmversion/CMakeLists.txt -------------------------------------------------------------------------------- /src/scmversion/gen_scmversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/scmversion/gen_scmversion.bat -------------------------------------------------------------------------------- /src/scmversion/gen_scmversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/scmversion/gen_scmversion.sh -------------------------------------------------------------------------------- /src/scmversion/scmversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/scmversion/scmversion.h -------------------------------------------------------------------------------- /src/scmversion/scmversion.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/scmversion/scmversion.vcxproj -------------------------------------------------------------------------------- /src/updater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/CMakeLists.txt -------------------------------------------------------------------------------- /src/updater/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/Info.plist.in -------------------------------------------------------------------------------- /src/updater/Updater.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/Updater.icns -------------------------------------------------------------------------------- /src/updater/cocoa_main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/cocoa_main.mm -------------------------------------------------------------------------------- /src/updater/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/resource.h -------------------------------------------------------------------------------- /src/updater/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/updater.cpp -------------------------------------------------------------------------------- /src/updater/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/updater.h -------------------------------------------------------------------------------- /src/updater/updater.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/updater.manifest -------------------------------------------------------------------------------- /src/updater/updater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/updater.rc -------------------------------------------------------------------------------- /src/updater/updater.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/updater.vcxproj -------------------------------------------------------------------------------- /src/updater/win32_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/updater/win32_main.cpp -------------------------------------------------------------------------------- /src/util-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util-tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/util-tests/image_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util-tests/image_tests.cpp -------------------------------------------------------------------------------- /src/util-tests/util-tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util-tests/util-tests.vcxproj -------------------------------------------------------------------------------- /src/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/animated_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/animated_image.cpp -------------------------------------------------------------------------------- /src/util/animated_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/animated_image.h -------------------------------------------------------------------------------- /src/util/audio_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/audio_stream.cpp -------------------------------------------------------------------------------- /src/util/audio_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/audio_stream.h -------------------------------------------------------------------------------- /src/util/cd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image.cpp -------------------------------------------------------------------------------- /src/util/cd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image.h -------------------------------------------------------------------------------- /src/util/cd_image_chd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_chd.cpp -------------------------------------------------------------------------------- /src/util/cd_image_cue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_cue.cpp -------------------------------------------------------------------------------- /src/util/cd_image_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_device.cpp -------------------------------------------------------------------------------- /src/util/cd_image_hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_hasher.cpp -------------------------------------------------------------------------------- /src/util/cd_image_hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_hasher.h -------------------------------------------------------------------------------- /src/util/cd_image_m3u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_m3u.cpp -------------------------------------------------------------------------------- /src/util/cd_image_mds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_mds.cpp -------------------------------------------------------------------------------- /src/util/cd_image_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_memory.cpp -------------------------------------------------------------------------------- /src/util/cd_image_pbp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_pbp.cpp -------------------------------------------------------------------------------- /src/util/cd_image_ppf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cd_image_ppf.cpp -------------------------------------------------------------------------------- /src/util/compress_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/compress_helpers.cpp -------------------------------------------------------------------------------- /src/util/compress_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/compress_helpers.h -------------------------------------------------------------------------------- /src/util/cubeb_audio_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cubeb_audio_stream.cpp -------------------------------------------------------------------------------- /src/util/cue_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cue_parser.cpp -------------------------------------------------------------------------------- /src/util/cue_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/cue_parser.h -------------------------------------------------------------------------------- /src/util/d3d11_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_device.cpp -------------------------------------------------------------------------------- /src/util/d3d11_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_device.h -------------------------------------------------------------------------------- /src/util/d3d11_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_pipeline.cpp -------------------------------------------------------------------------------- /src/util/d3d11_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_pipeline.h -------------------------------------------------------------------------------- /src/util/d3d11_stream_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_stream_buffer.cpp -------------------------------------------------------------------------------- /src/util/d3d11_stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_stream_buffer.h -------------------------------------------------------------------------------- /src/util/d3d11_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_texture.cpp -------------------------------------------------------------------------------- /src/util/d3d11_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d11_texture.h -------------------------------------------------------------------------------- /src/util/d3d12_builders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_builders.cpp -------------------------------------------------------------------------------- /src/util/d3d12_builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_builders.h -------------------------------------------------------------------------------- /src/util/d3d12_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_device.cpp -------------------------------------------------------------------------------- /src/util/d3d12_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_device.h -------------------------------------------------------------------------------- /src/util/d3d12_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_pipeline.cpp -------------------------------------------------------------------------------- /src/util/d3d12_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_pipeline.h -------------------------------------------------------------------------------- /src/util/d3d12_stream_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_stream_buffer.cpp -------------------------------------------------------------------------------- /src/util/d3d12_stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_stream_buffer.h -------------------------------------------------------------------------------- /src/util/d3d12_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_texture.cpp -------------------------------------------------------------------------------- /src/util/d3d12_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d12_texture.h -------------------------------------------------------------------------------- /src/util/d3d_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d_common.cpp -------------------------------------------------------------------------------- /src/util/d3d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/d3d_common.h -------------------------------------------------------------------------------- /src/util/dinput_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/dinput_source.cpp -------------------------------------------------------------------------------- /src/util/dinput_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/dinput_source.h -------------------------------------------------------------------------------- /src/util/dyn_shaderc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/dyn_shaderc.h -------------------------------------------------------------------------------- /src/util/dyn_spirv_cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/dyn_spirv_cross.h -------------------------------------------------------------------------------- /src/util/elf_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/elf_file.cpp -------------------------------------------------------------------------------- /src/util/elf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/elf_file.h -------------------------------------------------------------------------------- /src/util/gpu_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_device.cpp -------------------------------------------------------------------------------- /src/util/gpu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_device.h -------------------------------------------------------------------------------- /src/util/gpu_framebuffer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_framebuffer_manager.h -------------------------------------------------------------------------------- /src/util/gpu_shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_shader_cache.cpp -------------------------------------------------------------------------------- /src/util/gpu_shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_shader_cache.h -------------------------------------------------------------------------------- /src/util/gpu_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_texture.cpp -------------------------------------------------------------------------------- /src/util/gpu_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/gpu_texture.h -------------------------------------------------------------------------------- /src/util/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/host.cpp -------------------------------------------------------------------------------- /src/util/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/host.h -------------------------------------------------------------------------------- /src/util/http_downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/http_downloader.cpp -------------------------------------------------------------------------------- /src/util/http_downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/http_downloader.h -------------------------------------------------------------------------------- /src/util/http_downloader_curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/http_downloader_curl.cpp -------------------------------------------------------------------------------- /src/util/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/image.cpp -------------------------------------------------------------------------------- /src/util/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/image.h -------------------------------------------------------------------------------- /src/util/imgui_animated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/imgui_animated.h -------------------------------------------------------------------------------- /src/util/imgui_gsvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/imgui_gsvector.h -------------------------------------------------------------------------------- /src/util/imgui_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/imgui_manager.cpp -------------------------------------------------------------------------------- /src/util/imgui_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/imgui_manager.h -------------------------------------------------------------------------------- /src/util/ini_settings_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/ini_settings_interface.h -------------------------------------------------------------------------------- /src/util/input_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/input_manager.cpp -------------------------------------------------------------------------------- /src/util/input_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/input_manager.h -------------------------------------------------------------------------------- /src/util/input_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/input_source.cpp -------------------------------------------------------------------------------- /src/util/input_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/input_source.h -------------------------------------------------------------------------------- /src/util/iso_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/iso_reader.cpp -------------------------------------------------------------------------------- /src/util/iso_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/iso_reader.h -------------------------------------------------------------------------------- /src/util/media_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/media_capture.cpp -------------------------------------------------------------------------------- /src/util/media_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/media_capture.h -------------------------------------------------------------------------------- /src/util/metal_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_device.h -------------------------------------------------------------------------------- /src/util/metal_device.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_device.mm -------------------------------------------------------------------------------- /src/util/metal_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_layer.h -------------------------------------------------------------------------------- /src/util/metal_shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_shaders.metal -------------------------------------------------------------------------------- /src/util/metal_stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_stream_buffer.h -------------------------------------------------------------------------------- /src/util/metal_stream_buffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/metal_stream_buffer.mm -------------------------------------------------------------------------------- /src/util/opengl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context.cpp -------------------------------------------------------------------------------- /src/util/opengl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context.h -------------------------------------------------------------------------------- /src/util/opengl_context_agl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_agl.h -------------------------------------------------------------------------------- /src/util/opengl_context_agl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_agl.mm -------------------------------------------------------------------------------- /src/util/opengl_context_egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_egl.cpp -------------------------------------------------------------------------------- /src/util/opengl_context_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_egl.h -------------------------------------------------------------------------------- /src/util/opengl_context_egl_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_egl_xcb.h -------------------------------------------------------------------------------- /src/util/opengl_context_egl_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_egl_xlib.h -------------------------------------------------------------------------------- /src/util/opengl_context_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_sdl.cpp -------------------------------------------------------------------------------- /src/util/opengl_context_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_sdl.h -------------------------------------------------------------------------------- /src/util/opengl_context_wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_wgl.cpp -------------------------------------------------------------------------------- /src/util/opengl_context_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_context_wgl.h -------------------------------------------------------------------------------- /src/util/opengl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_device.cpp -------------------------------------------------------------------------------- /src/util/opengl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_device.h -------------------------------------------------------------------------------- /src/util/opengl_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_loader.h -------------------------------------------------------------------------------- /src/util/opengl_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_pipeline.cpp -------------------------------------------------------------------------------- /src/util/opengl_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_pipeline.h -------------------------------------------------------------------------------- /src/util/opengl_stream_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_stream_buffer.cpp -------------------------------------------------------------------------------- /src/util/opengl_stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_stream_buffer.h -------------------------------------------------------------------------------- /src/util/opengl_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_texture.cpp -------------------------------------------------------------------------------- /src/util/opengl_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/opengl_texture.h -------------------------------------------------------------------------------- /src/util/page_fault_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/page_fault_handler.cpp -------------------------------------------------------------------------------- /src/util/page_fault_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/page_fault_handler.h -------------------------------------------------------------------------------- /src/util/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/pch.cpp -------------------------------------------------------------------------------- /src/util/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/pch.h -------------------------------------------------------------------------------- /src/util/platform_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/platform_misc.h -------------------------------------------------------------------------------- /src/util/platform_misc_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/platform_misc_mac.mm -------------------------------------------------------------------------------- /src/util/platform_misc_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/platform_misc_unix.cpp -------------------------------------------------------------------------------- /src/util/platform_misc_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/platform_misc_win32.cpp -------------------------------------------------------------------------------- /src/util/postprocessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/postprocessing.cpp -------------------------------------------------------------------------------- /src/util/postprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/postprocessing.h -------------------------------------------------------------------------------- /src/util/postprocessing_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/postprocessing_shader.cpp -------------------------------------------------------------------------------- /src/util/postprocessing_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/postprocessing_shader.h -------------------------------------------------------------------------------- /src/util/sdl_audio_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/sdl_audio_stream.cpp -------------------------------------------------------------------------------- /src/util/sdl_input_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/sdl_input_source.cpp -------------------------------------------------------------------------------- /src/util/sdl_input_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/sdl_input_source.h -------------------------------------------------------------------------------- /src/util/shadergen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/shadergen.cpp -------------------------------------------------------------------------------- /src/util/shadergen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/shadergen.h -------------------------------------------------------------------------------- /src/util/shiftjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/shiftjis.cpp -------------------------------------------------------------------------------- /src/util/shiftjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/shiftjis.h -------------------------------------------------------------------------------- /src/util/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/sockets.cpp -------------------------------------------------------------------------------- /src/util/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/sockets.h -------------------------------------------------------------------------------- /src/util/spirv_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/spirv_module.cpp -------------------------------------------------------------------------------- /src/util/spirv_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/spirv_module.h -------------------------------------------------------------------------------- /src/util/state_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/state_wrapper.cpp -------------------------------------------------------------------------------- /src/util/state_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/state_wrapper.h -------------------------------------------------------------------------------- /src/util/texture_decompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/texture_decompress.cpp -------------------------------------------------------------------------------- /src/util/texture_decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/texture_decompress.h -------------------------------------------------------------------------------- /src/util/util.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/util.props -------------------------------------------------------------------------------- /src/util/util.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/util.vcxproj -------------------------------------------------------------------------------- /src/util/util.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/util.vcxproj.filters -------------------------------------------------------------------------------- /src/util/vulkan_builders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_builders.cpp -------------------------------------------------------------------------------- /src/util/vulkan_builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_builders.h -------------------------------------------------------------------------------- /src/util/vulkan_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_device.cpp -------------------------------------------------------------------------------- /src/util/vulkan_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_device.h -------------------------------------------------------------------------------- /src/util/vulkan_entry_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_entry_points.h -------------------------------------------------------------------------------- /src/util/vulkan_entry_points.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_entry_points.inl -------------------------------------------------------------------------------- /src/util/vulkan_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_loader.cpp -------------------------------------------------------------------------------- /src/util/vulkan_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_loader.h -------------------------------------------------------------------------------- /src/util/vulkan_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_pipeline.cpp -------------------------------------------------------------------------------- /src/util/vulkan_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_pipeline.h -------------------------------------------------------------------------------- /src/util/vulkan_stream_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_stream_buffer.cpp -------------------------------------------------------------------------------- /src/util/vulkan_stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_stream_buffer.h -------------------------------------------------------------------------------- /src/util/vulkan_swap_chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_swap_chain.cpp -------------------------------------------------------------------------------- /src/util/vulkan_swap_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_swap_chain.h -------------------------------------------------------------------------------- /src/util/vulkan_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_texture.cpp -------------------------------------------------------------------------------- /src/util/vulkan_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/vulkan_texture.h -------------------------------------------------------------------------------- /src/util/wav_reader_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/wav_reader_writer.cpp -------------------------------------------------------------------------------- /src/util/wav_reader_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/wav_reader_writer.h -------------------------------------------------------------------------------- /src/util/win32_raw_input_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/win32_raw_input_source.h -------------------------------------------------------------------------------- /src/util/window_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/window_info.cpp -------------------------------------------------------------------------------- /src/util/window_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/window_info.h -------------------------------------------------------------------------------- /src/util/x11_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/x11_tools.cpp -------------------------------------------------------------------------------- /src/util/x11_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/x11_tools.h -------------------------------------------------------------------------------- /src/util/xinput_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/xinput_source.cpp -------------------------------------------------------------------------------- /src/util/xinput_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenzek/duckstation/HEAD/src/util/xinput_source.h --------------------------------------------------------------------------------