├── .clang-format ├── .codacy.yaml ├── .gitattributes ├── .gitignore ├── .gitmodules ├── 3rdparty ├── 3rdparty.props ├── DefaultProjectRootDir.props ├── GL │ └── khrplatform.h ├── baseclasses │ ├── CMakeLists.txt │ ├── LICENSE │ ├── amextra.cpp │ ├── amextra.h │ ├── amfilter.cpp │ ├── amfilter.h │ ├── amvideo.cpp │ ├── baseclasses.vcxproj │ ├── baseclasses.vcxproj.filters │ ├── cache.h │ ├── combase.cpp │ ├── combase.h │ ├── ctlutil.cpp │ ├── ctlutil.h │ ├── ddmm.cpp │ ├── ddmm.h │ ├── fourcc.h │ ├── measure.h │ ├── msgthrd.h │ ├── mtype.cpp │ ├── mtype.h │ ├── outputq.cpp │ ├── outputq.h │ ├── pstream.cpp │ ├── pstream.h │ ├── pullpin.cpp │ ├── pullpin.h │ ├── refclock.cpp │ ├── refclock.h │ ├── reftime.h │ ├── renbase.cpp │ ├── renbase.h │ ├── schedule.cpp │ ├── schedule.h │ ├── seekpt.cpp │ ├── seekpt.h │ ├── source.cpp │ ├── source.h │ ├── streams.h │ ├── strmctl.cpp │ ├── strmctl.h │ ├── sysclock.cpp │ ├── sysclock.h │ ├── transfrm.cpp │ ├── transfrm.h │ ├── transip.cpp │ ├── transip.h │ ├── vtrans.cpp │ ├── vtrans.h │ ├── wxdebug.cpp │ ├── wxdebug.h │ ├── wxlist.cpp │ ├── wxlist.h │ ├── wxutil.cpp │ └── wxutil.h ├── cpuinfo │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── deps │ │ └── clog │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── clog.h │ │ │ └── src │ │ │ └── clog.c │ ├── include │ │ ├── cpuinfo-mock.h │ │ └── cpuinfo.h │ └── src │ │ ├── api.c │ │ ├── arm │ │ ├── android │ │ │ ├── api.h │ │ │ └── properties.c │ │ ├── api.h │ │ ├── cache.c │ │ ├── linux │ │ │ ├── aarch32-isa.c │ │ │ ├── aarch64-isa.c │ │ │ ├── api.h │ │ │ ├── chipset.c │ │ │ ├── clusters.c │ │ │ ├── cp.h │ │ │ ├── cpuinfo.c │ │ │ ├── hwcap.c │ │ │ ├── init.c │ │ │ └── midr.c │ │ ├── mach │ │ │ └── init.c │ │ ├── midr.h │ │ ├── tlb.c │ │ └── uarch.c │ │ ├── cache.c │ │ ├── cpuinfo │ │ ├── common.h │ │ ├── internal-api.h │ │ ├── log.h │ │ └── utils.h │ │ ├── emscripten │ │ └── init.c │ │ ├── init.c │ │ ├── linux │ │ ├── api.h │ │ ├── cpulist.c │ │ ├── mockfile.c │ │ ├── multiline.c │ │ ├── processors.c │ │ └── smallfile.c │ │ ├── mach │ │ ├── api.h │ │ └── topology.c │ │ └── x86 │ │ ├── api.h │ │ ├── cache │ │ ├── descriptor.c │ │ ├── deterministic.c │ │ └── init.c │ │ ├── cpuid.h │ │ ├── info.c │ │ ├── init.c │ │ ├── isa.c │ │ ├── linux │ │ ├── api.h │ │ ├── cpuinfo.c │ │ └── init.c │ │ ├── mach │ │ └── init.c │ │ ├── mockcpuid.c │ │ ├── name.c │ │ ├── topology.c │ │ ├── uarch.c │ │ ├── vendor.c │ │ └── windows │ │ ├── api.h │ │ └── init.c ├── cubeb │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── cmake │ │ └── compile_tests │ │ │ └── oss_is_v4.c │ ├── cubeb.supp │ ├── cubeb.vcxproj │ ├── cubeb.vcxproj.filters │ ├── include │ │ └── cubeb │ │ │ ├── cubeb.h │ │ │ └── cubeb_export.h │ └── src │ │ ├── android │ │ ├── audiotrack_definitions.h │ │ ├── cubeb-output-latency.h │ │ ├── cubeb_media_library.h │ │ └── sles_definitions.h │ │ ├── cubeb-internal.h │ │ ├── cubeb-jni-instances.h │ │ ├── cubeb-jni.cpp │ │ ├── cubeb-jni.h │ │ ├── cubeb-sles.h │ │ ├── cubeb-speex-resampler.h │ │ ├── cubeb.c │ │ ├── cubeb_aaudio.cpp │ │ ├── cubeb_alsa.c │ │ ├── cubeb_android.h │ │ ├── cubeb_array_queue.h │ │ ├── cubeb_assert.h │ │ ├── cubeb_audiotrack.c │ │ ├── cubeb_audiounit.cpp │ │ ├── cubeb_jack.cpp │ │ ├── cubeb_kai.c │ │ ├── cubeb_log.cpp │ │ ├── cubeb_log.h │ │ ├── cubeb_mixer.cpp │ │ ├── cubeb_mixer.h │ │ ├── cubeb_opensl.c │ │ ├── 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_sun.c │ │ ├── cubeb_utils.cpp │ │ ├── cubeb_utils.h │ │ ├── cubeb_utils_unix.h │ │ ├── cubeb_utils_win.h │ │ ├── cubeb_wasapi.cpp │ │ ├── cubeb_winmm.c │ │ └── speex │ │ ├── arch.h │ │ ├── fixed_generic.h │ │ ├── resample.c │ │ ├── resample_neon.h │ │ ├── resample_sse.h │ │ ├── speex_config_types.h │ │ ├── speex_resampler.h │ │ └── stack_alloc.h ├── fmt │ ├── fmt.vcxproj │ └── fmt │ │ ├── .clang-format │ │ ├── .github │ │ └── workflows │ │ │ └── windows.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.rst │ │ ├── LICENSE.rst │ │ ├── README.rst │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── _static │ │ │ ├── bootstrap.min.js │ │ │ ├── breathe.css │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── _templates │ │ │ ├── layout.html │ │ │ └── search.html │ │ ├── api.rst │ │ ├── basic-bootstrap │ │ │ ├── README │ │ │ ├── layout.html │ │ │ └── theme.conf │ │ ├── bootstrap │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── build.py │ │ ├── conf.py │ │ ├── contents.rst │ │ ├── fmt.less │ │ ├── index.rst │ │ ├── python-license.txt │ │ ├── syntax.rst │ │ └── usage.rst │ │ ├── include │ │ └── fmt │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ └── ranges.h │ │ ├── pull_request_template.md │ │ ├── src │ │ ├── format.cc │ │ └── os.cc │ │ ├── support │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── C++.sublime-syntax │ │ ├── README │ │ ├── Vagrantfile │ │ ├── appveyor-build.py │ │ ├── appveyor.yml │ │ ├── build.gradle │ │ ├── cmake │ │ │ ├── FindSetEnv.cmake │ │ │ ├── JoinPaths.cmake │ │ │ ├── cxx14.cmake │ │ │ ├── fmt-config.cmake.in │ │ │ └── fmt.pc.in │ │ ├── compute-powers.py │ │ ├── docopt.py │ │ ├── manage.py │ │ ├── rst2md.py │ │ ├── rtd │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── theme │ │ │ │ ├── layout.html │ │ │ │ └── theme.conf │ │ └── travis-build.py │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── add-subdirectory-test │ │ ├── CMakeLists.txt │ │ └── main.cc │ │ ├── assert-test.cc │ │ ├── chrono-test.cc │ │ ├── color-test.cc │ │ ├── compile-error-test │ │ └── CMakeLists.txt │ │ ├── compile-test.cc │ │ ├── core-test.cc │ │ ├── cuda-test │ │ ├── CMakeLists.txt │ │ ├── cpp14.cc │ │ └── cuda-cpp14.cu │ │ ├── find-package-test │ │ ├── CMakeLists.txt │ │ └── main.cc │ │ ├── format │ │ ├── format-impl-test.cc │ │ ├── format-test.cc │ │ ├── fuzzing │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── chrono-duration.cc │ │ ├── float.cc │ │ ├── fuzzer-common.h │ │ ├── main.cc │ │ ├── named-arg.cc │ │ ├── one-arg.cc │ │ └── two-args.cc │ │ ├── gmock-gtest-all.cc │ │ ├── gmock │ │ └── gmock.h │ │ ├── gtest-extra-test.cc │ │ ├── gtest-extra.cc │ │ ├── gtest-extra.h │ │ ├── gtest │ │ ├── gtest-spi.h │ │ └── gtest.h │ │ ├── header-only-test.cc │ │ ├── header-only-test2.cc │ │ ├── locale-test.cc │ │ ├── mock-allocator.h │ │ ├── os-test.cc │ │ ├── ostream-test.cc │ │ ├── posix-mock-test.cc │ │ ├── posix-mock.h │ │ ├── printf-test.cc │ │ ├── ranges-test.cc │ │ ├── scan-test.cc │ │ ├── scan.h │ │ ├── std-format-test.cc │ │ ├── test-assert.h │ │ ├── test-main.cc │ │ ├── util.cc │ │ └── util.h ├── glad │ ├── CMakeLists.txt │ ├── glad.vcxproj │ ├── glad.vcxproj.filters │ ├── include │ │ ├── glad.h │ │ ├── glad_egl.h │ │ ├── glad_wgl.h │ │ └── khrplatform.h │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ └── glad_wgl.c ├── glslang │ ├── .clang-format │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE.txt │ ├── OGLCompilersDLL │ │ ├── InitializeDll.cpp │ │ └── InitializeDll.h │ ├── README-spirv-remap.txt │ ├── README.md │ ├── SPIRV │ │ ├── GLSL.ext.AMD.h │ │ ├── GLSL.ext.EXT.h │ │ ├── GLSL.ext.KHR.h │ │ ├── GLSL.ext.NV.h │ │ ├── GLSL.std.450.h │ │ ├── GlslangToSpv.cpp │ │ ├── GlslangToSpv.h │ │ ├── InReadableOrder.cpp │ │ ├── Logger.cpp │ │ ├── Logger.h │ │ ├── NonSemanticDebugPrintf.h │ │ ├── SPVRemapper.cpp │ │ ├── SPVRemapper.h │ │ ├── SpvBuilder.cpp │ │ ├── SpvBuilder.h │ │ ├── SpvPostProcess.cpp │ │ ├── SpvTools.cpp │ │ ├── SpvTools.h │ │ ├── bitutils.h │ │ ├── disassemble.cpp │ │ ├── disassemble.h │ │ ├── doc.cpp │ │ ├── doc.h │ │ ├── hex_float.h │ │ ├── spirv.hpp │ │ └── spvIR.h │ ├── StandAlone │ │ ├── DirStackFileIncluder.h │ │ ├── ResourceLimits.cpp │ │ ├── ResourceLimits.h │ │ ├── Worklist.h │ │ ├── resource_limits_c.cpp │ │ └── resource_limits_c.h │ ├── glslang.vcxproj │ ├── glslang.vcxproj.filters │ └── glslang │ │ ├── CInterface │ │ └── glslang_c_interface.cpp │ │ ├── GenericCodeGen │ │ ├── CodeGen.cpp │ │ └── Link.cpp │ │ ├── Include │ │ ├── BaseTypes.h │ │ ├── Common.h │ │ ├── ConstantUnion.h │ │ ├── InfoSink.h │ │ ├── InitializeGlobals.h │ │ ├── PoolAlloc.h │ │ ├── ResourceLimits.h │ │ ├── ShHandle.h │ │ ├── Types.h │ │ ├── arrays.h │ │ ├── glslang_c_interface.h │ │ ├── glslang_c_shader_types.h │ │ ├── intermediate.h │ │ └── revision.h │ │ ├── MachineIndependent │ │ ├── Constant.cpp │ │ ├── InfoSink.cpp │ │ ├── Initialize.cpp │ │ ├── Initialize.h │ │ ├── IntermTraverse.cpp │ │ ├── Intermediate.cpp │ │ ├── LiveTraverser.h │ │ ├── ParseContextBase.cpp │ │ ├── ParseHelper.cpp │ │ ├── ParseHelper.h │ │ ├── PoolAlloc.cpp │ │ ├── RemoveTree.cpp │ │ ├── RemoveTree.h │ │ ├── Scan.cpp │ │ ├── Scan.h │ │ ├── ScanContext.h │ │ ├── ShaderLang.cpp │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── Versions.cpp │ │ ├── Versions.h │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── gl_types.h │ │ ├── glslang.m4 │ │ ├── glslang.y │ │ ├── glslang_tab.cpp │ │ ├── glslang_tab.cpp.h │ │ ├── intermOut.cpp │ │ ├── iomapper.cpp │ │ ├── iomapper.h │ │ ├── limits.cpp │ │ ├── linkValidate.cpp │ │ ├── localintermediate.h │ │ ├── parseConst.cpp │ │ ├── parseVersions.h │ │ ├── preprocessor │ │ │ ├── Pp.cpp │ │ │ ├── PpAtom.cpp │ │ │ ├── PpContext.cpp │ │ │ ├── PpContext.h │ │ │ ├── PpScanner.cpp │ │ │ ├── PpTokens.cpp │ │ │ └── PpTokens.h │ │ ├── propagateNoContraction.cpp │ │ ├── propagateNoContraction.h │ │ ├── reflection.cpp │ │ └── reflection.h │ │ ├── OSDependent │ │ ├── Unix │ │ │ └── ossource.cpp │ │ ├── Windows │ │ │ └── ossource.cpp │ │ └── osinclude.h │ │ └── Public │ │ └── ShaderLang.h ├── gtest │ ├── .clang-format │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── 00-bug_report.md │ │ │ ├── 10-feature_request.md │ │ │ └── config.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── WORKSPACE │ ├── ci │ │ ├── linux-presubmit.sh │ │ └── macos-presubmit.sh │ ├── docs │ │ ├── _config.yml │ │ ├── _data │ │ │ └── navigation.yml │ │ ├── _layouts │ │ │ └── default.html │ │ ├── _sass │ │ │ └── main.scss │ │ ├── advanced.md │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.scss │ │ ├── community_created_documentation.md │ │ ├── faq.md │ │ ├── gmock_cheat_sheet.md │ │ ├── gmock_cook_book.md │ │ ├── gmock_faq.md │ │ ├── gmock_for_dummies.md │ │ ├── index.md │ │ ├── pkgconfig.md │ │ ├── platforms.md │ │ ├── primer.md │ │ ├── quickstart-bazel.md │ │ ├── quickstart-cmake.md │ │ ├── reference │ │ │ ├── actions.md │ │ │ ├── assertions.md │ │ │ ├── matchers.md │ │ │ ├── mocking.md │ │ │ └── testing.md │ │ └── samples.md │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ ├── scripts │ │ │ ├── README.md │ │ │ ├── fuse_gmock_files.py │ │ │ └── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ ├── __init__.py │ │ │ │ ├── ast.py │ │ │ │ ├── gmock_class.py │ │ │ │ ├── gmock_class_test.py │ │ │ │ ├── keywords.py │ │ │ │ ├── tokenize.py │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-function-mocker_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-pp-string_test.cc │ │ │ ├── gmock-pp_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ ├── gtest.pc.in │ │ │ ├── gtest_main.pc.in │ │ │ ├── internal_utils.cmake │ │ │ └── libgtest.la.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── 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 │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── README.md │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── release_docs.py │ │ │ ├── run_with_path.py │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.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 │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ ├── googletest-color-test.py │ │ │ ├── googletest-color-test_.cc │ │ │ ├── googletest-death-test-test.cc │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ ├── googletest-env-var-test.py │ │ │ ├── googletest-env-var-test_.cc │ │ │ ├── googletest-failfast-unittest.py │ │ │ ├── googletest-failfast-unittest_.cc │ │ │ ├── googletest-filepath-test.cc │ │ │ ├── googletest-filter-unittest.py │ │ │ ├── googletest-filter-unittest_.cc │ │ │ ├── googletest-global-environment-unittest.py │ │ │ ├── googletest-global-environment-unittest_.cc │ │ │ ├── googletest-json-outfiles-test.py │ │ │ ├── googletest-json-output-unittest.py │ │ │ ├── googletest-list-tests-unittest.py │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ ├── googletest-listener-test.cc │ │ │ ├── googletest-message-test.cc │ │ │ ├── googletest-options-test.cc │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ ├── googletest-output-test.py │ │ │ ├── googletest-output-test_.cc │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ ├── googletest-param-test-test.cc │ │ │ ├── googletest-param-test-test.h │ │ │ ├── googletest-param-test2-test.cc │ │ │ ├── googletest-port-test.cc │ │ │ ├── googletest-printers-test.cc │ │ │ ├── googletest-setuptestsuite-test.py │ │ │ ├── googletest-setuptestsuite-test_.cc │ │ │ ├── googletest-shuffle-test.py │ │ │ ├── googletest-shuffle-test_.cc │ │ │ ├── googletest-test-part-test.cc │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ ├── googletest-uninitialized-test.py │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_json_test_utils.py │ │ │ ├── gtest_list_output_unittest.py │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_skip_check_output_test.py │ │ │ ├── gtest_skip_environment_check_output_test.py │ │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ │ ├── gtest_skip_test.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_testbridge_test.py │ │ │ ├── gtest_testbridge_test_.cc │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ └── library.json ├── imgui │ ├── CHANGELOG.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.txt │ ├── imgui.vcxproj │ ├── imgui.vcxproj.filters │ ├── include │ │ ├── imconfig.h │ │ ├── imgui.h │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_internal.h │ │ ├── imgui_stdlib.h │ │ └── imstb_textedit.h │ └── src │ │ ├── imgui.cpp │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_stdlib.cpp │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ └── imstb_truetype.h ├── include │ ├── Packet32.h │ ├── ghc │ │ └── filesystem.h │ ├── mpeg2_vlc.h │ ├── pcap-bpf.h │ ├── pcap-namedb.h │ ├── pcap.h │ ├── pcap │ │ ├── bluetooth.h │ │ ├── bpf.h │ │ ├── can_socketcan.h │ │ ├── compiler-tests.h │ │ ├── dlt.h │ │ ├── funcattrs.h │ │ ├── ipnet.h │ │ ├── namedb.h │ │ ├── nflog.h │ │ ├── pcap-inttypes.h │ │ ├── pcap.h │ │ ├── sll.h │ │ ├── socket.h │ │ ├── usb.h │ │ └── vlan.h │ ├── vk_mem_alloc.h │ └── vulkan │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_platform.h │ │ ├── vk_sdk_platform.h │ │ ├── vulkan.h │ │ ├── vulkan_android.h │ │ ├── vulkan_beta.h │ │ ├── vulkan_core.h │ │ ├── vulkan_fuchsia.h │ │ ├── vulkan_ggp.h │ │ ├── vulkan_ios.h │ │ ├── vulkan_macos.h │ │ ├── vulkan_metal.h │ │ ├── vulkan_vi.h │ │ ├── vulkan_wayland.h │ │ ├── vulkan_win32.h │ │ ├── vulkan_xcb.h │ │ ├── vulkan_xlib.h │ │ └── vulkan_xlib_xrandr.h ├── jpgd │ ├── jpgd.cpp │ ├── jpgd.h │ ├── jpgd.vcxproj │ ├── jpgd_idct.h │ ├── jpge.cpp │ └── jpge.h ├── libaio │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── README.md │ ├── include │ │ └── libaio.h │ └── src │ │ ├── aio_ring.h │ │ ├── io_cancel.c │ │ ├── io_destroy.c │ │ ├── io_getevents.c │ │ ├── io_pgetevents.c │ │ ├── io_queue_init.c │ │ ├── io_queue_release.c │ │ ├── io_queue_run.c │ │ ├── io_queue_wait.c │ │ ├── io_setup.c │ │ ├── io_submit.c │ │ ├── raw_syscall.c │ │ ├── syscall-alpha.h │ │ ├── syscall-arm.h │ │ ├── syscall-generic.h │ │ ├── syscall-i386.h │ │ ├── syscall-ia64.h │ │ ├── syscall-ppc.h │ │ ├── syscall-s390.h │ │ ├── syscall-sparc.h │ │ ├── syscall-x86_64.h │ │ ├── syscall.h │ │ └── vsys_def.h ├── libchdr │ ├── libchdr.vcxproj │ └── libchdr │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── deps │ │ ├── lzma-19.00 │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── Delta.h │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── Lzma86.h │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── Precomp.h │ │ │ │ └── Sort.h │ │ │ ├── lzma-history.txt │ │ │ ├── lzma.txt │ │ │ ├── lzma.vcxproj │ │ │ ├── lzma.vcxproj.filters │ │ │ └── src │ │ │ │ ├── Alloc.c │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.c │ │ │ │ ├── Delta.c │ │ │ │ ├── LzFind.c │ │ │ │ ├── Lzma86Dec.c │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaEnc.c │ │ │ │ └── Sort.c │ │ └── zlib-1.2.11 │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── doc │ │ │ ├── algorithm.txt │ │ │ ├── rfc1950.txt │ │ │ ├── rfc1951.txt │ │ │ ├── rfc1952.txt │ │ │ └── txtvsbin.txt │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── make_vms.com │ │ │ ├── treebuild.xml │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zconf.h.cmakein │ │ │ ├── zconf.h.in │ │ │ ├── zlib.3 │ │ │ ├── zlib.3.pdf │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zlib2ansi │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── include │ │ ├── dr_libs │ │ │ └── dr_flac.h │ │ └── libchdr │ │ │ ├── bitstream.h │ │ │ ├── cdrom.h │ │ │ ├── chd.h │ │ │ ├── chdconfig.h │ │ │ ├── coretypes.h │ │ │ ├── flac.h │ │ │ └── huffman.h │ │ ├── pkg-config.pc.in │ │ ├── src │ │ ├── libchdr_bitstream.c │ │ ├── libchdr_cdrom.c │ │ ├── libchdr_chd.c │ │ ├── libchdr_flac.c │ │ ├── libchdr_huffman.c │ │ └── link.T │ │ └── tests │ │ ├── benchmark.c │ │ └── build_tests.sh ├── libjpeg │ ├── CMakeLists.txt │ ├── README │ ├── change.log │ ├── filelist.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.vcxproj │ └── libjpeg.vcxproj.filters ├── libpng │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── TODO │ ├── configure │ ├── example.c │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── projects │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngstest.tgt │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── WARNING │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── readme.txt │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ └── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ └── vers.c ├── libsamplerate │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── NEWS │ ├── README.md │ ├── common.h │ ├── config.h │ ├── config.h.in │ ├── fastest_coeffs.h │ ├── high_qual_coeffs.h │ ├── libsamplerate.sln │ ├── libsamplerate.vcxproj │ ├── libsamplerate.vcxproj.filters │ ├── mid_qual_coeffs.h │ ├── samplerate.c │ ├── samplerate.h │ ├── src_linear.c │ ├── src_sinc.c │ └── src_zoh.c ├── oboe │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── oboe │ │ │ ├── AudioStream.h │ │ │ ├── AudioStreamBase.h │ │ │ ├── AudioStreamBuilder.h │ │ │ ├── AudioStreamCallback.h │ │ │ ├── Definitions.h │ │ │ ├── FifoBuffer.h │ │ │ ├── FifoControllerBase.h │ │ │ ├── LatencyTuner.h │ │ │ ├── Oboe.h │ │ │ ├── ResultWithValue.h │ │ │ ├── StabilizedCallback.h │ │ │ ├── Utilities.h │ │ │ └── Version.h │ └── src │ │ ├── aaudio │ │ ├── AAudioExtensions.h │ │ ├── AAudioLoader.cpp │ │ ├── AAudioLoader.h │ │ ├── AudioStreamAAudio.cpp │ │ └── AudioStreamAAudio.h │ │ ├── common │ │ ├── AudioClock.h │ │ ├── AudioSourceCaller.cpp │ │ ├── AudioSourceCaller.h │ │ ├── AudioStream.cpp │ │ ├── AudioStreamBuilder.cpp │ │ ├── DataConversionFlowGraph.cpp │ │ ├── DataConversionFlowGraph.h │ │ ├── FilterAudioStream.cpp │ │ ├── FilterAudioStream.h │ │ ├── FixedBlockAdapter.cpp │ │ ├── FixedBlockAdapter.h │ │ ├── FixedBlockReader.cpp │ │ ├── FixedBlockReader.h │ │ ├── FixedBlockWriter.cpp │ │ ├── FixedBlockWriter.h │ │ ├── LatencyTuner.cpp │ │ ├── MonotonicCounter.h │ │ ├── OboeDebug.h │ │ ├── QuirksManager.cpp │ │ ├── QuirksManager.h │ │ ├── README.md │ │ ├── SourceFloatCaller.cpp │ │ ├── SourceFloatCaller.h │ │ ├── SourceI16Caller.cpp │ │ ├── SourceI16Caller.h │ │ ├── SourceI24Caller.cpp │ │ ├── SourceI24Caller.h │ │ ├── SourceI32Caller.cpp │ │ ├── SourceI32Caller.h │ │ ├── StabilizedCallback.cpp │ │ ├── Trace.cpp │ │ ├── Trace.h │ │ ├── Utilities.cpp │ │ └── Version.cpp │ │ ├── fifo │ │ ├── FifoBuffer.cpp │ │ ├── FifoController.cpp │ │ ├── FifoController.h │ │ ├── FifoControllerBase.cpp │ │ ├── FifoControllerIndirect.cpp │ │ └── FifoControllerIndirect.h │ │ ├── flowgraph │ │ ├── ChannelCountConverter.cpp │ │ ├── ChannelCountConverter.h │ │ ├── ClipToRange.cpp │ │ ├── ClipToRange.h │ │ ├── FlowGraphNode.cpp │ │ ├── FlowGraphNode.h │ │ ├── FlowgraphUtilities.h │ │ ├── ManyToMultiConverter.cpp │ │ ├── ManyToMultiConverter.h │ │ ├── MonoToMultiConverter.cpp │ │ ├── MonoToMultiConverter.h │ │ ├── MultiToMonoConverter.cpp │ │ ├── MultiToMonoConverter.h │ │ ├── RampLinear.cpp │ │ ├── RampLinear.h │ │ ├── SampleRateConverter.cpp │ │ ├── SampleRateConverter.h │ │ ├── SinkFloat.cpp │ │ ├── SinkFloat.h │ │ ├── SinkI16.cpp │ │ ├── SinkI16.h │ │ ├── SinkI24.cpp │ │ ├── SinkI24.h │ │ ├── SinkI32.cpp │ │ ├── SinkI32.h │ │ ├── SourceFloat.cpp │ │ ├── SourceFloat.h │ │ ├── SourceI16.cpp │ │ ├── SourceI16.h │ │ ├── SourceI24.cpp │ │ ├── SourceI24.h │ │ ├── SourceI32.cpp │ │ ├── SourceI32.h │ │ └── resampler │ │ │ ├── HyperbolicCosineWindow.h │ │ │ ├── IntegerRatio.cpp │ │ │ ├── IntegerRatio.h │ │ │ ├── KaiserWindow.h │ │ │ ├── LinearResampler.cpp │ │ │ ├── LinearResampler.h │ │ │ ├── MultiChannelResampler.cpp │ │ │ ├── MultiChannelResampler.h │ │ │ ├── PolyphaseResampler.cpp │ │ │ ├── PolyphaseResampler.h │ │ │ ├── PolyphaseResamplerMono.cpp │ │ │ ├── PolyphaseResamplerMono.h │ │ │ ├── PolyphaseResamplerStereo.cpp │ │ │ ├── PolyphaseResamplerStereo.h │ │ │ ├── README.md │ │ │ ├── SincResampler.cpp │ │ │ ├── SincResampler.h │ │ │ ├── SincResamplerStereo.cpp │ │ │ └── SincResamplerStereo.h │ │ └── opensles │ │ ├── AudioInputStreamOpenSLES.cpp │ │ ├── AudioInputStreamOpenSLES.h │ │ ├── AudioOutputStreamOpenSLES.cpp │ │ ├── AudioOutputStreamOpenSLES.h │ │ ├── AudioStreamBuffered.cpp │ │ ├── AudioStreamBuffered.h │ │ ├── AudioStreamOpenSLES.cpp │ │ ├── AudioStreamOpenSLES.h │ │ ├── EngineOpenSLES.cpp │ │ ├── EngineOpenSLES.h │ │ ├── OpenSLESUtilities.cpp │ │ ├── OpenSLESUtilities.h │ │ ├── OutputMixerOpenSLES.cpp │ │ └── OutputMixerOpenSLES.h ├── portaudio │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── Doxyfile.developer │ ├── LICENSE.txt │ ├── Makefile.in │ ├── README.configure.txt │ ├── README.txt │ ├── SConstruct │ ├── aclocal.m4 │ ├── build │ │ ├── msvc │ │ │ ├── ProjectRootDir.props │ │ │ ├── portaudio.def │ │ │ ├── portaudio.vcxproj │ │ │ ├── portaudio.vcxproj.filters │ │ │ ├── portaudio_noasio.def │ │ │ └── readme.txt │ │ └── scons │ │ │ ├── SConscript_common │ │ │ └── SConscript_opts │ ├── clear_gitrevision.sh │ ├── cmake_support │ │ ├── FindASIOSDK.cmake │ │ ├── FindDXSDK.cmake │ │ ├── FindJack.cmake │ │ ├── cmake_uninstall.cmake.in │ │ ├── options_cmake.h.in │ │ ├── portaudio-2.0.pc.in │ │ ├── portaudioConfig.cmake.in │ │ └── template_portaudio.def │ ├── configure │ ├── configure.in │ ├── depcomp │ ├── doc │ │ ├── src │ │ │ ├── api_overview.dox │ │ │ ├── images │ │ │ │ └── portaudio-external-architecture-diagram.png │ │ │ ├── license.dox │ │ │ ├── mainpage.dox │ │ │ ├── srcguide.dox │ │ │ └── tutorial │ │ │ │ ├── blocking_read_write.dox │ │ │ │ ├── compile_cmake.dox │ │ │ │ ├── compile_linux.dox │ │ │ │ ├── compile_mac_coreaudio.dox │ │ │ │ ├── compile_windows.dox │ │ │ │ ├── compile_windows_asio_msvc.dox │ │ │ │ ├── compile_windows_mingw.dox │ │ │ │ ├── exploring.dox │ │ │ │ ├── initializing_portaudio.dox │ │ │ │ ├── open_default_stream.dox │ │ │ │ ├── querying_devices.dox │ │ │ │ ├── start_stop_abort.dox │ │ │ │ ├── terminating_portaudio.dox │ │ │ │ ├── tutorial_start.dox │ │ │ │ ├── utility_functions.dox │ │ │ │ └── writing_a_callback.dox │ │ └── utils │ │ │ └── checkfiledocs.py │ ├── fixdir.bat │ ├── fixfile.bat │ ├── include │ │ ├── pa_asio.h │ │ ├── pa_jack.h │ │ ├── pa_linux_alsa.h │ │ ├── pa_mac_core.h │ │ ├── pa_win_ds.h │ │ ├── pa_win_wasapi.h │ │ ├── pa_win_waveformat.h │ │ ├── pa_win_wdmks.h │ │ ├── pa_win_wmme.h │ │ └── portaudio.h │ ├── index.html │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ ├── pablio │ │ ├── README.txt │ │ ├── pablio.c │ │ ├── pablio.def │ │ ├── pablio.h │ │ ├── test_rw.c │ │ ├── test_rw_echo.c │ │ ├── test_w_saw.c │ │ └── test_w_saw8.c │ ├── portaudio-2.0.pc.in │ ├── src │ │ ├── SConscript │ │ ├── common │ │ │ ├── pa_allocation.c │ │ │ ├── pa_allocation.h │ │ │ ├── pa_converters.c │ │ │ ├── pa_converters.h │ │ │ ├── pa_cpuload.c │ │ │ ├── pa_cpuload.h │ │ │ ├── pa_debugprint.c │ │ │ ├── pa_debugprint.h │ │ │ ├── pa_dither.c │ │ │ ├── pa_dither.h │ │ │ ├── pa_endianness.h │ │ │ ├── pa_front.c │ │ │ ├── pa_gitrevision.h │ │ │ ├── pa_hostapi.h │ │ │ ├── pa_memorybarrier.h │ │ │ ├── pa_process.c │ │ │ ├── pa_process.h │ │ │ ├── pa_ringbuffer.c │ │ │ ├── pa_ringbuffer.h │ │ │ ├── pa_stream.c │ │ │ ├── pa_stream.h │ │ │ ├── pa_svnrevision.h │ │ │ ├── pa_trace.c │ │ │ ├── pa_trace.h │ │ │ ├── pa_types.h │ │ │ └── pa_util.h │ │ ├── hostapi │ │ │ ├── alsa │ │ │ │ └── pa_linux_alsa.c │ │ │ ├── asihpi │ │ │ │ └── pa_linux_asihpi.c │ │ │ ├── asio │ │ │ │ ├── ASIO-README.txt │ │ │ │ ├── Callback_adaptation_.pdf │ │ │ │ ├── Pa_ASIO.pdf │ │ │ │ ├── iasiothiscallresolver.cpp │ │ │ │ ├── iasiothiscallresolver.h │ │ │ │ └── pa_asio.cpp │ │ │ ├── coreaudio │ │ │ │ ├── notes.txt │ │ │ │ ├── pa_mac_core.c │ │ │ │ ├── pa_mac_core_blocking.c │ │ │ │ ├── pa_mac_core_blocking.h │ │ │ │ ├── pa_mac_core_internal.h │ │ │ │ ├── pa_mac_core_old.c │ │ │ │ ├── pa_mac_core_utilities.c │ │ │ │ └── pa_mac_core_utilities.h │ │ │ ├── dsound │ │ │ │ ├── pa_win_ds.c │ │ │ │ ├── pa_win_ds_dynlink.c │ │ │ │ └── pa_win_ds_dynlink.h │ │ │ ├── jack │ │ │ │ └── pa_jack.c │ │ │ ├── oss │ │ │ │ ├── low_latency_tip.txt │ │ │ │ ├── pa_unix_oss.c │ │ │ │ └── recplay.c │ │ │ ├── skeleton │ │ │ │ ├── README.txt │ │ │ │ └── pa_hostapi_skeleton.c │ │ │ ├── wasapi │ │ │ │ ├── pa_win_wasapi.c │ │ │ │ └── readme.txt │ │ │ ├── wdmks │ │ │ │ ├── pa_win_wdmks.c │ │ │ │ └── readme.txt │ │ │ └── wmme │ │ │ │ └── pa_win_wmme.c │ │ └── os │ │ │ ├── unix │ │ │ ├── pa_unix_hostapis.c │ │ │ ├── pa_unix_util.c │ │ │ └── pa_unix_util.h │ │ │ └── win │ │ │ ├── pa_win_coinitialize.c │ │ │ ├── pa_win_coinitialize.h │ │ │ ├── pa_win_hostapis.c │ │ │ ├── pa_win_util.c │ │ │ ├── pa_win_waveformat.c │ │ │ ├── pa_win_wdmks_utils.c │ │ │ ├── pa_win_wdmks_utils.h │ │ │ ├── pa_x86_plain_converters.c │ │ │ └── pa_x86_plain_converters.h │ └── update_gitrevision.sh ├── pthreads4w │ ├── ANNOUNCE │ ├── BUGS │ ├── Bmakefile │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── FAQ │ ├── GNUmakefile │ ├── MAINTAINERS │ ├── Makefile │ ├── NEWS │ ├── Nmakefile │ ├── Nmakefile.tests │ ├── PROGRESS │ ├── README │ ├── README.Borland │ ├── README.CV │ ├── README.NONPORTABLE │ ├── README.Watcom │ ├── README.WinCE │ ├── TODO │ ├── WinCE-PORT │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── build │ │ ├── pthreads4w.vcxproj │ │ └── pthreads4w.vcxproj.filters │ ├── builddmc.bat │ ├── cancel.c │ ├── cleanup.c │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── include │ │ ├── pthread.h │ │ ├── sched.h │ │ └── semaphore.h │ ├── manual │ │ ├── ChangeLog │ │ ├── PortabilityIssues.html │ │ ├── index.html │ │ ├── pthreadCancelableWait.html │ │ ├── pthread_attr_init.html │ │ ├── pthread_attr_setstackaddr.html │ │ ├── pthread_attr_setstacksize.html │ │ ├── pthread_barrier_init.html │ │ ├── pthread_barrier_wait.html │ │ ├── pthread_barrierattr_init.html │ │ ├── pthread_barrierattr_setpshared.html │ │ ├── pthread_cancel.html │ │ ├── pthread_cleanup_push.html │ │ ├── pthread_cond_init.html │ │ ├── pthread_condattr_init.html │ │ ├── pthread_condattr_setpshared.html │ │ ├── pthread_create.html │ │ ├── pthread_delay_np.html │ │ ├── pthread_detach.html │ │ ├── pthread_equal.html │ │ ├── pthread_exit.html │ │ ├── pthread_getunique_np.html │ │ ├── pthread_getw32threadhandle_np.html │ │ ├── pthread_join.html │ │ ├── pthread_key_create.html │ │ ├── pthread_kill.html │ │ ├── pthread_mutex_init.html │ │ ├── pthread_mutexattr_init.html │ │ ├── pthread_mutexattr_setpshared.html │ │ ├── pthread_num_processors_np.html │ │ ├── pthread_once.html │ │ ├── pthread_rwlock_init.html │ │ ├── pthread_rwlock_rdlock.html │ │ ├── pthread_rwlock_timedrdlock.html │ │ ├── pthread_rwlock_timedwrlock.html │ │ ├── pthread_rwlock_unlock.html │ │ ├── pthread_rwlock_wrlock.html │ │ ├── pthread_rwlockattr_init.html │ │ ├── pthread_rwlockattr_setpshared.html │ │ ├── pthread_self.html │ │ ├── pthread_setcancelstate.html │ │ ├── pthread_setcanceltype.html │ │ ├── pthread_setconcurrency.html │ │ ├── pthread_setschedparam.html │ │ ├── pthread_spin_init.html │ │ ├── pthread_spin_lock.html │ │ ├── pthread_spin_unlock.html │ │ ├── pthread_timechange_handler_np.html │ │ ├── pthread_win32_attach_detach_np.html │ │ ├── pthread_win32_test_features_np.html │ │ ├── sched_get_priority_max.html │ │ ├── sched_getscheduler.html │ │ ├── sched_setscheduler.html │ │ ├── sched_yield.html │ │ └── sem_init.html │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_OLL_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tests │ │ ├── Bmakefile │ │ ├── ChangeLog │ │ ├── Debug.plg │ │ ├── GNUmakefile │ │ ├── Makefile │ │ ├── README │ │ ├── README.BENCHTESTS │ │ ├── SIZES.GC │ │ ├── SIZES.GCE │ │ ├── SIZES.VC │ │ ├── SIZES.VCE │ │ ├── SIZES.VSE │ │ ├── Wmakefile │ │ ├── barrier1.c │ │ ├── barrier2.c │ │ ├── barrier3.c │ │ ├── barrier4.c │ │ ├── barrier5.c │ │ ├── barrier6.c │ │ ├── benchlib.c │ │ ├── benchtest.h │ │ ├── benchtest1.c │ │ ├── benchtest2.c │ │ ├── benchtest3.c │ │ ├── benchtest4.c │ │ ├── benchtest5.c │ │ ├── cancel1.c │ │ ├── cancel2.c │ │ ├── cancel3.c │ │ ├── cancel4.c │ │ ├── cancel5.c │ │ ├── cancel6a.c │ │ ├── cancel6d.c │ │ ├── cancel7.c │ │ ├── cancel8.c │ │ ├── cancel9.c │ │ ├── cleanup0.c │ │ ├── cleanup1.c │ │ ├── cleanup2.c │ │ ├── cleanup3.c │ │ ├── condvar1.c │ │ ├── condvar1_1.c │ │ ├── condvar1_2.c │ │ ├── condvar2.c │ │ ├── condvar2_1.c │ │ ├── condvar3.c │ │ ├── condvar3_1.c │ │ ├── condvar3_2.c │ │ ├── condvar3_3.c │ │ ├── condvar4.c │ │ ├── condvar5.c │ │ ├── condvar6.c │ │ ├── condvar7.c │ │ ├── condvar8.c │ │ ├── condvar9.c │ │ ├── context1.c │ │ ├── count1.c │ │ ├── create1.c │ │ ├── create2.c │ │ ├── create3.c │ │ ├── delay1.c │ │ ├── delay2.c │ │ ├── detach1.c │ │ ├── equal1.c │ │ ├── errno1.c │ │ ├── exception1.c │ │ ├── exception2.c │ │ ├── exception3.c │ │ ├── exit1.c │ │ ├── exit2.c │ │ ├── exit3.c │ │ ├── exit4.c │ │ ├── exit5.c │ │ ├── eyal1.c │ │ ├── inherit1.c │ │ ├── join0.c │ │ ├── join1.c │ │ ├── join2.c │ │ ├── join3.c │ │ ├── kill1.c │ │ ├── loadfree.c │ │ ├── mutex1.c │ │ ├── mutex1e.c │ │ ├── mutex1n.c │ │ ├── mutex1r.c │ │ ├── mutex2.c │ │ ├── mutex2e.c │ │ ├── mutex2r.c │ │ ├── mutex3.c │ │ ├── mutex3e.c │ │ ├── mutex3r.c │ │ ├── mutex4.c │ │ ├── mutex5.c │ │ ├── mutex6.c │ │ ├── mutex6e.c │ │ ├── mutex6es.c │ │ ├── mutex6n.c │ │ ├── mutex6r.c │ │ ├── mutex6rs.c │ │ ├── mutex6s.c │ │ ├── mutex7.c │ │ ├── mutex7e.c │ │ ├── mutex7n.c │ │ ├── mutex7r.c │ │ ├── mutex8.c │ │ ├── mutex8e.c │ │ ├── mutex8n.c │ │ ├── mutex8r.c │ │ ├── once1.c │ │ ├── once2.c │ │ ├── once3.c │ │ ├── once4.c │ │ ├── openmp1.c │ │ ├── priority1.c │ │ ├── priority2.c │ │ ├── reuse1.c │ │ ├── reuse2.c │ │ ├── robust1.c │ │ ├── robust2.c │ │ ├── robust3.c │ │ ├── robust4.c │ │ ├── robust5.c │ │ ├── rwlock1.c │ │ ├── rwlock2.c │ │ ├── rwlock2_t.c │ │ ├── rwlock3.c │ │ ├── rwlock3_t.c │ │ ├── rwlock4.c │ │ ├── rwlock4_t.c │ │ ├── rwlock5.c │ │ ├── rwlock5_t.c │ │ ├── rwlock6.c │ │ ├── rwlock6_t.c │ │ ├── rwlock6_t2.c │ │ ├── rwlock7.c │ │ ├── rwlock8.c │ │ ├── self1.c │ │ ├── self2.c │ │ ├── semaphore1.c │ │ ├── semaphore2.c │ │ ├── semaphore3.c │ │ ├── semaphore4.c │ │ ├── semaphore4t.c │ │ ├── semaphore5.c │ │ ├── sequence1.c │ │ ├── sizes.c │ │ ├── spin1.c │ │ ├── spin2.c │ │ ├── spin3.c │ │ ├── spin4.c │ │ ├── stress1.c │ │ ├── test.h │ │ ├── tryentercs.c │ │ ├── tryentercs2.c │ │ ├── tsd1.c │ │ ├── tsd2.c │ │ ├── valid1.c │ │ └── valid2.c │ ├── tsd.c │ ├── version.rc │ └── w32_CancelableWait.c ├── simpleini │ ├── CMakeLists.txt │ ├── LICENCE.txt │ ├── include │ │ ├── ConvertUTF.h │ │ └── SimpleIni.h │ ├── simpleini.vcxproj │ ├── simpleini.vcxproj.filters │ └── src │ │ └── ConvertUTF.c ├── soundtouch │ ├── CMakeLists.txt │ ├── COPYING.TXT │ ├── README.html │ ├── SoundTouch.vcxproj │ ├── SoundTouch.vcxproj.filters │ ├── soundtouch │ │ ├── BPMDetect.h │ │ ├── FIFOSampleBuffer.h │ │ ├── FIFOSamplePipe.h │ │ ├── STTypes.h │ │ └── SoundTouch.h │ └── source │ │ ├── SoundStretch │ │ ├── WavFile.cpp │ │ └── WavFile.h │ │ └── SoundTouch │ │ ├── AAFilter.cpp │ │ ├── AAFilter.h │ │ ├── BPMDetect.cpp │ │ ├── FIFOSampleBuffer.cpp │ │ ├── FIRFilter.cpp │ │ ├── FIRFilter.h │ │ ├── InterpolateCubic.cpp │ │ ├── InterpolateCubic.h │ │ ├── InterpolateLinear.cpp │ │ ├── InterpolateLinear.h │ │ ├── InterpolateShannon.cpp │ │ ├── InterpolateShannon.h │ │ ├── PeakFinder.cpp │ │ ├── PeakFinder.h │ │ ├── RateTransposer.cpp │ │ ├── RateTransposer.h │ │ ├── SoundTouch.cpp │ │ ├── TDStretch.cpp │ │ ├── TDStretch.h │ │ ├── cpu_detect.h │ │ ├── cpu_detect_x86.cpp │ │ ├── mmx_optimized.cpp │ │ └── sse_optimized.cpp ├── svn_readme.txt ├── 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 │ │ │ ├── decoder-aarch64.h │ │ │ ├── disasm-aarch64.h │ │ │ ├── instructions-aarch64.h │ │ │ ├── instrument-aarch64.h │ │ │ ├── macro-assembler-aarch64.h │ │ │ ├── operands-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 │ │ │ ├── cpu-aarch64.cc │ │ │ ├── cpu-features-auditor-aarch64.cc │ │ │ ├── decoder-aarch64.cc │ │ │ ├── disasm-aarch64.cc │ │ │ ├── instructions-aarch64.cc │ │ │ ├── instrument-aarch64.cc │ │ │ ├── logic-aarch64.cc │ │ │ ├── macro-assembler-aarch64.cc │ │ │ ├── operands-aarch64.cc │ │ │ ├── pointer-auth-aarch64.cc │ │ │ └── simulator-aarch64.cc │ │ ├── code-buffer-vixl.cc │ │ ├── compiler-intrinsics-vixl.cc │ │ ├── cpu-features.cc │ │ └── utils-vixl.cc │ ├── vixl.vcxproj │ └── vixl.vcxproj.filters ├── wil │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── ThirdPartyNotices.txt │ ├── cmake │ │ └── common_build_flags.cmake │ ├── include │ │ └── wil │ │ │ ├── Tracelogging.h │ │ │ ├── com.h │ │ │ ├── common.h │ │ │ ├── cppwinrt.h │ │ │ ├── cppwinrt_wrl.h │ │ │ ├── filesystem.h │ │ │ ├── nt_result_macros.h │ │ │ ├── registry.h │ │ │ ├── resource.h │ │ │ ├── result.h │ │ │ ├── result_macros.h │ │ │ ├── result_originate.h │ │ │ ├── rpc_helpers.h │ │ │ ├── safecast.h │ │ │ ├── stl.h │ │ │ ├── token_helpers.h │ │ │ ├── traceloggingconfig.h │ │ │ ├── win32_helpers.h │ │ │ ├── winrt.h │ │ │ ├── wistd_config.h │ │ │ ├── wistd_functional.h │ │ │ ├── wistd_memory.h │ │ │ ├── wistd_type_traits.h │ │ │ └── wrl.h │ ├── packaging │ │ ├── CMakeLists.txt │ │ └── nuget │ │ │ ├── CMakeLists.txt │ │ │ ├── Microsoft.Windows.ImplementationLibrary.nuspec │ │ │ └── Microsoft.Windows.ImplementationLibrary.targets │ ├── scripts │ │ ├── azure-pipelines.yml │ │ ├── build_all.cmd │ │ ├── init.cmd │ │ ├── init_all.cmd │ │ └── runtests.cmd │ └── tests │ │ ├── CMakeLists.txt │ │ ├── ComTests.cpp │ │ ├── CommonTests.cpp │ │ ├── CppWinRT20Tests.cpp │ │ ├── CppWinRTTests.cpp │ │ ├── FakeWinRTTypes.h │ │ ├── FileSystemTests.cpp │ │ ├── MallocSpy.h │ │ ├── NtResultTests.cpp │ │ ├── ResourceTests.cpp │ │ ├── ResultTests.cpp │ │ ├── Rpc.cpp │ │ ├── SafeCastTests.cpp │ │ ├── StlTests.cpp │ │ ├── TokenHelpersTests.cpp │ │ ├── UniqueWinRTEventTokenTests.cpp │ │ ├── WatcherTests.cpp │ │ ├── WinRTTests.cpp │ │ ├── WinVerifyTrustTest.cpp │ │ ├── WistdTests.cpp │ │ ├── app │ │ └── CMakeLists.txt │ │ ├── catch.hpp │ │ ├── common.h │ │ ├── cpplatest │ │ └── CMakeLists.txt │ │ ├── main.cpp │ │ ├── noexcept │ │ └── CMakeLists.txt │ │ ├── normal │ │ └── CMakeLists.txt │ │ ├── test_objects.h │ │ ├── wiTest.cpp │ │ ├── win7 │ │ └── CMakeLists.txt │ │ └── workarounds │ │ ├── readme.md │ │ └── wrl │ │ └── wrl │ │ ├── async.h │ │ └── implements.h ├── wxwidgets3.0 │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── art │ │ ├── addbookm.xpm │ │ ├── back.xpm │ │ ├── cdrom.xpm │ │ ├── close.xpm │ │ ├── copy.xpm │ │ ├── cross.xpm │ │ ├── cut.xpm │ │ ├── deffile.xpm │ │ ├── delbookm.xpm │ │ ├── delete.xpm │ │ ├── dir_up.xpm │ │ ├── down.xpm │ │ ├── exefile.xpm │ │ ├── fileopen.xpm │ │ ├── filesave.xpm │ │ ├── filesaveas.xpm │ │ ├── find.xpm │ │ ├── findrepl.xpm │ │ ├── first.xpm │ │ ├── floppy.xpm │ │ ├── folder.xpm │ │ ├── folder_open.xpm │ │ ├── forward.xpm │ │ ├── gtk │ │ │ ├── error.xpm │ │ │ ├── info.xpm │ │ │ ├── question.xpm │ │ │ └── warning.xpm │ │ ├── harddisk.xpm │ │ ├── helpicon.xpm │ │ ├── home.xpm │ │ ├── htmbook.xpm │ │ ├── htmfoldr.xpm │ │ ├── htmoptns.xpm │ │ ├── htmpage.xpm │ │ ├── htmsidep.xpm │ │ ├── last.xpm │ │ ├── listview.xpm │ │ ├── minus.xpm │ │ ├── missimg.xpm │ │ ├── motif │ │ │ ├── error.xpm │ │ │ ├── info.xpm │ │ │ ├── question.xpm │ │ │ └── warning.xpm │ │ ├── new.xpm │ │ ├── new_dir.xpm │ │ ├── osx │ │ │ ├── README │ │ │ ├── close.png │ │ │ ├── close_current.png │ │ │ └── close_pressed.png │ │ ├── paste.xpm │ │ ├── plus.xpm │ │ ├── print.xpm │ │ ├── quit.xpm │ │ ├── redo.xpm │ │ ├── removable.xpm │ │ ├── repview.xpm │ │ ├── tango │ │ │ ├── application_x_executable.h │ │ │ ├── dialog_error.h │ │ │ ├── dialog_information.h │ │ │ ├── dialog_warning.h │ │ │ ├── document_new.h │ │ │ ├── document_open.h │ │ │ ├── document_print.h │ │ │ ├── document_save.h │ │ │ ├── document_save_as.h │ │ │ ├── drive_harddisk.h │ │ │ ├── drive_optical.h │ │ │ ├── drive_removable_media.h │ │ │ ├── edit_copy.h │ │ │ ├── edit_cut.h │ │ │ ├── edit_delete.h │ │ │ ├── edit_find.h │ │ │ ├── edit_find_replace.h │ │ │ ├── edit_paste.h │ │ │ ├── edit_redo.h │ │ │ ├── edit_undo.h │ │ │ ├── folder.h │ │ │ ├── folder_new.h │ │ │ ├── folder_open.h │ │ │ ├── go_down.h │ │ │ ├── go_first.h │ │ │ ├── go_home.h │ │ │ ├── go_last.h │ │ │ ├── go_next.h │ │ │ ├── go_previous.h │ │ │ ├── go_up.h │ │ │ ├── image_missing.h │ │ │ ├── list_add.h │ │ │ ├── list_remove.h │ │ │ └── text_x_generic.h │ │ ├── tick.xpm │ │ ├── tipicon.xpm │ │ ├── toparent.xpm │ │ ├── undo.xpm │ │ ├── up.xpm │ │ ├── wxwin.ico │ │ ├── wxwin16x16.png │ │ ├── wxwin16x16.xpm │ │ ├── wxwin32x32.png │ │ └── wxwin32x32.xpm │ ├── build │ │ └── msw │ │ │ ├── Common.props │ │ │ ├── wx30_adv.vcxproj │ │ │ ├── wx30_adv.vcxproj.filters │ │ │ ├── wx30_base.vcxproj │ │ │ ├── wx30_base.vcxproj.filters │ │ │ ├── wx30_config.vcxproj │ │ │ ├── wx30_config.vcxproj.filters │ │ │ ├── wx30_core.vcxproj │ │ │ └── wx30_core.vcxproj.filters │ ├── include │ │ ├── msvc │ │ │ └── wx │ │ │ │ └── setup.h │ │ ├── unix │ │ │ └── wx │ │ │ │ ├── setup.h │ │ │ │ └── unix │ │ │ │ └── chkconf.h │ │ └── wx │ │ │ ├── aboutdlg.h │ │ │ ├── accel.h │ │ │ ├── access.h │ │ │ ├── affinematrix2d.h │ │ │ ├── affinematrix2dbase.h │ │ │ ├── afterstd.h │ │ │ ├── android │ │ │ ├── chkconf.h │ │ │ ├── config_android.h │ │ │ └── wx │ │ │ │ └── setup.h │ │ │ ├── anidecod.h │ │ │ ├── animate.h │ │ │ ├── animdecod.h │ │ │ ├── any.h │ │ │ ├── anybutton.h │ │ │ ├── anystr.h │ │ │ ├── app.h │ │ │ ├── apptrait.h │ │ │ ├── archive.h │ │ │ ├── arrimpl.cpp │ │ │ ├── arrstr.h │ │ │ ├── artprov.h │ │ │ ├── atomic.h │ │ │ ├── bannerwindow.h │ │ │ ├── base64.h │ │ │ ├── beforestd.h │ │ │ ├── bitmap.h │ │ │ ├── bmpbuttn.h │ │ │ ├── bmpcbox.h │ │ │ ├── bookctrl.h │ │ │ ├── brush.h │ │ │ ├── buffer.h │ │ │ ├── build.h │ │ │ ├── busyinfo.h │ │ │ ├── button.h │ │ │ ├── calctrl.h │ │ │ ├── caret.h │ │ │ ├── chartype.h │ │ │ ├── checkbox.h │ │ │ ├── checkeddelete.h │ │ │ ├── checklst.h │ │ │ ├── chkconf.h │ │ │ ├── choicdlg.h │ │ │ ├── choice.h │ │ │ ├── choicebk.h │ │ │ ├── clipbrd.h │ │ │ ├── clntdata.h │ │ │ ├── clrpicker.h │ │ │ ├── cmdargs.h │ │ │ ├── cmdline.h │ │ │ ├── cmdproc.h │ │ │ ├── cmndata.h │ │ │ ├── collpane.h │ │ │ ├── colordlg.h │ │ │ ├── colour.h │ │ │ ├── colourdata.h │ │ │ ├── combo.h │ │ │ ├── combobox.h │ │ │ ├── commandlinkbutton.h │ │ │ ├── compiler.h │ │ │ ├── compositewin.h │ │ │ ├── confbase.h │ │ │ ├── config.h │ │ │ ├── containr.h │ │ │ ├── control.h │ │ │ ├── convauto.h │ │ │ ├── cpp.h │ │ │ ├── cppunit.h │ │ │ ├── crt.h │ │ │ ├── cshelp.h │ │ │ ├── ctrlsub.h │ │ │ ├── cursor.h │ │ │ ├── custombgwin.h │ │ │ ├── dataobj.h │ │ │ ├── dataview.h │ │ │ ├── datectrl.h │ │ │ ├── dateevt.h │ │ │ ├── datetime.h │ │ │ ├── datetimectrl.h │ │ │ ├── datstrm.h │ │ │ ├── dc.h │ │ │ ├── dcbuffer.h │ │ │ ├── dcclient.h │ │ │ ├── dcgraph.h │ │ │ ├── dcmemory.h │ │ │ ├── dcmirror.h │ │ │ ├── dcprint.h │ │ │ ├── dcps.h │ │ │ ├── dcscreen.h │ │ │ ├── dcsvg.h │ │ │ ├── dde.h │ │ │ ├── debug.h │ │ │ ├── debugrpt.h │ │ │ ├── defs.h │ │ │ ├── dialog.h │ │ │ ├── dialup.h │ │ │ ├── dir.h │ │ │ ├── dirctrl.h │ │ │ ├── dirdlg.h │ │ │ ├── display.h │ │ │ ├── display_impl.h │ │ │ ├── dlimpexp.h │ │ │ ├── dlist.h │ │ │ ├── dnd.h │ │ │ ├── docmdi.h │ │ │ ├── docview.h │ │ │ ├── dragimag.h │ │ │ ├── dvrenderers.h │ │ │ ├── dynarray.h │ │ │ ├── dynlib.h │ │ │ ├── dynload.h │ │ │ ├── editlbox.h │ │ │ ├── effects.h │ │ │ ├── encconv.h │ │ │ ├── encinfo.h │ │ │ ├── event.h │ │ │ ├── eventfilter.h │ │ │ ├── evtloop.h │ │ │ ├── evtloopsrc.h │ │ │ ├── except.h │ │ │ ├── fdrepdlg.h │ │ │ ├── features.h │ │ │ ├── ffile.h │ │ │ ├── file.h │ │ │ ├── fileconf.h │ │ │ ├── filectrl.h │ │ │ ├── filedlg.h │ │ │ ├── filefn.h │ │ │ ├── filehistory.h │ │ │ ├── filename.h │ │ │ ├── filepicker.h │ │ │ ├── filesys.h │ │ │ ├── flags.h │ │ │ ├── fmappriv.h │ │ │ ├── font.h │ │ │ ├── fontdata.h │ │ │ ├── fontdlg.h │ │ │ ├── fontenc.h │ │ │ ├── fontenum.h │ │ │ ├── fontmap.h │ │ │ ├── fontpicker.h │ │ │ ├── fontutil.h │ │ │ ├── frame.h │ │ │ ├── fs_arc.h │ │ │ ├── fs_filter.h │ │ │ ├── fs_inet.h │ │ │ ├── fs_mem.h │ │ │ ├── fs_zip.h │ │ │ ├── fswatcher.h │ │ │ ├── gauge.h │ │ │ ├── gbsizer.h │ │ │ ├── gdicmn.h │ │ │ ├── gdiobj.h │ │ │ ├── generic │ │ │ ├── aboutdlgg.h │ │ │ ├── accel.h │ │ │ ├── animate.h │ │ │ ├── bmpcbox.h │ │ │ ├── busyinfo.h │ │ │ ├── buttonbar.h │ │ │ ├── calctrlg.h │ │ │ ├── caret.h │ │ │ ├── choicdgg.h │ │ │ ├── clrpickerg.h │ │ │ ├── collpaneg.h │ │ │ ├── colour.h │ │ │ ├── colrdlgg.h │ │ │ ├── combo.h │ │ │ ├── ctrlsub.h │ │ │ ├── custombgwin.h │ │ │ ├── dataview.h │ │ │ ├── datectrl.h │ │ │ ├── dcpsg.h │ │ │ ├── dirctrlg.h │ │ │ ├── dirdlgg.h │ │ │ ├── dragimgg.h │ │ │ ├── dvrenderer.h │ │ │ ├── dvrenderers.h │ │ │ ├── fdrepdlg.h │ │ │ ├── filectrlg.h │ │ │ ├── filedlgg.h │ │ │ ├── filepickerg.h │ │ │ ├── fontdlgg.h │ │ │ ├── fontpickerg.h │ │ │ ├── fswatcher.h │ │ │ ├── grid.h │ │ │ ├── gridctrl.h │ │ │ ├── grideditors.h │ │ │ ├── gridsel.h │ │ │ ├── headerctrlg.h │ │ │ ├── helpext.h │ │ │ ├── hyperlink.h │ │ │ ├── icon.h │ │ │ ├── imaglist.h │ │ │ ├── infobar.h │ │ │ ├── laywin.h │ │ │ ├── listctrl.h │ │ │ ├── logg.h │ │ │ ├── mask.h │ │ │ ├── mdig.h │ │ │ ├── msgdlgg.h │ │ │ ├── notebook.h │ │ │ ├── notifmsg.h │ │ │ ├── numdlgg.h │ │ │ ├── paletteg.h │ │ │ ├── panelg.h │ │ │ ├── printps.h │ │ │ ├── private │ │ │ │ ├── grid.h │ │ │ │ ├── listctrl.h │ │ │ │ ├── markuptext.h │ │ │ │ ├── richtooltip.h │ │ │ │ ├── textmeasure.h │ │ │ │ ├── timer.h │ │ │ │ └── widthcalc.h │ │ │ ├── prntdlgg.h │ │ │ ├── progdlgg.h │ │ │ ├── propdlg.h │ │ │ ├── region.h │ │ │ ├── richmsgdlgg.h │ │ │ ├── sashwin.h │ │ │ ├── scrolwin.h │ │ │ ├── spinctlg.h │ │ │ ├── splash.h │ │ │ ├── splitter.h │ │ │ ├── srchctlg.h │ │ │ ├── statbmpg.h │ │ │ ├── statline.h │ │ │ ├── stattextg.h │ │ │ ├── statusbr.h │ │ │ ├── tabg.h │ │ │ ├── textdlgg.h │ │ │ ├── timectrl.h │ │ │ ├── treectlg.h │ │ │ └── wizard.h │ │ │ ├── geometry.h │ │ │ ├── gifdecod.h │ │ │ ├── glcanvas.h │ │ │ ├── graphics.h │ │ │ ├── grid.h │ │ │ ├── hash.h │ │ │ ├── hashmap.h │ │ │ ├── hashset.h │ │ │ ├── headercol.h │ │ │ ├── headerctrl.h │ │ │ ├── help.h │ │ │ ├── helpbase.h │ │ │ ├── helphtml.h │ │ │ ├── helpwin.h │ │ │ ├── htmllbox.h │ │ │ ├── hyperlink.h │ │ │ ├── icon.h │ │ │ ├── iconbndl.h │ │ │ ├── iconloc.h │ │ │ ├── imagbmp.h │ │ │ ├── image.h │ │ │ ├── imaggif.h │ │ │ ├── imagiff.h │ │ │ ├── imagjpeg.h │ │ │ ├── imaglist.h │ │ │ ├── imagpcx.h │ │ │ ├── imagpng.h │ │ │ ├── imagpnm.h │ │ │ ├── imagtga.h │ │ │ ├── imagtiff.h │ │ │ ├── imagxpm.h │ │ │ ├── infobar.h │ │ │ ├── init.h │ │ │ ├── intl.h │ │ │ ├── iosfwrap.h │ │ │ ├── ioswrap.h │ │ │ ├── ipc.h │ │ │ ├── ipcbase.h │ │ │ ├── itemid.h │ │ │ ├── joystick.h │ │ │ ├── kbdstate.h │ │ │ ├── language.h │ │ │ ├── layout.h │ │ │ ├── laywin.h │ │ │ ├── link.h │ │ │ ├── list.h │ │ │ ├── listbase.h │ │ │ ├── listbook.h │ │ │ ├── listbox.h │ │ │ ├── listctrl.h │ │ │ ├── listimpl.cpp │ │ │ ├── log.h │ │ │ ├── longlong.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── mdi.h │ │ │ ├── mediactrl.h │ │ │ ├── memconf.h │ │ │ ├── memory.h │ │ │ ├── memtext.h │ │ │ ├── menu.h │ │ │ ├── menuitem.h │ │ │ ├── meta │ │ │ ├── convertible.h │ │ │ ├── if.h │ │ │ ├── implicitconversion.h │ │ │ ├── int2type.h │ │ │ ├── movable.h │ │ │ ├── pod.h │ │ │ └── removeref.h │ │ │ ├── metafile.h │ │ │ ├── mimetype.h │ │ │ ├── minifram.h │ │ │ ├── modalhook.h │ │ │ ├── module.h │ │ │ ├── mousemanager.h │ │ │ ├── mousestate.h │ │ │ ├── msgdlg.h │ │ │ ├── msgout.h │ │ │ ├── msgqueue.h │ │ │ ├── mstream.h │ │ │ ├── msw │ │ │ ├── accel.h │ │ │ ├── amd64.manifest │ │ │ ├── anybutton.h │ │ │ ├── app.h │ │ │ ├── apptbase.h │ │ │ ├── apptrait.h │ │ │ ├── bitmap.h │ │ │ ├── blank.cur │ │ │ ├── bmpbuttn.h │ │ │ ├── bmpcbox.h │ │ │ ├── brush.h │ │ │ ├── bullseye.cur │ │ │ ├── button.h │ │ │ ├── calctrl.h │ │ │ ├── caret.h │ │ │ ├── cdrom.ico │ │ │ ├── checkbox.h │ │ │ ├── checklst.h │ │ │ ├── child.ico │ │ │ ├── chkconf.h │ │ │ ├── choice.h │ │ │ ├── clipbrd.h │ │ │ ├── colordlg.h │ │ │ ├── colour.h │ │ │ ├── colours.bmp │ │ │ ├── combo.h │ │ │ ├── combobox.h │ │ │ ├── commandlinkbutton.h │ │ │ ├── computer.ico │ │ │ ├── control.h │ │ │ ├── crashrpt.h │ │ │ ├── cross.cur │ │ │ ├── csquery.bmp │ │ │ ├── ctrlsub.h │ │ │ ├── cursor.h │ │ │ ├── custombgwin.h │ │ │ ├── datectrl.h │ │ │ ├── datetimectrl.h │ │ │ ├── dc.h │ │ │ ├── dcclient.h │ │ │ ├── dcmemory.h │ │ │ ├── dcprint.h │ │ │ ├── dcscreen.h │ │ │ ├── dde.h │ │ │ ├── debughlp.h │ │ │ ├── dialog.h │ │ │ ├── dib.h │ │ │ ├── dirdlg.h │ │ │ ├── dragimag.h │ │ │ ├── drive.ico │ │ │ ├── enhmeta.h │ │ │ ├── evtloop.h │ │ │ ├── evtloopconsole.h │ │ │ ├── fdrepdlg.h │ │ │ ├── file1.ico │ │ │ ├── filedlg.h │ │ │ ├── floppy.ico │ │ │ ├── folder1.ico │ │ │ ├── folder2.ico │ │ │ ├── font.h │ │ │ ├── fontdlg.h │ │ │ ├── frame.h │ │ │ ├── fswatcher.h │ │ │ ├── gauge.h │ │ │ ├── gccpriv.h │ │ │ ├── gdiimage.h │ │ │ ├── genrcdefs.h │ │ │ ├── glcanvas.h │ │ │ ├── hand.cur │ │ │ ├── headerctrl.h │ │ │ ├── helpbest.h │ │ │ ├── helpchm.h │ │ │ ├── helpwin.h │ │ │ ├── htmlhelp.h │ │ │ ├── hyperlink.h │ │ │ ├── ia64.manifest │ │ │ ├── icon.h │ │ │ ├── imaglist.h │ │ │ ├── iniconf.h │ │ │ ├── init.h │ │ │ ├── joystick.h │ │ │ ├── libraries.h │ │ │ ├── listbox.h │ │ │ ├── listctrl.h │ │ │ ├── magnif1.cur │ │ │ ├── mdi.h │ │ │ ├── mdi.ico │ │ │ ├── menu.h │ │ │ ├── menuitem.h │ │ │ ├── metafile.h │ │ │ ├── microwin.h │ │ │ ├── mimetype.h │ │ │ ├── minifram.h │ │ │ ├── missing.h │ │ │ ├── msgdlg.h │ │ │ ├── mslu.h │ │ │ ├── msvcrt.h │ │ │ ├── nonownedwnd.h │ │ │ ├── notebook.h │ │ │ ├── notifmsg.h │ │ │ ├── ole │ │ │ │ ├── access.h │ │ │ │ ├── activex.h │ │ │ │ ├── automtn.h │ │ │ │ ├── dataform.h │ │ │ │ ├── dataobj.h │ │ │ │ ├── dataobj2.h │ │ │ │ ├── dropsrc.h │ │ │ │ ├── droptgt.h │ │ │ │ ├── oleutils.h │ │ │ │ ├── safearray.h │ │ │ │ └── uuid.h │ │ │ ├── ownerdrw.h │ │ │ ├── palette.h │ │ │ ├── panel.h │ │ │ ├── pbrush.cur │ │ │ ├── pen.h │ │ │ ├── pencil.cur │ │ │ ├── pntleft.cur │ │ │ ├── pntright.cur │ │ │ ├── popupwin.h │ │ │ ├── printdlg.h │ │ │ ├── printwin.h │ │ │ ├── private.h │ │ │ ├── private │ │ │ │ ├── button.h │ │ │ │ ├── comptr.h │ │ │ │ ├── datecontrols.h │ │ │ │ ├── dc.h │ │ │ │ ├── fswatcher.h │ │ │ │ ├── hiddenwin.h │ │ │ │ ├── keyboard.h │ │ │ │ ├── metrics.h │ │ │ │ ├── msgdlg.h │ │ │ │ ├── pipestream.h │ │ │ │ ├── sockmsw.h │ │ │ │ ├── textmeasure.h │ │ │ │ └── timer.h │ │ │ ├── progdlg.h │ │ │ ├── question.ico │ │ │ ├── radiobox.h │ │ │ ├── radiobut.h │ │ │ ├── regconf.h │ │ │ ├── region.h │ │ │ ├── registry.h │ │ │ ├── removble.ico │ │ │ ├── richmsgdlg.h │ │ │ ├── roller.cur │ │ │ ├── scrolbar.h │ │ │ ├── seh.h │ │ │ ├── setup.h │ │ │ ├── setup_inc.h │ │ │ ├── slider.h │ │ │ ├── sound.h │ │ │ ├── spinbutt.h │ │ │ ├── spinctrl.h │ │ │ ├── stackwalk.h │ │ │ ├── statbmp.h │ │ │ ├── statbox.h │ │ │ ├── statline.h │ │ │ ├── stattext.h │ │ │ ├── statusbar.h │ │ │ ├── std.ico │ │ │ ├── stdpaths.h │ │ │ ├── subwin.h │ │ │ ├── taskbar.h │ │ │ ├── textctrl.h │ │ │ ├── textentry.h │ │ │ ├── tglbtn.h │ │ │ ├── timectrl.h │ │ │ ├── tls.h │ │ │ ├── toolbar.h │ │ │ ├── tooltip.h │ │ │ ├── toplevel.h │ │ │ ├── treectrl.h │ │ │ ├── uxtheme.h │ │ │ ├── uxthemep.h │ │ │ ├── webview_ie.h │ │ │ ├── webview_missing.h │ │ │ ├── webviewhistoryitem_ie.h │ │ │ ├── wince │ │ │ │ ├── checklst.h │ │ │ │ ├── chkconf.h │ │ │ │ ├── choicece.h │ │ │ │ ├── helpwce.h │ │ │ │ ├── libraries.h │ │ │ │ ├── missing.h │ │ │ │ ├── net.h │ │ │ │ ├── resources.h │ │ │ │ ├── setup.h │ │ │ │ ├── smartphone.rc │ │ │ │ ├── tbarwce.h │ │ │ │ ├── textctrlce.h │ │ │ │ ├── time.h │ │ │ │ └── wince.rc │ │ │ ├── window.h │ │ │ ├── winundef.h │ │ │ ├── wrapcctl.h │ │ │ ├── wrapcdlg.h │ │ │ ├── wrapgdip.h │ │ │ ├── wrapshl.h │ │ │ ├── wrapwin.h │ │ │ ├── wx.manifest │ │ │ └── wx.rc │ │ │ ├── nativewin.h │ │ │ ├── nonownedwnd.h │ │ │ ├── notebook.h │ │ │ ├── notifmsg.h │ │ │ ├── numdlg.h │ │ │ ├── numformatter.h │ │ │ ├── object.h │ │ │ ├── odcombo.h │ │ │ ├── overlay.h │ │ │ ├── ownerdrw.h │ │ │ ├── palette.h │ │ │ ├── panel.h │ │ │ ├── paper.h │ │ │ ├── pen.h │ │ │ ├── persist.h │ │ │ ├── persist │ │ │ ├── bookctrl.h │ │ │ ├── splitter.h │ │ │ ├── toplevel.h │ │ │ ├── treebook.h │ │ │ └── window.h │ │ │ ├── pickerbase.h │ │ │ ├── platform.h │ │ │ ├── platinfo.h │ │ │ ├── popupwin.h │ │ │ ├── position.h │ │ │ ├── power.h │ │ │ ├── preferences.h │ │ │ ├── print.h │ │ │ ├── printdlg.h │ │ │ ├── private │ │ │ ├── eventloopsourcesmanager.h │ │ │ ├── fd.h │ │ │ ├── fdiodispatcher.h │ │ │ ├── fdioeventloopsourcehandler.h │ │ │ ├── fdiohandler.h │ │ │ ├── fdiomanager.h │ │ │ ├── fileback.h │ │ │ ├── filename.h │ │ │ ├── flagscheck.h │ │ │ ├── fontmgr.h │ │ │ ├── fswatcher.h │ │ │ ├── graphics.h │ │ │ ├── markupparser.h │ │ │ ├── markupparserattr.h │ │ │ ├── overlay.h │ │ │ ├── pipestream.h │ │ │ ├── preferences.h │ │ │ ├── richtooltip.h │ │ │ ├── sckaddr.h │ │ │ ├── selectdispatcher.h │ │ │ ├── socket.h │ │ │ ├── streamtempinput.h │ │ │ ├── textmeasure.h │ │ │ ├── threadinfo.h │ │ │ ├── timer.h │ │ │ ├── window.h │ │ │ └── wxprintf.h │ │ │ ├── prntbase.h │ │ │ ├── process.h │ │ │ ├── progdlg.h │ │ │ ├── propdlg.h │ │ │ ├── ptr_scpd.h │ │ │ ├── ptr_shrd.h │ │ │ ├── quantize.h │ │ │ ├── radiobox.h │ │ │ ├── radiobut.h │ │ │ ├── range.h │ │ │ ├── rawbmp.h │ │ │ ├── rearrangectrl.h │ │ │ ├── recguard.h │ │ │ ├── regex.h │ │ │ ├── region.h │ │ │ ├── renderer.h │ │ │ ├── richmsgdlg.h │ │ │ ├── richtooltip.h │ │ │ ├── rtti.h │ │ │ ├── sashwin.h │ │ │ ├── sckaddr.h │ │ │ ├── sckipc.h │ │ │ ├── sckstrm.h │ │ │ ├── scopedarray.h │ │ │ ├── scopedptr.h │ │ │ ├── scopeguard.h │ │ │ ├── scrolbar.h │ │ │ ├── scrolwin.h │ │ │ ├── selstore.h │ │ │ ├── settings.h │ │ │ ├── setup_inc.h │ │ │ ├── setup_redirect.h │ │ │ ├── sharedptr.h │ │ │ ├── simplebook.h │ │ │ ├── sizer.h │ │ │ ├── slider.h │ │ │ ├── snglinst.h │ │ │ ├── socket.h │ │ │ ├── sound.h │ │ │ ├── spinbutt.h │ │ │ ├── spinctrl.h │ │ │ ├── splash.h │ │ │ ├── splitter.h │ │ │ ├── srchctrl.h │ │ │ ├── sstream.h │ │ │ ├── stack.h │ │ │ ├── stackwalk.h │ │ │ ├── statbmp.h │ │ │ ├── statbox.h │ │ │ ├── statline.h │ │ │ ├── stattext.h │ │ │ ├── statusbr.h │ │ │ ├── stdpaths.h │ │ │ ├── stdstream.h │ │ │ ├── stockitem.h │ │ │ ├── stopwatch.h │ │ │ ├── strconv.h │ │ │ ├── stream.h │ │ │ ├── string.h │ │ │ ├── stringimpl.h │ │ │ ├── stringops.h │ │ │ ├── strvararg.h │ │ │ ├── sysopt.h │ │ │ ├── tarstrm.h │ │ │ ├── taskbar.h │ │ │ ├── tbarbase.h │ │ │ ├── testing.h │ │ │ ├── textbuf.h │ │ │ ├── textcompleter.h │ │ │ ├── textctrl.h │ │ │ ├── textdlg.h │ │ │ ├── textentry.h │ │ │ ├── textfile.h │ │ │ ├── textwrapper.h │ │ │ ├── tglbtn.h │ │ │ ├── thread.h │ │ │ ├── thrimpl.cpp │ │ │ ├── time.h │ │ │ ├── timectrl.h │ │ │ ├── timer.h │ │ │ ├── tipdlg.h │ │ │ ├── tipwin.h │ │ │ ├── tls.h │ │ │ ├── tokenzr.h │ │ │ ├── toolbar.h │ │ │ ├── toolbook.h │ │ │ ├── tooltip.h │ │ │ ├── toplevel.h │ │ │ ├── tracker.h │ │ │ ├── translation.h │ │ │ ├── treebase.h │ │ │ ├── treebook.h │ │ │ ├── treectrl.h │ │ │ ├── treelist.h │ │ │ ├── txtstrm.h │ │ │ ├── typeinfo.h │ │ │ ├── types.h │ │ │ ├── uiaction.h │ │ │ ├── unichar.h │ │ │ ├── unix │ │ │ ├── app.h │ │ │ ├── apptbase.h │ │ │ ├── apptrait.h │ │ │ ├── chkconf.h │ │ │ ├── evtloop.h │ │ │ ├── evtloopsrc.h │ │ │ ├── execute.h │ │ │ ├── fontutil.h │ │ │ ├── fswatcher_inotify.h │ │ │ ├── fswatcher_kqueue.h │ │ │ ├── glx11.h │ │ │ ├── joystick.h │ │ │ ├── mimetype.h │ │ │ ├── pipe.h │ │ │ ├── private.h │ │ │ ├── private │ │ │ │ ├── epolldispatcher.h │ │ │ │ ├── executeiohandler.h │ │ │ │ ├── fdiounix.h │ │ │ │ ├── fswatcher_inotify.h │ │ │ │ ├── fswatcher_kqueue.h │ │ │ │ ├── pipestream.h │ │ │ │ ├── sockunix.h │ │ │ │ ├── timer.h │ │ │ │ └── wakeuppipe.h │ │ │ ├── sound.h │ │ │ ├── stackwalk.h │ │ │ ├── stdpaths.h │ │ │ ├── taskbarx11.h │ │ │ ├── tls.h │ │ │ └── utilsx11.h │ │ │ ├── uri.h │ │ │ ├── url.h │ │ │ ├── ustring.h │ │ │ ├── utils.h │ │ │ ├── valgen.h │ │ │ ├── validate.h │ │ │ ├── valnum.h │ │ │ ├── valtext.h │ │ │ ├── variant.h │ │ │ ├── variantbase.h │ │ │ ├── vector.h │ │ │ ├── version.h │ │ │ ├── versioninfo.h │ │ │ ├── vidmode.h │ │ │ ├── vlbox.h │ │ │ ├── vms_x_fix.h │ │ │ ├── volume.h │ │ │ ├── vscroll.h │ │ │ ├── weakref.h │ │ │ ├── webview.h │ │ │ ├── webviewarchivehandler.h │ │ │ ├── webviewfshandler.h │ │ │ ├── wfstream.h │ │ │ ├── window.h │ │ │ ├── windowid.h │ │ │ ├── windowptr.h │ │ │ ├── withimages.h │ │ │ ├── wizard.h │ │ │ ├── wrapsizer.h │ │ │ ├── wupdlock.h │ │ │ ├── wx.h │ │ │ ├── wxchar.h │ │ │ ├── wxcrt.h │ │ │ ├── wxcrtbase.h │ │ │ ├── wxcrtvararg.h │ │ │ ├── wxhtml.h │ │ │ ├── wxprec.h │ │ │ ├── xlocale.h │ │ │ ├── xpmdecod.h │ │ │ ├── xpmhand.h │ │ │ ├── xti.h │ │ │ ├── xti2.h │ │ │ ├── xtictor.h │ │ │ ├── xtihandler.h │ │ │ ├── xtiprop.h │ │ │ ├── xtistrm.h │ │ │ ├── xtitypes.h │ │ │ ├── xtixml.h │ │ │ ├── zipstrm.h │ │ │ └── zstream.h │ └── src │ │ ├── common │ │ ├── accelcmn.cpp │ │ ├── accesscmn.cpp │ │ ├── affinematrix2d.cpp │ │ ├── anidecod.cpp │ │ ├── animatecmn.cpp │ │ ├── any.cpp │ │ ├── appbase.cpp │ │ ├── appcmn.cpp │ │ ├── arcall.cpp │ │ ├── arcfind.cpp │ │ ├── archive.cpp │ │ ├── arrstr.cpp │ │ ├── artprov.cpp │ │ ├── artstd.cpp │ │ ├── arttango.cpp │ │ ├── base64.cpp │ │ ├── bmpbase.cpp │ │ ├── bmpbtncmn.cpp │ │ ├── bmpcboxcmn.cpp │ │ ├── bookctrl.cpp │ │ ├── btncmn.cpp │ │ ├── cairo.cpp │ │ ├── calctrlcmn.cpp │ │ ├── checkboxcmn.cpp │ │ ├── checklstcmn.cpp │ │ ├── choiccmn.cpp │ │ ├── clipcmn.cpp │ │ ├── clntdata.cpp │ │ ├── clrpickercmn.cpp │ │ ├── cmdline.cpp │ │ ├── cmdproc.cpp │ │ ├── cmndata.cpp │ │ ├── colourcmn.cpp │ │ ├── colourdata.cpp │ │ ├── combocmn.cpp │ │ ├── config.cpp │ │ ├── containr.cpp │ │ ├── convauto.cpp │ │ ├── cshelp.cpp │ │ ├── ctrlcmn.cpp │ │ ├── ctrlsub.cpp │ │ ├── datavcmn.cpp │ │ ├── datetime.cpp │ │ ├── datetimefmt.cpp │ │ ├── datstrm.cpp │ │ ├── dcbase.cpp │ │ ├── dcbufcmn.cpp │ │ ├── dcgraph.cpp │ │ ├── dcsvg.cpp │ │ ├── debugrpt.cpp │ │ ├── descrip.mms │ │ ├── dircmn.cpp │ │ ├── dirctrlcmn.cpp │ │ ├── dlgcmn.cpp │ │ ├── dndcmn.cpp │ │ ├── dobjcmn.cpp │ │ ├── docmdi.cpp │ │ ├── docview.cpp │ │ ├── dpycmn.cpp │ │ ├── dseldlg.cpp │ │ ├── dummy.cpp │ │ ├── dynarray.cpp │ │ ├── dynlib.cpp │ │ ├── dynload.cpp │ │ ├── effects.cpp │ │ ├── emptydmy.cpp │ │ ├── encconv.cpp │ │ ├── event.cpp │ │ ├── evtloopcmn.cpp │ │ ├── extended.c │ │ ├── fddlgcmn.cpp │ │ ├── fdiodispatcher.cpp │ │ ├── ffile.cpp │ │ ├── file.cpp │ │ ├── fileback.cpp │ │ ├── fileconf.cpp │ │ ├── filectrlcmn.cpp │ │ ├── filefn.cpp │ │ ├── filehistorycmn.cpp │ │ ├── filename.cpp │ │ ├── filepickercmn.cpp │ │ ├── filesys.cpp │ │ ├── filtall.cpp │ │ ├── filtfind.cpp │ │ ├── fldlgcmn.cpp │ │ ├── fmapbase.cpp │ │ ├── fontcmn.cpp │ │ ├── fontdata.cpp │ │ ├── fontenumcmn.cpp │ │ ├── fontmap.cpp │ │ ├── fontmgrcmn.cpp │ │ ├── fontpickercmn.cpp │ │ ├── fontutilcmn.cpp │ │ ├── framecmn.cpp │ │ ├── fs_arc.cpp │ │ ├── fs_filter.cpp │ │ ├── fs_inet.cpp │ │ ├── fs_mem.cpp │ │ ├── fswatchercmn.cpp │ │ ├── ftp.cpp │ │ ├── gaugecmn.cpp │ │ ├── gbsizer.cpp │ │ ├── gdicmn.cpp │ │ ├── geometry.cpp │ │ ├── gifdecod.cpp │ │ ├── glcmn.cpp │ │ ├── graphcmn.cpp │ │ ├── gridcmn.cpp │ │ ├── hash.cpp │ │ ├── hashmap.cpp │ │ ├── headercolcmn.cpp │ │ ├── headerctrlcmn.cpp │ │ ├── helpbase.cpp │ │ ├── http.cpp │ │ ├── hyperlnkcmn.cpp │ │ ├── iconbndl.cpp │ │ ├── imagall.cpp │ │ ├── imagbmp.cpp │ │ ├── image.cpp │ │ ├── imagfill.cpp │ │ ├── imaggif.cpp │ │ ├── imagiff.cpp │ │ ├── imagjpeg.cpp │ │ ├── imagpcx.cpp │ │ ├── imagpng.cpp │ │ ├── imagpnm.cpp │ │ ├── imagtga.cpp │ │ ├── imagtiff.cpp │ │ ├── imagxpm.cpp │ │ ├── init.cpp │ │ ├── intl.cpp │ │ ├── ipcbase.cpp │ │ ├── languageinfo.cpp │ │ ├── layout.cpp │ │ ├── lboxcmn.cpp │ │ ├── list.cpp │ │ ├── listctrlcmn.cpp │ │ ├── log.cpp │ │ ├── longlong.cpp │ │ ├── markupparser.cpp │ │ ├── matrix.cpp │ │ ├── mediactrlcmn.cpp │ │ ├── memory.cpp │ │ ├── menucmn.cpp │ │ ├── mimecmn.cpp │ │ ├── modalhook.cpp │ │ ├── module.cpp │ │ ├── mousemanager.cpp │ │ ├── msgout.cpp │ │ ├── mstream.cpp │ │ ├── nbkbase.cpp │ │ ├── numformatter.cpp │ │ ├── object.cpp │ │ ├── odcombocmn.cpp │ │ ├── overlaycmn.cpp │ │ ├── ownerdrwcmn.cpp │ │ ├── panelcmn.cpp │ │ ├── paper.cpp │ │ ├── persist.cpp │ │ ├── pickerbase.cpp │ │ ├── platinfo.cpp │ │ ├── popupcmn.cpp │ │ ├── powercmn.cpp │ │ ├── preferencescmn.cpp │ │ ├── prntbase.cpp │ │ ├── process.cpp │ │ ├── protocol.cpp │ │ ├── quantize.cpp │ │ ├── radiobtncmn.cpp │ │ ├── radiocmn.cpp │ │ ├── rearrangectrl.cpp │ │ ├── regex.cpp │ │ ├── rendcmn.cpp │ │ ├── rgncmn.cpp │ │ ├── richtooltipcmn.cpp │ │ ├── sckaddr.cpp │ │ ├── sckfile.cpp │ │ ├── sckipc.cpp │ │ ├── sckstrm.cpp │ │ ├── scrolbarcmn.cpp │ │ ├── selectdispatcher.cpp │ │ ├── settcmn.cpp │ │ ├── sizer.cpp │ │ ├── slidercmn.cpp │ │ ├── socket.cpp │ │ ├── socketiohandler.cpp │ │ ├── spinbtncmn.cpp │ │ ├── spinctrlcmn.cpp │ │ ├── srchcmn.cpp │ │ ├── sstream.cpp │ │ ├── statbar.cpp │ │ ├── statbmpcmn.cpp │ │ ├── statboxcmn.cpp │ │ ├── statlinecmn.cpp │ │ ├── stattextcmn.cpp │ │ ├── stdpbase.cpp │ │ ├── stdstream.cpp │ │ ├── stockitem.cpp │ │ ├── stopwatch.cpp │ │ ├── strconv.cpp │ │ ├── stream.cpp │ │ ├── string.cpp │ │ ├── stringimpl.cpp │ │ ├── stringops.cpp │ │ ├── strvararg.cpp │ │ ├── sysopt.cpp │ │ ├── tarstrm.cpp │ │ ├── taskbarcmn.cpp │ │ ├── tbarbase.cpp │ │ ├── textbuf.cpp │ │ ├── textcmn.cpp │ │ ├── textentrycmn.cpp │ │ ├── textfile.cpp │ │ ├── textmeasurecmn.cpp │ │ ├── threadinfo.cpp │ │ ├── time.cpp │ │ ├── timercmn.cpp │ │ ├── timerimpl.cpp │ │ ├── tokenzr.cpp │ │ ├── toplvcmn.cpp │ │ ├── translation.cpp │ │ ├── treebase.cpp │ │ ├── txtstrm.cpp │ │ ├── uiactioncmn.cpp │ │ ├── unichar.cpp │ │ ├── unictabl.inc │ │ ├── uri.cpp │ │ ├── url.cpp │ │ ├── ustring.cpp │ │ ├── utilscmn.cpp │ │ ├── valgen.cpp │ │ ├── validate.cpp │ │ ├── valnum.cpp │ │ ├── valtext.cpp │ │ ├── variant.cpp │ │ ├── webview.cpp │ │ ├── webviewarchivehandler.cpp │ │ ├── webviewfshandler.cpp │ │ ├── wfstream.cpp │ │ ├── wincmn.cpp │ │ ├── windowid.cpp │ │ ├── wrapsizer.cpp │ │ ├── wxcrt.cpp │ │ ├── wxprintf.cpp │ │ ├── xlocale.cpp │ │ ├── xpmdecod.cpp │ │ ├── xti.cpp │ │ ├── xtistrm.cpp │ │ ├── xtixml.cpp │ │ ├── zipstrm.cpp │ │ └── zstream.cpp │ │ ├── generic │ │ ├── aboutdlgg.cpp │ │ ├── accel.cpp │ │ ├── animateg.cpp │ │ ├── bannerwindow.cpp │ │ ├── bmpcboxg.cpp │ │ ├── busyinfo.cpp │ │ ├── buttonbar.cpp │ │ ├── calctrlg.cpp │ │ ├── caret.cpp │ │ ├── choicbkg.cpp │ │ ├── choicdgg.cpp │ │ ├── clrpickerg.cpp │ │ ├── collpaneg.cpp │ │ ├── colour.cpp │ │ ├── colrdlgg.cpp │ │ ├── combog.cpp │ │ ├── commandlinkbuttong.cpp │ │ ├── datavgen.cpp │ │ ├── datectlg.cpp │ │ ├── dbgrptg.cpp │ │ ├── dcpsg.cpp │ │ ├── descrip.mms │ │ ├── dirctrlg.cpp │ │ ├── dirdlgg.cpp │ │ ├── dragimgg.cpp │ │ ├── editlbox.cpp │ │ ├── fdrepdlg.cpp │ │ ├── filectrlg.cpp │ │ ├── filedlgg.cpp │ │ ├── filepickerg.cpp │ │ ├── fontdlgg.cpp │ │ ├── fontpickerg.cpp │ │ ├── fswatcherg.cpp │ │ ├── graphicc.cpp │ │ ├── grid.cpp │ │ ├── gridctrl.cpp │ │ ├── grideditors.cpp │ │ ├── gridsel.cpp │ │ ├── headerctrlg.cpp │ │ ├── helpext.cpp │ │ ├── htmllbox.cpp │ │ ├── hyperlinkg.cpp │ │ ├── icon.cpp │ │ ├── imaglist.cpp │ │ ├── infobar.cpp │ │ ├── laywin.cpp │ │ ├── listbkg.cpp │ │ ├── listctrl.cpp │ │ ├── logg.cpp │ │ ├── markuptext.cpp │ │ ├── mask.cpp │ │ ├── mdig.cpp │ │ ├── msgdlgg.cpp │ │ ├── notebook.cpp │ │ ├── notifmsgg.cpp │ │ ├── numdlgg.cpp │ │ ├── odcombo.cpp │ │ ├── paletteg.cpp │ │ ├── preferencesg.cpp │ │ ├── printps.cpp │ │ ├── prntdlgg.cpp │ │ ├── progdlgg.cpp │ │ ├── propdlg.cpp │ │ ├── regiong.cpp │ │ ├── renderg.cpp │ │ ├── richmsgdlgg.cpp │ │ ├── richtooltipg.cpp │ │ ├── sashwin.cpp │ │ ├── scrlwing.cpp │ │ ├── selstore.cpp │ │ ├── spinctlg.cpp │ │ ├── splash.cpp │ │ ├── splitter.cpp │ │ ├── srchctlg.cpp │ │ ├── statbmpg.cpp │ │ ├── statline.cpp │ │ ├── stattextg.cpp │ │ ├── statusbr.cpp │ │ ├── tabg.cpp │ │ ├── textdlgg.cpp │ │ ├── textmeasure.cpp │ │ ├── timectrlg.cpp │ │ ├── timer.cpp │ │ ├── tipdlg.cpp │ │ ├── tipwin.cpp │ │ ├── toolbkg.cpp │ │ ├── treebkg.cpp │ │ ├── treectlg.cpp │ │ ├── treelist.cpp │ │ ├── vlbox.cpp │ │ ├── vscroll.cpp │ │ └── wizard.cpp │ │ ├── msw │ │ ├── aboutdlg.cpp │ │ ├── accel.cpp │ │ ├── anybutton.cpp │ │ ├── app.cpp │ │ ├── artmsw.cpp │ │ ├── basemsw.cpp │ │ ├── bitmap.cpp │ │ ├── bmpbuttn.cpp │ │ ├── bmpcbox.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── calctrl.cpp │ │ ├── caret.cpp │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── colordlg.cpp │ │ ├── colour.cpp │ │ ├── combo.cpp │ │ ├── combobox.cpp │ │ ├── commandlinkbutton.cpp │ │ ├── control.cpp │ │ ├── crashrpt.cpp │ │ ├── cursor.cpp │ │ ├── data.cpp │ │ ├── datecontrols.cpp │ │ ├── datectrl.cpp │ │ ├── datetimectrl.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcprint.cpp │ │ ├── dcscreen.cpp │ │ ├── dde.cpp │ │ ├── debughlp.cpp │ │ ├── dialog.cpp │ │ ├── dialup.cpp │ │ ├── dib.cpp │ │ ├── dir.cpp │ │ ├── dirdlg.cpp │ │ ├── display.cpp │ │ ├── dlmsw.cpp │ │ ├── dragimag.cpp │ │ ├── enhmeta.cpp │ │ ├── evtloop.cpp │ │ ├── evtloopconsole.cpp │ │ ├── fdrepdlg.cpp │ │ ├── filedlg.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── fontenum.cpp │ │ ├── fontutil.cpp │ │ ├── frame.cpp │ │ ├── fswatcher.cpp │ │ ├── gauge.cpp │ │ ├── gdiimage.cpp │ │ ├── gdiobj.cpp │ │ ├── gdiplus.cpp │ │ ├── glcanvas.cpp │ │ ├── graphics.cpp │ │ ├── headerctrl.cpp │ │ ├── helpbest.cpp │ │ ├── helpchm.cpp │ │ ├── helpwin.cpp │ │ ├── hyperlink.cpp │ │ ├── icon.cpp │ │ ├── imaglist.cpp │ │ ├── iniconf.cpp │ │ ├── joystick.cpp │ │ ├── listbox.cpp │ │ ├── listctrl.cpp │ │ ├── main.cpp │ │ ├── mdi.cpp │ │ ├── mediactrl_am.cpp │ │ ├── mediactrl_qt.cpp │ │ ├── mediactrl_wmp10.cpp │ │ ├── menu.cpp │ │ ├── menuitem.cpp │ │ ├── metafile.cpp │ │ ├── microwin.c │ │ ├── mimetype.cpp │ │ ├── minifram.cpp │ │ ├── msgdlg.cpp │ │ ├── mslu.cpp │ │ ├── nativdlg.cpp │ │ ├── nativewin.cpp │ │ ├── nonownedwnd.cpp │ │ ├── notebook.cpp │ │ ├── notifmsg.cpp │ │ ├── ole │ │ │ ├── access.cpp │ │ │ ├── activex.cpp │ │ │ ├── automtn.cpp │ │ │ ├── dataobj.cpp │ │ │ ├── dropsrc.cpp │ │ │ ├── droptgt.cpp │ │ │ ├── oleutils.cpp │ │ │ ├── safearray.cpp │ │ │ └── uuid.cpp │ │ ├── ownerdrw.cpp │ │ ├── palette.cpp │ │ ├── panel.cpp │ │ ├── pen.cpp │ │ ├── penwin.cpp │ │ ├── popupwin.cpp │ │ ├── power.cpp │ │ ├── printdlg.cpp │ │ ├── printwin.cpp │ │ ├── progdlg.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── regconf.cpp │ │ ├── region.cpp │ │ ├── registry.cpp │ │ ├── renderer.cpp │ │ ├── richmsgdlg.cpp │ │ ├── richtooltip.cpp │ │ ├── scrolbar.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── snglinst.cpp │ │ ├── sockmsw.cpp │ │ ├── sound.cpp │ │ ├── spinbutt.cpp │ │ ├── spinctrl.cpp │ │ ├── stackwalk.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── statusbar.cpp │ │ ├── stdpaths.cpp │ │ ├── taskbar.cpp │ │ ├── textctrl.cpp │ │ ├── textentry.cpp │ │ ├── textmeasure.cpp │ │ ├── tglbtn.cpp │ │ ├── thread.cpp │ │ ├── timectrl.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── tooltip.cpp │ │ ├── toplevel.cpp │ │ ├── treectrl.cpp │ │ ├── uiaction.cpp │ │ ├── urlmsw.cpp │ │ ├── utils.cpp │ │ ├── utilsexc.cpp │ │ ├── utilsgui.cpp │ │ ├── utilswin.cpp │ │ ├── uxtheme.cpp │ │ ├── version.rc │ │ ├── volume.cpp │ │ ├── webview_ie.cpp │ │ ├── wince │ │ │ ├── checklst.cpp │ │ │ ├── choicece.cpp │ │ │ ├── clean_vcp.py │ │ │ ├── crt.cpp │ │ │ ├── filedlgwce.cpp │ │ │ ├── filefnwce.cpp │ │ │ ├── helpwce.cpp │ │ │ ├── menuce.cpp │ │ │ ├── net.cpp │ │ │ ├── tbarwce.cpp │ │ │ ├── textctrlce.cpp │ │ │ └── time.cpp │ │ ├── window.cpp │ │ └── winestub.c │ │ └── unix │ │ ├── apptraits.cpp │ │ ├── appunix.cpp │ │ ├── descrip.mms │ │ ├── dialup.cpp │ │ ├── dir.cpp │ │ ├── displayx11.cpp │ │ ├── dlunix.cpp │ │ ├── epolldispatcher.cpp │ │ ├── evtloopunix.cpp │ │ ├── fdiounix.cpp │ │ ├── fontenum.cpp │ │ ├── fontutil.cpp │ │ ├── fswatcher_inotify.cpp │ │ ├── fswatcher_kqueue.cpp │ │ ├── glx11.cpp │ │ ├── joystick.cpp │ │ ├── mediactrl.cpp │ │ ├── mimetype.cpp │ │ ├── net.cpp │ │ ├── snglinst.cpp │ │ ├── sockunix.cpp │ │ ├── sound.cpp │ │ ├── sound_sdl.cpp │ │ ├── stackwalk.cpp │ │ ├── stdpaths.cpp │ │ ├── taskbarx11.cpp │ │ ├── threadpsx.cpp │ │ ├── timerunx.cpp │ │ ├── uiactionx11.cpp │ │ ├── utilsunx.cpp │ │ ├── utilsx11.cpp │ │ └── wakeuppipe.cpp ├── xbyak │ └── xbyak │ │ ├── xbyak.h │ │ ├── xbyak_mnemonic.h │ │ └── xbyak_util.h ├── xz │ ├── CMakeLists.txt │ ├── config.h │ ├── liblzma.vcxproj │ └── xz │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── COPYING.GPLv2 │ │ ├── COPYING.GPLv3 │ │ ├── COPYING.LGPLv2.1 │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── INSTALL │ │ ├── INSTALL.generic │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── PACKAGERS │ │ ├── README │ │ ├── THANKS │ │ ├── TODO │ │ ├── autogen.sh │ │ ├── build-aux │ │ ├── manconv.sh │ │ └── version.sh │ │ ├── configure.ac │ │ ├── debug │ │ ├── Makefile.am │ │ ├── README │ │ ├── crc32.c │ │ ├── full_flush.c │ │ ├── hex2bin.c │ │ ├── known_sizes.c │ │ ├── memusage.c │ │ ├── repeat.c │ │ ├── sync_flush.c │ │ └── translation.bash │ │ ├── doc │ │ ├── examples │ │ │ ├── 00_README.txt │ │ │ ├── 01_compress_easy.c │ │ │ ├── 02_decompress.c │ │ │ ├── 03_compress_custom.c │ │ │ ├── 04_compress_easy_mt.c │ │ │ └── Makefile │ │ ├── examples_old │ │ │ ├── xz_pipe_comp.c │ │ │ └── xz_pipe_decomp.c │ │ ├── faq.txt │ │ ├── history.txt │ │ ├── lzma-file-format.txt │ │ └── xz-file-format.txt │ │ ├── dos │ │ ├── INSTALL.txt │ │ ├── Makefile │ │ ├── README.txt │ │ └── config.h │ │ ├── extra │ │ ├── 7z2lzma │ │ │ └── 7z2lzma.bash │ │ └── scanlzma │ │ │ └── scanlzma.c │ │ ├── lib │ │ ├── Makefile.am │ │ ├── getopt.c │ │ ├── getopt.in.h │ │ ├── getopt1.c │ │ └── getopt_int.h │ │ ├── m4 │ │ ├── .gitignore │ │ ├── ax_check_capsicum.m4 │ │ ├── ax_pthread.m4 │ │ ├── getopt.m4 │ │ ├── posix-shell.m4 │ │ ├── tuklib_common.m4 │ │ ├── tuklib_cpucores.m4 │ │ ├── tuklib_integer.m4 │ │ ├── tuklib_mbstr.m4 │ │ ├── tuklib_physmem.m4 │ │ └── tuklib_progname.m4 │ │ ├── macosx │ │ └── build.sh │ │ ├── po │ │ ├── .gitignore │ │ ├── LINGUAS │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── cs.po │ │ ├── de.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── pl.po │ │ └── vi.po │ │ ├── src │ │ ├── Makefile.am │ │ ├── common │ │ │ ├── common_w32res.rc │ │ │ ├── mythread.h │ │ │ ├── sysdefs.h │ │ │ ├── tuklib_common.h │ │ │ ├── tuklib_config.h │ │ │ ├── tuklib_cpucores.c │ │ │ ├── tuklib_cpucores.h │ │ │ ├── tuklib_exit.c │ │ │ ├── tuklib_exit.h │ │ │ ├── tuklib_gettext.h │ │ │ ├── tuklib_integer.h │ │ │ ├── tuklib_mbstr.h │ │ │ ├── tuklib_mbstr_fw.c │ │ │ ├── tuklib_mbstr_width.c │ │ │ ├── tuklib_open_stdxxx.c │ │ │ ├── tuklib_open_stdxxx.h │ │ │ ├── tuklib_physmem.c │ │ │ ├── tuklib_physmem.h │ │ │ ├── tuklib_progname.c │ │ │ └── tuklib_progname.h │ │ ├── liblzma │ │ │ ├── Makefile.am │ │ │ ├── api │ │ │ │ ├── Makefile.am │ │ │ │ ├── lzma.h │ │ │ │ └── lzma │ │ │ │ │ ├── base.h │ │ │ │ │ ├── bcj.h │ │ │ │ │ ├── block.h │ │ │ │ │ ├── check.h │ │ │ │ │ ├── container.h │ │ │ │ │ ├── delta.h │ │ │ │ │ ├── filter.h │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── index.h │ │ │ │ │ ├── index_hash.h │ │ │ │ │ ├── lzma12.h │ │ │ │ │ ├── stream_flags.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── vli.h │ │ │ ├── check │ │ │ │ ├── Makefile.inc │ │ │ │ ├── check.c │ │ │ │ ├── check.h │ │ │ │ ├── crc32_fast.c │ │ │ │ ├── crc32_small.c │ │ │ │ ├── crc32_table.c │ │ │ │ ├── crc32_table_be.h │ │ │ │ ├── crc32_table_le.h │ │ │ │ ├── crc32_tablegen.c │ │ │ │ ├── crc32_x86.S │ │ │ │ ├── crc64_fast.c │ │ │ │ ├── crc64_small.c │ │ │ │ ├── crc64_table.c │ │ │ │ ├── crc64_table_be.h │ │ │ │ ├── crc64_table_le.h │ │ │ │ ├── crc64_tablegen.c │ │ │ │ ├── crc64_x86.S │ │ │ │ ├── crc_macros.h │ │ │ │ └── sha256.c │ │ │ ├── common │ │ │ │ ├── Makefile.inc │ │ │ │ ├── alone_decoder.c │ │ │ │ ├── alone_decoder.h │ │ │ │ ├── alone_encoder.c │ │ │ │ ├── auto_decoder.c │ │ │ │ ├── block_buffer_decoder.c │ │ │ │ ├── block_buffer_encoder.c │ │ │ │ ├── block_buffer_encoder.h │ │ │ │ ├── block_decoder.c │ │ │ │ ├── block_decoder.h │ │ │ │ ├── block_encoder.c │ │ │ │ ├── block_encoder.h │ │ │ │ ├── block_header_decoder.c │ │ │ │ ├── block_header_encoder.c │ │ │ │ ├── block_util.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── easy_buffer_encoder.c │ │ │ │ ├── easy_decoder_memusage.c │ │ │ │ ├── easy_encoder.c │ │ │ │ ├── easy_encoder_memusage.c │ │ │ │ ├── easy_preset.c │ │ │ │ ├── easy_preset.h │ │ │ │ ├── filter_buffer_decoder.c │ │ │ │ ├── filter_buffer_encoder.c │ │ │ │ ├── filter_common.c │ │ │ │ ├── filter_common.h │ │ │ │ ├── filter_decoder.c │ │ │ │ ├── filter_decoder.h │ │ │ │ ├── filter_encoder.c │ │ │ │ ├── filter_encoder.h │ │ │ │ ├── filter_flags_decoder.c │ │ │ │ ├── filter_flags_encoder.c │ │ │ │ ├── hardware_cputhreads.c │ │ │ │ ├── hardware_physmem.c │ │ │ │ ├── index.c │ │ │ │ ├── index.h │ │ │ │ ├── index_decoder.c │ │ │ │ ├── index_encoder.c │ │ │ │ ├── index_encoder.h │ │ │ │ ├── index_hash.c │ │ │ │ ├── memcmplen.h │ │ │ │ ├── outqueue.c │ │ │ │ ├── outqueue.h │ │ │ │ ├── stream_buffer_decoder.c │ │ │ │ ├── stream_buffer_encoder.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_decoder.h │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_mt.c │ │ │ │ ├── stream_flags_common.c │ │ │ │ ├── stream_flags_common.h │ │ │ │ ├── stream_flags_decoder.c │ │ │ │ ├── stream_flags_encoder.c │ │ │ │ ├── vli_decoder.c │ │ │ │ ├── vli_encoder.c │ │ │ │ └── vli_size.c │ │ │ ├── delta │ │ │ │ ├── Makefile.inc │ │ │ │ ├── delta_common.c │ │ │ │ ├── delta_common.h │ │ │ │ ├── delta_decoder.c │ │ │ │ ├── delta_decoder.h │ │ │ │ ├── delta_encoder.c │ │ │ │ ├── delta_encoder.h │ │ │ │ └── delta_private.h │ │ │ ├── liblzma.map │ │ │ ├── liblzma.pc.in │ │ │ ├── liblzma_w32res.rc │ │ │ ├── lz │ │ │ │ ├── Makefile.inc │ │ │ │ ├── lz_decoder.c │ │ │ │ ├── lz_decoder.h │ │ │ │ ├── lz_encoder.c │ │ │ │ ├── lz_encoder.h │ │ │ │ ├── lz_encoder_hash.h │ │ │ │ ├── lz_encoder_hash_table.h │ │ │ │ └── lz_encoder_mf.c │ │ │ ├── lzma │ │ │ │ ├── Makefile.inc │ │ │ │ ├── fastpos.h │ │ │ │ ├── fastpos_table.c │ │ │ │ ├── fastpos_tablegen.c │ │ │ │ ├── lzma2_decoder.c │ │ │ │ ├── lzma2_decoder.h │ │ │ │ ├── lzma2_encoder.c │ │ │ │ ├── lzma2_encoder.h │ │ │ │ ├── lzma_common.h │ │ │ │ ├── lzma_decoder.c │ │ │ │ ├── lzma_decoder.h │ │ │ │ ├── lzma_encoder.c │ │ │ │ ├── lzma_encoder.h │ │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ │ ├── lzma_encoder_presets.c │ │ │ │ └── lzma_encoder_private.h │ │ │ ├── rangecoder │ │ │ │ ├── Makefile.inc │ │ │ │ ├── price.h │ │ │ │ ├── price_table.c │ │ │ │ ├── price_tablegen.c │ │ │ │ ├── range_common.h │ │ │ │ ├── range_decoder.h │ │ │ │ └── range_encoder.h │ │ │ ├── simple │ │ │ │ ├── Makefile.inc │ │ │ │ ├── arm.c │ │ │ │ ├── armthumb.c │ │ │ │ ├── ia64.c │ │ │ │ ├── powerpc.c │ │ │ │ ├── simple_coder.c │ │ │ │ ├── simple_coder.h │ │ │ │ ├── simple_decoder.c │ │ │ │ ├── simple_decoder.h │ │ │ │ ├── simple_encoder.c │ │ │ │ ├── simple_encoder.h │ │ │ │ ├── simple_private.h │ │ │ │ ├── sparc.c │ │ │ │ └── x86.c │ │ │ └── validate_map.sh │ │ ├── lzmainfo │ │ │ ├── Makefile.am │ │ │ ├── lzmainfo.1 │ │ │ ├── lzmainfo.c │ │ │ └── lzmainfo_w32res.rc │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── xzdiff.1 │ │ │ ├── xzdiff.in │ │ │ ├── xzgrep.1 │ │ │ ├── xzgrep.in │ │ │ ├── xzless.1 │ │ │ ├── xzless.in │ │ │ ├── xzmore.1 │ │ │ └── xzmore.in │ │ ├── xz │ │ │ ├── Makefile.am │ │ │ ├── args.c │ │ │ ├── args.h │ │ │ ├── coder.c │ │ │ ├── coder.h │ │ │ ├── file_io.c │ │ │ ├── file_io.h │ │ │ ├── hardware.c │ │ │ ├── hardware.h │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── mytime.c │ │ │ ├── mytime.h │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── private.h │ │ │ ├── signals.c │ │ │ ├── signals.h │ │ │ ├── suffix.c │ │ │ ├── suffix.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── xz.1 │ │ │ └── xz_w32res.rc │ │ └── xzdec │ │ │ ├── Makefile.am │ │ │ ├── lzmadec_w32res.rc │ │ │ ├── xzdec.1 │ │ │ ├── xzdec.c │ │ │ └── xzdec_w32res.rc │ │ ├── tests │ │ ├── Makefile.am │ │ ├── bcj_test.c │ │ ├── compress_prepared_bcj_sparc │ │ ├── compress_prepared_bcj_x86 │ │ ├── create_compress_files.c │ │ ├── files │ │ │ ├── README │ │ │ ├── bad-0-backward_size.xz │ │ │ ├── bad-0-empty-truncated.xz │ │ │ ├── bad-0-footer_magic.xz │ │ │ ├── bad-0-header_magic.xz │ │ │ ├── bad-0-nonempty_index.xz │ │ │ ├── bad-0cat-alone.xz │ │ │ ├── bad-0cat-header_magic.xz │ │ │ ├── bad-0catpad-empty.xz │ │ │ ├── bad-0pad-empty.xz │ │ │ ├── bad-1-block_header-1.xz │ │ │ ├── bad-1-block_header-2.xz │ │ │ ├── bad-1-block_header-3.xz │ │ │ ├── bad-1-block_header-4.xz │ │ │ ├── bad-1-block_header-5.xz │ │ │ ├── bad-1-block_header-6.xz │ │ │ ├── bad-1-check-crc32.xz │ │ │ ├── bad-1-check-crc64.xz │ │ │ ├── bad-1-check-sha256.xz │ │ │ ├── bad-1-lzma2-1.xz │ │ │ ├── bad-1-lzma2-2.xz │ │ │ ├── bad-1-lzma2-3.xz │ │ │ ├── bad-1-lzma2-4.xz │ │ │ ├── bad-1-lzma2-5.xz │ │ │ ├── bad-1-lzma2-6.xz │ │ │ ├── bad-1-lzma2-7.xz │ │ │ ├── bad-1-lzma2-8.xz │ │ │ ├── bad-1-stream_flags-1.xz │ │ │ ├── bad-1-stream_flags-2.xz │ │ │ ├── bad-1-stream_flags-3.xz │ │ │ ├── bad-1-vli-1.xz │ │ │ ├── bad-1-vli-2.xz │ │ │ ├── bad-2-compressed_data_padding.xz │ │ │ ├── bad-2-index-1.xz │ │ │ ├── bad-2-index-2.xz │ │ │ ├── bad-2-index-3.xz │ │ │ ├── bad-2-index-4.xz │ │ │ ├── bad-2-index-5.xz │ │ │ ├── good-0-empty.xz │ │ │ ├── good-0cat-empty.xz │ │ │ ├── good-0catpad-empty.xz │ │ │ ├── good-0pad-empty.xz │ │ │ ├── good-1-3delta-lzma2.xz │ │ │ ├── good-1-block_header-1.xz │ │ │ ├── good-1-block_header-2.xz │ │ │ ├── good-1-block_header-3.xz │ │ │ ├── good-1-check-crc32.xz │ │ │ ├── good-1-check-crc64.xz │ │ │ ├── good-1-check-none.xz │ │ │ ├── good-1-check-sha256.xz │ │ │ ├── good-1-delta-lzma2.tiff.xz │ │ │ ├── good-1-lzma2-1.xz │ │ │ ├── good-1-lzma2-2.xz │ │ │ ├── good-1-lzma2-3.xz │ │ │ ├── good-1-lzma2-4.xz │ │ │ ├── good-1-lzma2-5.xz │ │ │ ├── good-1-sparc-lzma2.xz │ │ │ ├── good-1-x86-lzma2.xz │ │ │ ├── good-2-lzma2.xz │ │ │ ├── unsupported-block_header.xz │ │ │ ├── unsupported-check.xz │ │ │ ├── unsupported-filter_flags-1.xz │ │ │ ├── unsupported-filter_flags-2.xz │ │ │ └── unsupported-filter_flags-3.xz │ │ ├── test_bcj_exact_size.c │ │ ├── test_block_header.c │ │ ├── test_check.c │ │ ├── test_compress.sh │ │ ├── test_files.sh │ │ ├── test_filter_flags.c │ │ ├── test_index.c │ │ ├── test_scripts.sh │ │ ├── test_stream_flags.c │ │ ├── tests.h │ │ └── xzgrep_expected_output │ │ └── windows │ │ ├── INSTALL-MSVC.txt │ │ ├── INSTALL-MinGW.txt │ │ ├── README-Windows.txt │ │ ├── build.bash │ │ ├── config.h │ │ ├── liblzma.vcxproj │ │ ├── liblzma_dll.vcxproj │ │ └── xz_win.sln ├── yaml-cpp │ ├── yaml-cpp │ │ ├── .clang-format │ │ ├── .codedocs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── appveyor.yml │ │ ├── docs │ │ │ ├── Breaking-Changes.md │ │ │ ├── How-To-Emit-YAML.md │ │ │ ├── How-To-Parse-A-Document-(Old-API).md │ │ │ ├── Strings.md │ │ │ ├── Tutorial.md │ │ │ ├── _config.yml │ │ │ └── index.md │ │ ├── include │ │ │ └── yaml-cpp │ │ │ │ ├── anchor.h │ │ │ │ ├── binary.h │ │ │ │ ├── contrib │ │ │ │ ├── anchordict.h │ │ │ │ └── graphbuilder.h │ │ │ │ ├── depthguard.h │ │ │ │ ├── dll.h │ │ │ │ ├── emitfromevents.h │ │ │ │ ├── emitter.h │ │ │ │ ├── emitterdef.h │ │ │ │ ├── emittermanip.h │ │ │ │ ├── emitterstyle.h │ │ │ │ ├── eventhandler.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── mark.h │ │ │ │ ├── node │ │ │ │ ├── convert.h │ │ │ │ ├── detail │ │ │ │ │ ├── impl.h │ │ │ │ │ ├── iterator.h │ │ │ │ │ ├── iterator_fwd.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── node.h │ │ │ │ │ ├── node_data.h │ │ │ │ │ ├── node_iterator.h │ │ │ │ │ └── node_ref.h │ │ │ │ ├── emit.h │ │ │ │ ├── impl.h │ │ │ │ ├── iterator.h │ │ │ │ ├── node.h │ │ │ │ ├── parse.h │ │ │ │ ├── ptr.h │ │ │ │ └── type.h │ │ │ │ ├── noexcept.h │ │ │ │ ├── null.h │ │ │ │ ├── ostream_wrapper.h │ │ │ │ ├── parser.h │ │ │ │ ├── stlemitter.h │ │ │ │ ├── traits.h │ │ │ │ └── yaml.h │ │ ├── install.txt │ │ ├── src │ │ │ ├── binary.cpp │ │ │ ├── collectionstack.h │ │ │ ├── contrib │ │ │ │ ├── graphbuilder.cpp │ │ │ │ ├── graphbuilderadapter.cpp │ │ │ │ ├── graphbuilderadapter.h │ │ │ │ ├── yaml-cpp.natvis │ │ │ │ └── yaml-cpp.natvis.md │ │ │ ├── convert.cpp │ │ │ ├── depthguard.cpp │ │ │ ├── directives.cpp │ │ │ ├── directives.h │ │ │ ├── emit.cpp │ │ │ ├── emitfromevents.cpp │ │ │ ├── emitter.cpp │ │ │ ├── emitterstate.cpp │ │ │ ├── emitterstate.h │ │ │ ├── emitterutils.cpp │ │ │ ├── emitterutils.h │ │ │ ├── exceptions.cpp │ │ │ ├── exp.cpp │ │ │ ├── exp.h │ │ │ ├── indentation.h │ │ │ ├── memory.cpp │ │ │ ├── node.cpp │ │ │ ├── node_data.cpp │ │ │ ├── nodebuilder.cpp │ │ │ ├── nodebuilder.h │ │ │ ├── nodeevents.cpp │ │ │ ├── nodeevents.h │ │ │ ├── null.cpp │ │ │ ├── ostream_wrapper.cpp │ │ │ ├── parse.cpp │ │ │ ├── parser.cpp │ │ │ ├── ptr_vector.h │ │ │ ├── regex_yaml.cpp │ │ │ ├── regex_yaml.h │ │ │ ├── regeximpl.h │ │ │ ├── scanner.cpp │ │ │ ├── scanner.h │ │ │ ├── scanscalar.cpp │ │ │ ├── scanscalar.h │ │ │ ├── scantag.cpp │ │ │ ├── scantag.h │ │ │ ├── scantoken.cpp │ │ │ ├── setting.h │ │ │ ├── simplekey.cpp │ │ │ ├── singledocparser.cpp │ │ │ ├── singledocparser.h │ │ │ ├── stream.cpp │ │ │ ├── stream.h │ │ │ ├── streamcharsource.h │ │ │ ├── stringsource.h │ │ │ ├── tag.cpp │ │ │ ├── tag.h │ │ │ └── token.h │ │ ├── test │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── create-emitter-tests.py │ │ │ ├── gtest-1.10.0 │ │ │ │ ├── .clang-format │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE │ │ │ │ ├── appveyor.yml │ │ │ │ ├── ci │ │ │ │ │ ├── build-linux-bazel.sh │ │ │ │ │ ├── build-platformio.sh │ │ │ │ │ ├── env-linux.sh │ │ │ │ │ ├── env-osx.sh │ │ │ │ │ ├── get-nprocessors.sh │ │ │ │ │ ├── install-linux.sh │ │ │ │ │ ├── install-osx.sh │ │ │ │ │ ├── install-platformio.sh │ │ │ │ │ ├── log-config.sh │ │ │ │ │ └── travis.sh │ │ │ │ ├── googlemock │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── gmock.pc.in │ │ │ │ │ │ └── gmock_main.pc.in │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── cheat_sheet.md │ │ │ │ │ │ ├── cook_book.md │ │ │ │ │ │ ├── for_dummies.md │ │ │ │ │ │ └── gmock_faq.md │ │ │ │ │ ├── include │ │ │ │ │ │ └── gmock │ │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ │ ├── gmock-port.h │ │ │ │ │ │ │ └── gmock-pp.h │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ └── upload_gmock.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ │ ├── gmock.cc │ │ │ │ │ │ └── gmock_main.cc │ │ │ │ │ └── test │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ │ ├── gmock-function-mocker_nc.cc │ │ │ │ │ │ ├── gmock-function-mocker_nc_test.py │ │ │ │ │ │ ├── gmock-function-mocker_test.cc │ │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ │ ├── gmock-pp-string_test.cc │ │ │ │ │ │ ├── gmock-pp_test.cc │ │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ │ └── gmock_test_utils.py │ │ │ │ ├── googletest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ │ ├── gtest.pc.in │ │ │ │ │ │ ├── gtest_main.pc.in │ │ │ │ │ │ ├── internal_utils.cmake │ │ │ │ │ │ └── libgtest.la.in │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── advanced.md │ │ │ │ │ │ ├── faq.md │ │ │ │ │ │ ├── pkgconfig.md │ │ │ │ │ │ ├── primer.md │ │ │ │ │ │ ├── pump_manual.md │ │ │ │ │ │ └── samples.md │ │ │ │ │ ├── include │ │ │ │ │ │ └── gtest │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ │ ├── sample1.cc │ │ │ │ │ │ ├── sample1.h │ │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ │ ├── sample2.cc │ │ │ │ │ │ ├── sample2.h │ │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ │ ├── sample4.cc │ │ │ │ │ │ ├── sample4.h │ │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ │ ├── pump.py │ │ │ │ │ │ ├── release_docs.py │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ └── upload_gtest.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── gtest-all.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 │ │ │ │ │ └── test │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ │ │ │ ├── googletest-color-test.py │ │ │ │ │ │ ├── googletest-color-test_.cc │ │ │ │ │ │ ├── googletest-death-test-test.cc │ │ │ │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ │ │ │ ├── googletest-env-var-test.py │ │ │ │ │ │ ├── googletest-env-var-test_.cc │ │ │ │ │ │ ├── googletest-filepath-test.cc │ │ │ │ │ │ ├── googletest-filter-unittest.py │ │ │ │ │ │ ├── googletest-filter-unittest_.cc │ │ │ │ │ │ ├── googletest-json-outfiles-test.py │ │ │ │ │ │ ├── googletest-json-output-unittest.py │ │ │ │ │ │ ├── googletest-list-tests-unittest.py │ │ │ │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ │ │ │ ├── googletest-listener-test.cc │ │ │ │ │ │ ├── googletest-message-test.cc │ │ │ │ │ │ ├── googletest-options-test.cc │ │ │ │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ │ │ │ ├── googletest-output-test.py │ │ │ │ │ │ ├── googletest-output-test_.cc │ │ │ │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ │ │ │ ├── googletest-param-test-test.cc │ │ │ │ │ │ ├── googletest-param-test-test.h │ │ │ │ │ │ ├── googletest-param-test2-test.cc │ │ │ │ │ │ ├── googletest-port-test.cc │ │ │ │ │ │ ├── googletest-printers-test.cc │ │ │ │ │ │ ├── googletest-shuffle-test.py │ │ │ │ │ │ ├── googletest-shuffle-test_.cc │ │ │ │ │ │ ├── googletest-test-part-test.cc │ │ │ │ │ │ ├── googletest-test2_test.cc │ │ │ │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ │ │ │ ├── googletest-uninitialized-test.py │ │ │ │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ │ │ ├── gtest_list_output_unittest.py │ │ │ │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ │ ├── gtest_skip_environment_check_output_test.py │ │ │ │ │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ │ │ │ │ ├── gtest_skip_test.cc │ │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ │ ├── gtest_testbridge_test.py │ │ │ │ │ │ ├── gtest_testbridge_test_.cc │ │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ │ ├── production.cc │ │ │ │ │ │ └── production.h │ │ │ │ ├── library.json │ │ │ │ └── platformio.ini │ │ │ ├── handler_test.h │ │ │ ├── integration │ │ │ │ ├── emitter_test.cpp │ │ │ │ ├── encoding_test.cpp │ │ │ │ ├── error_messages_test.cpp │ │ │ │ ├── gen_emitter_test.cpp │ │ │ │ ├── handler_spec_test.cpp │ │ │ │ ├── handler_test.cpp │ │ │ │ ├── load_node_test.cpp │ │ │ │ └── node_spec_test.cpp │ │ │ ├── main.cpp │ │ │ ├── mock_event_handler.h │ │ │ ├── node │ │ │ │ └── node_test.cpp │ │ │ ├── ostream_wrapper_test.cpp │ │ │ ├── parser_test.cpp │ │ │ ├── regex_test.cpp │ │ │ └── specexamples.h │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── api.cpp │ │ │ ├── parse.cpp │ │ │ ├── read.cpp │ │ │ └── sandbox.cpp │ │ ├── yaml-cpp-config.cmake.in │ │ └── yaml-cpp.pc.in │ └── yaml.vcxproj └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib.vcxproj │ ├── zlib.vcxproj.filters │ ├── zutil.c │ └── zutil.h ├── CMakeLists.txt ├── COPYING.GPLv3 ├── COPYING.LGPLv3 ├── README.md ├── bin ├── Langs │ ├── ar_SA │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── ca_ES │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── cs_CZ │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── da_DK │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── de_DE │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── es_ES │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── fi_FI │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── fr_FR │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── hr_HR │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── hu_HU │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── id_ID │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── it_IT │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── ja_JP │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── ko_KR │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── lt_LT │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── ms_MY │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── nb_NO │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── nl_NL │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── pl_PL │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── pt_BR │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── ru_RU │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── sv_SE │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── th_TH │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── tr_TR │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ ├── zh_CN │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo │ └── zh_TW │ │ ├── pcsx2_Iconized.mo │ │ └── pcsx2_Main.mo ├── PCSX2_keys.ini.default ├── docs │ ├── Configuration_Guide.pdf │ ├── Debugger.pdf │ ├── GPL.html │ ├── GameIndex.pdf │ ├── PCSX2.1 │ ├── PCSX2_FAQ.pdf │ └── debugger.txt ├── portable.ini ├── resources │ ├── GameIndex.yaml │ ├── cover-placeholder.png │ ├── fonts │ │ ├── Roboto-Regular-copyright │ │ ├── Roboto-Regular.ttf │ │ ├── RobotoMono-Medium.ttf │ │ └── fa-solid-900.ttf │ ├── game_controller_db.txt │ ├── gamecontrollerdb.txt │ ├── shaders │ │ ├── dx11 │ │ │ ├── convert.fx │ │ │ ├── fxaa.fx │ │ │ ├── interlace.fx │ │ │ ├── merge.fx │ │ │ ├── shadeboost.fx │ │ │ └── tfx.fx │ │ └── opengl │ │ │ ├── common_header.glsl │ │ │ ├── convert.glsl │ │ │ ├── interlace.glsl │ │ │ ├── merge.glsl │ │ │ ├── shadeboost.glsl │ │ │ ├── tfx_fs.glsl │ │ │ └── tfx_vgs.glsl │ ├── vk_convert.glsl │ ├── vk_interlace.glsl │ ├── vk_merge.glsl │ └── vk_tfx.glsl └── shaders │ ├── GS.fx │ └── GS_FX_Settings.ini ├── cmake ├── ApiValidation.cmake ├── BuildParameters.cmake ├── CheckLib.cmake ├── FindGTK3.cmake ├── FindHarfBuzz.cmake ├── FindLibc.cmake ├── FindPCAP.cmake ├── FindPulseAudio.cmake ├── FindVtune.cmake ├── FindWayland.cmake ├── Pcsx2PostprocessBundle.cmake ├── Pcsx2Utils.cmake ├── SearchForStuff.cmake ├── TargetArch.cmake ├── Translation.cmake ├── linux-compiler-i386-multilib.cmake └── macros │ ├── BuildTargetScript.cmake │ ├── CompileGResources.cmake │ ├── GenerateGXML.cmake │ └── GlibCompileResourcesSupport.cmake ├── common ├── Align.h ├── AlignedMalloc.cpp ├── AppTrait.h ├── Assertions.h ├── BitCast.h ├── BitUtils.h ├── CMakeLists.txt ├── Console.cpp ├── Console.h ├── Darwin │ ├── DarwinMisc.cpp │ ├── DarwinSemaphore.cpp │ └── DarwinThreads.cpp ├── Dependencies.h ├── EmbeddedImage.h ├── EventSource.cpp ├── EventSource.h ├── EventSource.inl ├── Exceptions.cpp ├── Exceptions.h ├── FastFormatString.cpp ├── FastJmp.cpp ├── FastJmp.h ├── FileSystem.cpp ├── FileSystem.h ├── GL │ ├── Context.cpp │ ├── Context.h │ ├── ContextAGL.h │ ├── ContextAGL.mm │ ├── ContextEGL.cpp │ ├── ContextEGL.h │ ├── ContextEGLAndroid.cpp │ ├── ContextEGLAndroid.h │ ├── ContextEGLWayland.cpp │ ├── ContextEGLWayland.h │ ├── ContextEGLX11.cpp │ ├── ContextEGLX11.h │ ├── ContextWGL.cpp │ ├── ContextWGL.h │ ├── Program.cpp │ ├── Program.h │ ├── ShaderCache.cpp │ ├── ShaderCache.h │ ├── StreamBuffer.cpp │ └── StreamBuffer.h ├── General.h ├── HashCombine.h ├── IniInterface.cpp ├── IniInterface.h ├── Linux │ ├── LnxHostSys.cpp │ ├── LnxMisc.cpp │ └── LnxThreads.cpp ├── MD5Digest.cpp ├── MD5Digest.h ├── MathUtils.h ├── MemcpyFast.h ├── MemsetFast.inl ├── Misc.cpp ├── Mutex.cpp ├── PageFaultSource.h ├── Path.h ├── PathUtils.cpp ├── Pcsx2Defs.h ├── Pcsx2Types.h ├── Perf.cpp ├── Perf.h ├── PersistentThread.h ├── PrecompiledHeader.cpp ├── PrecompiledHeader.h ├── ProgressCallback.cpp ├── ProgressCallback.h ├── RedtapeWindows.h ├── RwMutex.cpp ├── RwMutex.h ├── SafeArray.h ├── SafeArray.inl ├── ScopedAlloc.h ├── ScopedGuard.h ├── ScopedPtrMT.h ├── Semaphore.cpp ├── SettingsInterface.h ├── SettingsWrapper.cpp ├── SettingsWrapper.h ├── StringHelpers.cpp ├── StringHelpers.h ├── StringUtil.cpp ├── StringUtil.h ├── ThreadTools.cpp ├── Threading.h ├── ThreadingInternal.h ├── Timer.cpp ├── Timer.h ├── TraceLog.h ├── VirtualMemory.cpp ├── WindowInfo.cpp ├── WindowInfo.h ├── Windows │ ├── WinHostSys.cpp │ ├── WinMisc.cpp │ └── WinThreads.cpp ├── afxresmw.h ├── boost_spsc_queue.hpp ├── common.vcxproj ├── common.vcxproj.filters ├── emitter │ ├── LnxCpuDetect.cpp │ ├── WinCpuDetect.cpp │ ├── bmi.cpp │ ├── cpudetect.cpp │ ├── cpudetect_internal.h │ ├── fpu.cpp │ ├── groups.cpp │ ├── implement │ │ ├── bmi.h │ │ ├── dwshift.h │ │ ├── group1.h │ │ ├── group2.h │ │ ├── group3.h │ │ ├── helpers.h │ │ ├── incdec.h │ │ ├── jmpcall.h │ │ ├── movs.h │ │ ├── simd_arithmetic.h │ │ ├── simd_comparisons.h │ │ ├── simd_helpers.h │ │ ├── simd_moremovs.h │ │ ├── simd_shufflepack.h │ │ ├── simd_templated_helpers.h │ │ ├── test.h │ │ └── xchg.h │ ├── instructions.h │ ├── internal.h │ ├── jmp.cpp │ ├── legacy.cpp │ ├── legacy_instructions.h │ ├── legacy_internal.h │ ├── legacy_sse.cpp │ ├── legacy_types.h │ ├── movs.cpp │ ├── simd.cpp │ ├── tools.h │ ├── x86_intrin.h │ ├── x86emitter.cpp │ ├── x86emitter.h │ └── x86types.h ├── mt_queue.h ├── pxForwardDefs.h ├── pxStreams.cpp ├── pxStreams.h ├── pxTranslate.cpp ├── vsprops │ ├── 3rdpartyDeps.props │ ├── BaseProjectConfig.props │ ├── BaseProperties.props │ ├── CodeGen_Debug.props │ ├── CodeGen_Devel.props │ ├── CodeGen_Release.props │ ├── CommonLibrary.props │ ├── IncrementalLinking.props │ ├── ProjectConfigAVX2.props │ ├── QtCompile.props │ ├── QtCompile.targets │ ├── QtCompile.xml │ ├── SDL2Compile.props │ ├── WinSDK.props │ ├── common.props │ ├── plugin_svnroot.props │ ├── preBuild.cmd │ ├── pthreads.props │ └── readme.txt ├── wxBaseTools.h └── x86 │ └── MemcpyFast.cpp ├── linux_various ├── PCSX2-linux.sh ├── PCSX2.desktop.in ├── PCSX2.xpm ├── check_format.sh ├── check_po_quality.pl ├── gen_gl_func_ptr.pl ├── generate_pot.sh ├── hex2h.pl ├── pre-commit ├── pretty_print_dump.pl └── validate_glsl.sh ├── locales ├── CMakeLists.txt ├── ar_SA │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── ca_ES │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── cs_CZ │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── da_DK │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── de_DE │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── es_ES │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── fi_FI │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── fr_FR │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── hr_HR │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── hu_HU │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── id_ID │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── it_IT │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── ja_JP │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── ko_KR │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── locales.txt ├── lt_LT │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── ms_MY │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── nb_NO │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── nl_NL │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── pl_PL │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── pt_BR │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── ru_RU │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── sv_SE │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── templates │ ├── pcsx2_Iconized.pot │ ├── pcsx2_Main.pot │ └── readme.txt ├── th_TH │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── tr_TR │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── zh_CN │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po └── zh_TW │ ├── pcsx2_Iconized.po │ └── pcsx2_Main.po ├── nsis ├── AppIcon.ico ├── ApplyExeProps.nsh ├── SectionUninstaller.nsh ├── SectionVersionCheck.nsh ├── SharedCore.nsh ├── SharedDefs.nsh ├── SharedShortcuts.nsh ├── banner.bmp ├── nsis_instructions.txt ├── pcsx2_full_install.nsi ├── pcsx2_shared_init.nsi └── portable.ini ├── pcsx2 ├── AsyncFileReader.h ├── CDVD │ ├── BlockdumpFileReader.cpp │ ├── CDVD.cpp │ ├── CDVD.h │ ├── CDVD_internal.h │ ├── CDVDaccess.cpp │ ├── CDVDaccess.h │ ├── CDVDdiscReader.cpp │ ├── CDVDdiscReader.h │ ├── CDVDdiscThread.cpp │ ├── CDVDisoReader.cpp │ ├── CDVDisoReader.h │ ├── CdRom.cpp │ ├── CdRom.h │ ├── ChdFileReader.cpp │ ├── ChdFileReader.h │ ├── ChunksCache.cpp │ ├── ChunksCache.h │ ├── CompressedFileReader.cpp │ ├── CompressedFileReader.h │ ├── CsoFileReader.cpp │ ├── CsoFileReader.h │ ├── GzippedFileReader.cpp │ ├── GzippedFileReader.h │ ├── InputIsoFile.cpp │ ├── IsoFS │ │ ├── IsoDirectory.h │ │ ├── IsoFS.cpp │ │ ├── IsoFS.h │ │ ├── IsoFSCDVD.cpp │ │ ├── IsoFSCDVD.h │ │ ├── IsoFile.cpp │ │ ├── IsoFile.h │ │ ├── IsoFileDescriptor.h │ │ └── SectorSource.h │ ├── IsoFileFormats.h │ ├── Linux │ │ ├── DriveUtility.cpp │ │ └── IOCtlSrc.cpp │ ├── OutputIsoFile.cpp │ ├── ThreadedFileReader.cpp │ ├── ThreadedFileReader.h │ ├── Windows │ │ ├── DriveUtility.cpp │ │ └── IOCtlSrc.cpp │ └── zlib_indexed.h ├── CMakeLists.txt ├── COP0.cpp ├── COP0.h ├── COP2.cpp ├── Cache.cpp ├── Cache.h ├── Common.h ├── Config.h ├── Counters.cpp ├── Counters.h ├── DEV9 │ ├── ATA │ │ ├── ATA.h │ │ ├── ATA_Info.cpp │ │ ├── ATA_State.cpp │ │ ├── ATA_Transfer.cpp │ │ ├── Commands │ │ │ ├── ATA_CmdDMA.cpp │ │ │ ├── ATA_CmdExecuteDeviceDiag.cpp │ │ │ ├── ATA_CmdNoData.cpp │ │ │ ├── ATA_CmdPIOData.cpp │ │ │ ├── ATA_CmdSMART.cpp │ │ │ ├── ATA_Command.cpp │ │ │ └── ATA_SCE.cpp │ │ ├── HddCreate.cpp │ │ └── HddCreate.h │ ├── Config.h │ ├── ConfigUI.cpp │ ├── DEV9.cpp │ ├── DEV9.h │ ├── DEV9Config.cpp │ ├── InternalServers │ │ ├── DHCP_Server.cpp │ │ ├── DHCP_Server.h │ │ ├── DNS_Logger.cpp │ │ ├── DNS_Logger.h │ │ ├── DNS_Server.cpp │ │ └── DNS_Server.h │ ├── Linux │ │ └── Config.cpp │ ├── PacketReader │ │ ├── EthernetFrame.cpp │ │ ├── EthernetFrame.h │ │ ├── IP │ │ │ ├── IP_Address.h │ │ │ ├── IP_Options.cpp │ │ │ ├── IP_Options.h │ │ │ ├── IP_Packet.cpp │ │ │ ├── IP_Packet.h │ │ │ ├── IP_Payload.h │ │ │ └── UDP │ │ │ │ ├── DHCP │ │ │ │ ├── DHCP_Options.cpp │ │ │ │ ├── DHCP_Options.h │ │ │ │ ├── DHCP_Packet.cpp │ │ │ │ └── DHCP_Packet.h │ │ │ │ ├── DNS │ │ │ │ ├── DNS_Classes.cpp │ │ │ │ ├── DNS_Classes.h │ │ │ │ ├── DNS_Enums.h │ │ │ │ ├── DNS_Packet.cpp │ │ │ │ └── DNS_Packet.h │ │ │ │ ├── UDP_Packet.cpp │ │ │ │ └── UDP_Packet.h │ │ ├── NetLib.cpp │ │ ├── NetLib.h │ │ └── Payload.h │ ├── SimpleQueue.h │ ├── Win32 │ │ ├── DEV9WinConfig.cpp │ │ ├── pcap_io_win32.cpp │ │ ├── pcap_io_win32_funcs.h │ │ ├── tap-win32.cpp │ │ └── tap.h │ ├── flash.cpp │ ├── net.cpp │ ├── net.h │ ├── pcap_io.cpp │ ├── pcap_io.h │ ├── smap.cpp │ └── smap.h ├── Darwin │ └── DarwinFlatFileReader.cpp ├── DebugTools │ ├── BiosDebugData.cpp │ ├── BiosDebugData.h │ ├── Debug.h │ ├── DebugInterface.cpp │ ├── DebugInterface.h │ ├── DisASM.h │ ├── DisR3000A.cpp │ ├── DisR5900asm.cpp │ ├── DisVU0Micro.cpp │ ├── DisVU1Micro.cpp │ ├── DisVUmicro.h │ ├── DisVUops.h │ ├── DisassemblyManager.cpp │ ├── DisassemblyManager.h │ ├── ExpressionParser.cpp │ ├── ExpressionParser.h │ ├── MIPSAnalyst.cpp │ ├── MIPSAnalyst.h │ ├── MipsAssembler.cpp │ ├── MipsAssembler.h │ ├── MipsAssemblerTables.cpp │ ├── MipsAssemblerTables.h │ ├── MipsStackWalk.cpp │ ├── MipsStackWalk.h │ ├── SymbolMap.cpp │ └── SymbolMap.h ├── Dmac.h ├── Docs │ ├── .gitignore │ ├── Configuration_Guide │ │ ├── Configuration_Guide.md │ │ ├── PCSX2_First_Time_Configuration.png │ │ ├── PCSX2_First_Time_Configuration_bios.png │ │ └── PCSX2_First_Time_Configuration_plugins.png │ ├── Debugger.md │ ├── GPL.txt │ ├── GameIndex.md │ ├── License.txt │ ├── PCSX2_FAQ.md │ ├── README.md │ ├── eisvogel.tex │ └── gen-docs.sh ├── Dump.cpp ├── Dump.h ├── Elfheader.cpp ├── Elfheader.h ├── FPU.cpp ├── FW.cpp ├── FW.h ├── FiFo.cpp ├── GS.cpp ├── GS.h ├── GS │ ├── GS.cpp │ ├── GS.h │ ├── GS.rc │ ├── GSAlignedClass.cpp │ ├── GSAlignedClass.h │ ├── GSBlock.cpp │ ├── GSBlock.h │ ├── GSCapture.cpp │ ├── GSCapture.h │ ├── GSClut.cpp │ ├── GSClut.h │ ├── GSCodeBuffer.cpp │ ├── GSCodeBuffer.h │ ├── GSCrc.cpp │ ├── GSCrc.h │ ├── GSDrawingContext.cpp │ ├── GSDrawingContext.h │ ├── GSDrawingEnvironment.h │ ├── GSDump.cpp │ ├── GSDump.h │ ├── GSLocalMemory.cpp │ ├── GSLocalMemory.h │ ├── GSLzma.cpp │ ├── GSLzma.h │ ├── GSPerfMon.cpp │ ├── GSPerfMon.h │ ├── GSPng.cpp │ ├── GSPng.h │ ├── GSRingHeap.cpp │ ├── GSRingHeap.h │ ├── GSState.cpp │ ├── GSState.h │ ├── GSTables.cpp │ ├── GSTables.h │ ├── GSThread.h │ ├── GSThread_CXX11.h │ ├── GSUtil.cpp │ ├── GSUtil.h │ ├── GSVector.cpp │ ├── GSVector.h │ ├── GSVector4.h │ ├── GSVector4_arm64.h │ ├── GSVector4i.h │ ├── GSVector4i_arm64.h │ ├── GSVector8.h │ ├── GSVector8i.h │ ├── GS_types.h │ ├── Renderers │ │ ├── Common │ │ │ ├── GSDevice.cpp │ │ │ ├── GSDevice.h │ │ │ ├── GSDirtyRect.cpp │ │ │ ├── GSDirtyRect.h │ │ │ ├── GSFastList.h │ │ │ ├── GSFunctionMap.cpp │ │ │ ├── GSFunctionMap.h │ │ │ ├── GSRenderer.cpp │ │ │ ├── GSRenderer.h │ │ │ ├── GSTexture.cpp │ │ │ ├── GSTexture.h │ │ │ ├── GSVertex.h │ │ │ ├── GSVertexList.cpp │ │ │ ├── GSVertexList.h │ │ │ ├── GSVertexTrace.cpp │ │ │ └── GSVertexTrace.h │ │ ├── DX11 │ │ │ ├── D3D.cpp │ │ │ ├── D3D.h │ │ │ ├── GSDevice11.cpp │ │ │ ├── GSDevice11.h │ │ │ ├── GSRendererDX11.cpp │ │ │ ├── GSRendererDX11.h │ │ │ ├── GSTexture11.cpp │ │ │ ├── GSTexture11.h │ │ │ ├── GSTextureCache11.cpp │ │ │ ├── GSTextureCache11.h │ │ │ └── GSTextureFX11.cpp │ │ ├── HW │ │ │ ├── GSHwHack.cpp │ │ │ ├── GSRendererHW.cpp │ │ │ ├── GSRendererHW.h │ │ │ ├── GSTextureCache.cpp │ │ │ ├── GSTextureCache.h │ │ │ └── GSVertexHW.h │ │ ├── Null │ │ │ ├── GSDeviceNull.cpp │ │ │ ├── GSDeviceNull.h │ │ │ ├── GSRendererNull.cpp │ │ │ ├── GSRendererNull.h │ │ │ ├── GSTextureNull.cpp │ │ │ └── GSTextureNull.h │ │ ├── OpenGL │ │ │ ├── GLLoader.cpp │ │ │ ├── GLLoader.h │ │ │ ├── GLState.cpp │ │ │ ├── GLState.h │ │ │ ├── GSDeviceOGL.cpp │ │ │ ├── GSDeviceOGL.h │ │ │ ├── GSRendererOGL.cpp │ │ │ ├── GSRendererOGL.h │ │ │ ├── GSShaderOGL.cpp │ │ │ ├── GSShaderOGL.h │ │ │ ├── GSTextureCacheOGL.cpp │ │ │ ├── GSTextureCacheOGL.h │ │ │ ├── GSTextureOGL.cpp │ │ │ ├── GSTextureOGL.h │ │ │ └── GSUniformBufferOGL.h │ │ └── SW │ │ │ ├── GSDrawScanline.cpp │ │ │ ├── GSDrawScanline.h │ │ │ ├── GSDrawScanlineCodeGenerator.all.cpp │ │ │ ├── GSDrawScanlineCodeGenerator.all.h │ │ │ ├── GSDrawScanlineCodeGenerator.arm64.h │ │ │ ├── GSDrawScanlineCodeGenerator.cpp │ │ │ ├── GSDrawScanlineCodeGenerator.h │ │ │ ├── GSNewCodeGenerator.cpp │ │ │ ├── GSNewCodeGenerator.h │ │ │ ├── GSRasterizer.cpp │ │ │ ├── GSRasterizer.h │ │ │ ├── GSRendererSW.cpp │ │ │ ├── GSRendererSW.h │ │ │ ├── GSScanlineEnvironment.h │ │ │ ├── GSSetupPrimCodeGenerator.all.cpp │ │ │ ├── GSSetupPrimCodeGenerator.all.h │ │ │ ├── GSSetupPrimCodeGenerator.arm64.h │ │ │ ├── GSSetupPrimCodeGenerator.cpp │ │ │ ├── GSSetupPrimCodeGenerator.h │ │ │ ├── GSTextureCacheSW.cpp │ │ │ ├── GSTextureCacheSW.h │ │ │ ├── GSTextureSW.cpp │ │ │ ├── GSTextureSW.h │ │ │ ├── GSVertexSW.cpp │ │ │ └── GSVertexSW.h │ ├── Window │ │ ├── GSCaptureDlg.cpp │ │ ├── GSCaptureDlg.h │ │ ├── GSDialog.cpp │ │ ├── GSDialog.h │ │ ├── GSSetting.cpp │ │ ├── GSSetting.h │ │ ├── GSwxDialog.cpp │ │ └── GSwxDialog.h │ ├── config.h │ ├── docs │ │ └── TextureCache.odg │ ├── neon_permute.h │ └── resource.h ├── GSState.cpp ├── GameDatabase.cpp ├── GameDatabase.h ├── Gif.cpp ├── Gif.h ├── Gif_Logger.cpp ├── Gif_Unit.cpp ├── Gif_Unit.h ├── Hardware.h ├── Host.h ├── HostDisplay.cpp ├── HostDisplay.h ├── HostSettings.cpp ├── HostSettings.h ├── Hw.cpp ├── Hw.h ├── HwRead.cpp ├── HwWrite.cpp ├── IPC.cpp ├── IPC.h ├── IPU │ ├── IPU.cpp │ ├── IPU.h │ ├── IPU_Fifo.cpp │ ├── IPU_Fifo.h │ ├── IPUdma.cpp │ └── IPUdma.h ├── Interpreter.cpp ├── IopBios.cpp ├── IopBios.h ├── IopCommon.h ├── IopCounters.cpp ├── IopCounters.h ├── IopDma.cpp ├── IopDma.h ├── IopGte.cpp ├── IopGte.h ├── IopHw.cpp ├── IopHw.h ├── IopIrq.cpp ├── IopMem.cpp ├── IopMem.h ├── IopModuleNames.cpp ├── IopSio2.cpp ├── IopSio2.h ├── Linux │ ├── LnxConsolePipe.cpp │ ├── LnxFlatFileReader.cpp │ └── LnxKeyCodes.cpp ├── MMI.cpp ├── MTGS.cpp ├── MTVU.cpp ├── MTVU.h ├── Mdec.cpp ├── Mdec.h ├── Memory.cpp ├── Memory.h ├── MemoryCardFile.cpp ├── MemoryCardFile.h ├── MemoryCardFolder.cpp ├── MemoryCardFolder.h ├── MemoryTypes.h ├── MultipartFileReader.cpp ├── OutputIsoFile.cpp ├── PAD │ ├── Host │ │ ├── Config.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── Global.h │ │ ├── InputManager.cpp │ │ ├── InputManager.h │ │ ├── KeyStatus.cpp │ │ ├── KeyStatus.h │ │ ├── PAD.cpp │ │ ├── PAD.h │ │ ├── SDLJoystick.cpp │ │ ├── SDLJoystick.h │ │ ├── StateManagement.cpp │ │ ├── StateManagement.h │ │ └── bitwise.h │ ├── Linux │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── Device.cpp │ │ ├── Device.h │ │ ├── Global.h │ │ ├── Img │ │ │ ├── analog-2.png │ │ │ ├── analog.png │ │ │ ├── arrow_bottom.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── circle.png │ │ │ ├── cross.png │ │ │ ├── dp_bottom.png │ │ │ ├── dp_left.png │ │ │ ├── dp_right.png │ │ │ ├── dp_up.png │ │ │ ├── dualshock2.png │ │ │ ├── joystick_cursor.png │ │ │ ├── l1.png │ │ │ ├── l2.png │ │ │ ├── l3.png │ │ │ ├── r1.png │ │ │ ├── r2.png │ │ │ ├── r3.png │ │ │ ├── select.png │ │ │ ├── square.png │ │ │ ├── start.png │ │ │ └── triangle.png │ │ ├── InputManager.cpp │ │ ├── InputManager.h │ │ ├── KeyStatus.cpp │ │ ├── KeyStatus.h │ │ ├── PAD.cpp │ │ ├── PAD.h │ │ ├── SDL │ │ │ ├── joystick.cpp │ │ │ └── joystick.h │ │ ├── bitwise.h │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ ├── linux.cpp │ │ ├── state_management.cpp │ │ ├── state_management.h │ │ └── wx_dialog │ │ │ ├── GamepadConfiguration.cpp │ │ │ ├── GamepadConfiguration.h │ │ │ ├── JoystickConfiguration.cpp │ │ │ ├── JoystickConfiguration.h │ │ │ ├── dialog.cpp │ │ │ ├── dialog.h │ │ │ ├── opPanel.cpp │ │ │ └── opPanel.h │ └── Windows │ │ ├── Default.ini │ │ ├── DeviceEnumerator.cpp │ │ ├── DeviceEnumerator.h │ │ ├── Diagnostics.cpp │ │ ├── Diagnostics.h │ │ ├── DirectInput.cpp │ │ ├── DirectInput.h │ │ ├── DualShock3.cpp │ │ ├── DualShock3.h │ │ ├── Global.h │ │ ├── HidDevice.cpp │ │ ├── HidDevice.h │ │ ├── InputManager.cpp │ │ ├── InputManager.h │ │ ├── KeyboardQueue.cpp │ │ ├── KeyboardQueue.h │ │ ├── PAD.cpp │ │ ├── PAD.h │ │ ├── PAD.rc │ │ ├── PADConfig.cpp │ │ ├── PADConfig.h │ │ ├── PADRawInput.cpp │ │ ├── PADRawInput.h │ │ ├── RCa08644 │ │ ├── Tooltips.cpp │ │ ├── Tooltips.h │ │ ├── VKey.cpp │ │ ├── VKey.h │ │ ├── WindowsKeyboard.cpp │ │ ├── WindowsKeyboard.h │ │ ├── WindowsMessaging.cpp │ │ ├── WindowsMessaging.h │ │ ├── WindowsMouse.cpp │ │ ├── WindowsMouse.h │ │ ├── WndProcEater.cpp │ │ ├── WndProcEater.h │ │ ├── XInputEnum.cpp │ │ ├── XInputEnum.h │ │ ├── resource_pad.h │ │ └── usb.h ├── PCSX2.rc ├── Patch.cpp ├── Patch.h ├── Patch_Memory.cpp ├── PathDefs.h ├── Pcsx2Config.cpp ├── PerformanceMetrics.cpp ├── PerformanceMetrics.h ├── PrecompiledHeader.cpp ├── PrecompiledHeader.h ├── R3000A.cpp ├── R3000A.h ├── R3000AInterpreter.cpp ├── R3000AOpcodeTables.cpp ├── R5900.cpp ├── R5900.h ├── R5900Exceptions.h ├── R5900OpcodeImpl.cpp ├── R5900OpcodeTables.cpp ├── R5900OpcodeTables.h ├── RDebug │ ├── deci2.cpp │ ├── deci2.h │ ├── deci2.txt │ ├── deci2_dbgp.cpp │ ├── deci2_dbgp.h │ ├── deci2_dcmp.cpp │ ├── deci2_dcmp.h │ ├── deci2_drfp.cpp │ ├── deci2_drfp.h │ ├── deci2_iloadp.cpp │ ├── deci2_iloadp.h │ ├── deci2_netmp.cpp │ ├── deci2_netmp.h │ ├── deci2_ttyp.cpp │ ├── deci2_ttyp.h │ └── iloadp.txt ├── Recording │ ├── InputRecording.cpp │ ├── InputRecording.h │ ├── InputRecordingControls.cpp │ ├── InputRecordingControls.h │ ├── InputRecordingFile.cpp │ ├── InputRecordingFile.h │ ├── NewRecordingFrame.cpp │ ├── NewRecordingFrame.h │ ├── PadData.cpp │ ├── PadData.h │ ├── Utilities │ │ ├── InputRecordingLogger.cpp │ │ └── InputRecordingLogger.h │ └── VirtualPad │ │ ├── VirtualPad.cpp │ │ ├── VirtualPad.h │ │ ├── VirtualPadData.cpp │ │ ├── VirtualPadData.h │ │ ├── VirtualPadResources.cpp │ │ ├── VirtualPadResources.h │ │ └── img │ │ ├── .gitignore │ │ ├── bin2cpp.cmd │ │ ├── circlePressed.png │ │ ├── controllerFull.png │ │ ├── controllerHalf.png │ │ ├── controllerThreeQuarters.png │ │ ├── crossPressed.png │ │ ├── downPressed.png │ │ ├── l1Pressed.png │ │ ├── l2Pressed.png │ │ ├── l3Pressed.png │ │ ├── leftPressed.png │ │ ├── r1Pressed.png │ │ ├── r2Pressed.png │ │ ├── r3Pressed.png │ │ ├── rightPressed.png │ │ ├── selectPressed.png │ │ ├── squarePressed.png │ │ ├── startPressed.png │ │ ├── trianglePressed.png │ │ └── upPressed.png ├── Reference │ └── PS2-MemoryCardFileSystem.htm ├── SPR.cpp ├── SPR.h ├── SPU2 │ ├── ADSR.cpp │ ├── Config.h │ ├── Debug.cpp │ ├── Debug.h │ ├── Dma.cpp │ ├── Dma.h │ ├── DplIIdecoder.cpp │ ├── Global.h │ ├── Host │ │ ├── CfgHelpers.cpp │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── ConfigDebug.cpp │ │ ├── ConfigSoundTouch.cpp │ │ ├── Dialogs.cpp │ │ └── Dialogs.h │ ├── Linux │ │ ├── CfgHelpers.cpp │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── ConfigDebug.cpp │ │ ├── ConfigSoundTouch.cpp │ │ ├── Dialogs.cpp │ │ └── Dialogs.h │ ├── Mixer.cpp │ ├── Mixer.h │ ├── ReadInput.cpp │ ├── RegLog.cpp │ ├── RegTable.cpp │ ├── Reverb.cpp │ ├── SndOut.cpp │ ├── SndOut.h │ ├── SndOut_Cubeb.cpp │ ├── SndOut_Oboe.cpp │ ├── SndOut_Portaudio.cpp │ ├── SndOut_SDL.cpp │ ├── Timestretcher.cpp │ ├── WavFile.cpp │ ├── WavFile.h │ ├── Wavedump_wav.cpp │ ├── Windows │ │ ├── CfgHelpers.cpp │ │ ├── Config.cpp │ │ ├── ConfigDebug.cpp │ │ ├── ConfigSoundtouch.cpp │ │ ├── Dialogs.h │ │ ├── RealtimeDebugger.cpp │ │ ├── SPU2.rc │ │ ├── SndOut_XAudio2.cpp │ │ ├── UIHelpers.cpp │ │ ├── WinConfig.h │ │ ├── dsp.cpp │ │ ├── dsp.h │ │ └── resource.h │ ├── defs.h │ ├── interpolate_table.h │ ├── regs.h │ ├── spdif.h │ ├── spu2.cpp │ ├── spu2.h │ ├── spu2freeze.cpp │ ├── spu2sys.cpp │ └── wx │ │ ├── wxConfig.cpp │ │ └── wxConfig.h ├── SaveState.cpp ├── SaveState.h ├── ShiftJisToUnicode.cpp ├── Sif.cpp ├── Sif.h ├── Sif0.cpp ├── Sif1.cpp ├── Sifcmd.h ├── SingleRegisterTypes.h ├── Sio.cpp ├── Sio.h ├── SourceLog.cpp ├── SysForwardDefs.h ├── System.cpp ├── System.h ├── System │ ├── RecTypes.h │ ├── SysCoreThread.cpp │ ├── SysThreadBase.cpp │ └── SysThreads.h ├── USB │ ├── USB.cpp │ ├── USB.h │ ├── USBNull.cpp │ ├── Win32 │ │ ├── Config_usb.cpp │ │ ├── Config_usb.h │ │ ├── USBDialog.rc │ │ ├── guid.cpp │ │ └── resource_usb.h │ ├── configuration.cpp │ ├── configuration.h │ ├── device_init.cpp │ ├── deviceproxy.cpp │ ├── deviceproxy.h │ ├── gtk.h │ ├── helpers.h │ ├── icon_buzz_24.cpp │ ├── icon_buzz_24.h │ ├── linux │ │ ├── actualfile.c │ │ ├── actualfile.h │ │ ├── config-gtk.cpp │ │ ├── config.cpp │ │ ├── config.h │ │ ├── ini.c │ │ ├── ini.h │ │ ├── util.cpp │ │ └── util.h │ ├── platcompat.h │ ├── proxybase.h │ ├── qemu-usb │ │ ├── USBinternal.h │ │ ├── bus.cpp │ │ ├── core.cpp │ │ ├── desc.cpp │ │ ├── desc.h │ │ ├── glib.cpp │ │ ├── glib.h │ │ ├── hid.cpp │ │ ├── hid.h │ │ ├── input-keymap-linux-to-qcode.cpp │ │ ├── input-keymap-linux-to-qcode.h │ │ ├── input-keymap-qcode-to-qnum.cpp │ │ ├── input-keymap-win32-to-qcode.cpp │ │ ├── input-keymap-win32-to-qcode.h │ │ ├── input-keymap.h │ │ ├── iov.cpp │ │ ├── iov.h │ │ ├── queue.h │ │ ├── qusb.h │ │ ├── usb-hub.cpp │ │ ├── usb-ohci.cpp │ │ ├── vl.cpp │ │ └── vl.h │ ├── readerwriterqueue │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── atomicops.h │ │ └── readerwriterqueue.h │ ├── shared │ │ ├── hidapi.cpp │ │ ├── hidapi.h │ │ ├── inifile_usb.cpp │ │ ├── inifile_usb.h │ │ ├── rawinput_usb.cpp │ │ ├── rawinput_usb.h │ │ ├── ringbuffer.cpp │ │ ├── ringbuffer.h │ │ ├── shared_usb.cpp │ │ └── shared_usb.h │ ├── usb-eyetoy │ │ ├── api_init_linux.cpp │ │ ├── api_init_win32_eyetoy.cpp │ │ ├── cam-linux.cpp │ │ ├── cam-linux.h │ │ ├── cam-windows.cpp │ │ ├── cam-windows.h │ │ ├── jo_mpeg.cpp │ │ ├── jo_mpeg.h │ │ ├── ov519.h │ │ ├── usb-eyetoy-webcam.cpp │ │ ├── usb-eyetoy-webcam.h │ │ ├── videodev.h │ │ └── videodeviceproxy.h │ ├── usb-hid │ │ ├── api_init_linux.cpp │ │ ├── api_init_win32_hid.cpp │ │ ├── evdev │ │ │ ├── evdev-gtk.cpp │ │ │ ├── evdev.cpp │ │ │ └── evdev.h │ │ ├── hidproxy.h │ │ ├── noop.h │ │ ├── raw │ │ │ ├── rawinput.cpp │ │ │ └── rawinput.h │ │ ├── usb-buzzer.cpp │ │ ├── usb-hid.cpp │ │ └── usb-hid.h │ ├── usb-mic │ │ ├── api_init_linux.cpp │ │ ├── api_init_win32_mic.cpp │ │ ├── audio.h │ │ ├── audiodev-noop.h │ │ ├── audiodev-pulse.cpp │ │ ├── audiodev-pulse.h │ │ ├── audiodev-wasapi.cpp │ │ ├── audiodev-wasapi.h │ │ ├── audiodev.h │ │ ├── audiodeviceproxy.h │ │ ├── usb-headset.cpp │ │ ├── usb-headset.h │ │ ├── usb-mic-logitech.cpp │ │ ├── usb-mic-singstar.cpp │ │ └── usb-mic-singstar.h │ ├── usb-msd │ │ ├── usb-msd-gtk.cpp │ │ ├── usb-msd-win32.cpp │ │ ├── usb-msd.cpp │ │ └── usb-msd.h │ └── usb-pad │ │ ├── api_init_linux.cpp │ │ ├── api_init_win32_pad.cpp │ │ ├── bitjuggling.cpp │ │ ├── dx │ │ ├── dinput-config.cpp │ │ ├── dinput.cpp │ │ ├── dx.h │ │ ├── usb-pad-dx.cpp │ │ ├── usb-pad-dx.h │ │ ├── versionproxy.h │ │ └── versionproxy.rc │ │ ├── evdev │ │ ├── evdev-ff.cpp │ │ ├── evdev-ff.h │ │ ├── evdev-gtk.cpp │ │ ├── evdev.cpp │ │ ├── evdev.h │ │ ├── shared-gtk.cpp │ │ └── shared.h │ │ ├── lg │ │ ├── lg_ff.cpp │ │ └── lg_ff.h │ │ ├── padproxy.h │ │ ├── raw │ │ ├── raw-config-res.h │ │ ├── raw-config.cpp │ │ ├── raw-config.rc │ │ ├── usb-pad-raw.cpp │ │ └── usb-pad-raw.h │ │ ├── usb-pad-ff.cpp │ │ ├── usb-pad.cpp │ │ ├── usb-pad.h │ │ └── usb-seamic.cpp ├── Utilities │ ├── AsciiFile.h │ ├── FileUtils.cpp │ └── folderdesc.txt ├── VMManager.h ├── VU.h ├── VU0.cpp ├── VU0micro.cpp ├── VU0microInterp.cpp ├── VU1micro.cpp ├── VU1microInterp.cpp ├── VUflags.cpp ├── VUflags.h ├── VUmicro.cpp ├── VUmicro.h ├── VUmicroMem.cpp ├── VUops.cpp ├── VUops.h ├── Vif.cpp ├── Vif.h ├── Vif0_Dma.cpp ├── Vif1_Dma.cpp ├── Vif1_MFIFO.cpp ├── Vif_Codes.cpp ├── Vif_Dma.h ├── Vif_Transfer.cpp ├── Vif_Unpack.cpp ├── Vif_Unpack.h ├── gui │ └── i18n.h ├── libAetherSX2.a ├── pcsx2.vcxproj ├── pcsx2.vcxproj.filters ├── pcsx2core.vcxproj ├── pcsx2core.vcxproj.filters ├── ps2 │ ├── BiosTools.cpp │ ├── BiosTools.h │ ├── HwInternal.h │ ├── Iop │ │ ├── IopHwRead.cpp │ │ ├── IopHwWrite.cpp │ │ ├── IopHw_Internal.h │ │ └── PsxBios.cpp │ ├── LegacyDmac.cpp │ ├── eeHwTraceLog.inl │ ├── pgif.cpp │ └── pgif.h ├── resource.h ├── sif2.cpp ├── sio_internal.h ├── vtlb.cpp ├── vtlb.h ├── windows │ ├── AppIcon.ico │ ├── FlatFileReaderWindows.cpp │ ├── Optimus.cpp │ ├── PCSX2.manifest │ ├── VCprojects │ │ └── IopSif.cpp │ ├── Win32.h │ ├── WinCompressNTFS.cpp │ ├── WinConsolePipe.cpp │ ├── WinKeyCodes.cpp │ ├── WinPowerProfile.cpp │ ├── resource.h │ └── wxResources.rc └── x86 │ ├── BaseblockEx.cpp │ ├── BaseblockEx.h │ ├── R5900_Profiler.h │ ├── iCOP0.cpp │ ├── iCOP0.h │ ├── iCore.cpp │ ├── iCore.h │ ├── iFPU.cpp │ ├── iFPU.h │ ├── iFPUd.cpp │ ├── iMMI.cpp │ ├── iMMI.h │ ├── iMisc.cpp │ ├── iR3000A.cpp │ ├── iR3000A.h │ ├── iR3000Atables.cpp │ ├── iR5900.h │ ├── iR5900Arit.h │ ├── iR5900AritImm.h │ ├── iR5900Branch.h │ ├── iR5900Jump.h │ ├── iR5900LoadStore.h │ ├── iR5900Misc.cpp │ ├── iR5900Move.h │ ├── iR5900MultDiv.h │ ├── iR5900Shift.h │ ├── ir5900tables.cpp │ ├── ix86-32 │ ├── iCore-32.cpp │ ├── iR5900-32.cpp │ ├── iR5900Arit.cpp │ ├── iR5900AritImm.cpp │ ├── iR5900Branch.cpp │ ├── iR5900Jump.cpp │ ├── iR5900LoadStore.cpp │ ├── iR5900Move.cpp │ ├── iR5900MultDiv.cpp │ ├── iR5900Shift.cpp │ ├── iR5900Templates.cpp │ └── recVTLB.cpp │ ├── microVU.cpp │ ├── microVU.h │ ├── microVU_Alloc.inl │ ├── microVU_Analyze.inl │ ├── microVU_Branch.inl │ ├── microVU_Clamp.inl │ ├── microVU_Compile.inl │ ├── microVU_Execute.inl │ ├── microVU_Flags.inl │ ├── microVU_IR.h │ ├── microVU_Log.inl │ ├── microVU_Lower.inl │ ├── microVU_Macro.inl │ ├── microVU_Misc.h │ ├── microVU_Misc.inl │ ├── microVU_Profiler.h │ ├── microVU_Tables.inl │ ├── microVU_Upper.inl │ ├── newVif.h │ ├── newVif_Dynarec.cpp │ ├── newVif_HashBucket.h │ ├── newVif_Unpack.cpp │ ├── newVif_UnpackSSE.cpp │ └── newVif_UnpackSSE.h ├── tests ├── ctest │ ├── CMakeLists.txt │ ├── GS │ │ ├── CMakeLists.txt │ │ ├── swizzle_test_main.cpp │ │ └── swizzle_test_nops.cpp │ └── x86emitter │ │ ├── CMakeLists.txt │ │ ├── codegen_tests.cpp │ │ ├── codegen_tests.h │ │ └── codegen_tests_main.cpp └── run_test.pl ├── toolchain.cmake └── tools ├── CMakeLists.txt ├── bin2app.sh └── bin2cpp ├── CMakeLists.txt ├── bin2c.vcxproj ├── bin2c.vcxproj.filters └── bin2cpp.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/.clang-format -------------------------------------------------------------------------------- /.codacy.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | exclude_paths: 3 | - '3rdparty/**' 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/3rdparty.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/3rdparty.props -------------------------------------------------------------------------------- /3rdparty/GL/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/GL/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/baseclasses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/baseclasses/LICENSE -------------------------------------------------------------------------------- /3rdparty/baseclasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/baseclasses/cache.h -------------------------------------------------------------------------------- /3rdparty/baseclasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/baseclasses/ddmm.h -------------------------------------------------------------------------------- /3rdparty/baseclasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/baseclasses/mtype.h -------------------------------------------------------------------------------- /3rdparty/cpuinfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/.gitignore -------------------------------------------------------------------------------- /3rdparty/cpuinfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/LICENSE -------------------------------------------------------------------------------- /3rdparty/cpuinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/README.md -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/src/api.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/src/cache.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cpuinfo/src/init.c -------------------------------------------------------------------------------- /3rdparty/cubeb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/AUTHORS -------------------------------------------------------------------------------- /3rdparty/cubeb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/INSTALL.md -------------------------------------------------------------------------------- /3rdparty/cubeb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/LICENSE -------------------------------------------------------------------------------- /3rdparty/cubeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/README.md -------------------------------------------------------------------------------- /3rdparty/cubeb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/TODO -------------------------------------------------------------------------------- /3rdparty/cubeb/cubeb.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/cubeb.supp -------------------------------------------------------------------------------- /3rdparty/cubeb/cubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/cubeb.vcxproj -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/cubeb/src/cubeb.c -------------------------------------------------------------------------------- /3rdparty/fmt/fmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt.vcxproj -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/.gitignore -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/.travis.yml -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/LICENSE.rst -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/README.rst -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/doc/api.rst -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/doc/basic-bootstrap/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/doc/conf.py -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/src/os.cc -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/test/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/test/format -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/test/header-only-test.cc: -------------------------------------------------------------------------------- 1 | // Header-only configuration test 2 | 3 | #include "fmt/core.h" 4 | -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/test/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/test/scan.h -------------------------------------------------------------------------------- /3rdparty/fmt/fmt/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/fmt/fmt/test/util.h -------------------------------------------------------------------------------- /3rdparty/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glad/glad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/glad.vcxproj -------------------------------------------------------------------------------- /3rdparty/glad/include/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/include/glad.h -------------------------------------------------------------------------------- /3rdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/src/glad.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/src/glad_egl.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /3rdparty/glslang/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glslang/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/glslang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glslang/README.md -------------------------------------------------------------------------------- /3rdparty/glslang/SPIRV/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/glslang/SPIRV/doc.h -------------------------------------------------------------------------------- /3rdparty/gtest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/.clang-format -------------------------------------------------------------------------------- /3rdparty/gtest/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /3rdparty/gtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/.gitignore -------------------------------------------------------------------------------- /3rdparty/gtest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/LICENSE -------------------------------------------------------------------------------- /3rdparty/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/README.md -------------------------------------------------------------------------------- /3rdparty/gtest/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/WORKSPACE -------------------------------------------------------------------------------- /3rdparty/gtest/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /3rdparty/gtest/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/docs/faq.md -------------------------------------------------------------------------------- /3rdparty/gtest/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/docs/index.md -------------------------------------------------------------------------------- /3rdparty/gtest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/gtest/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/gtest/library.json -------------------------------------------------------------------------------- /3rdparty/imgui/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/CHANGELOG.txt -------------------------------------------------------------------------------- /3rdparty/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/README.md -------------------------------------------------------------------------------- /3rdparty/imgui/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/TODO.txt -------------------------------------------------------------------------------- /3rdparty/imgui/imgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/imgui.vcxproj -------------------------------------------------------------------------------- /3rdparty/imgui/src/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/imgui/src/imgui.cpp -------------------------------------------------------------------------------- /3rdparty/include/Packet32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/Packet32.h -------------------------------------------------------------------------------- /3rdparty/include/mpeg2_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/mpeg2_vlc.h -------------------------------------------------------------------------------- /3rdparty/include/pcap-bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap-bpf.h -------------------------------------------------------------------------------- /3rdparty/include/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/bpf.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/dlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/dlt.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/pcap.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/sll.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/usb.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/include/pcap/vlan.h -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpgd.cpp -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpgd.h -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpgd.vcxproj -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpgd_idct.h -------------------------------------------------------------------------------- /3rdparty/jpgd/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpge.cpp -------------------------------------------------------------------------------- /3rdparty/jpgd/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/jpgd/jpge.h -------------------------------------------------------------------------------- /3rdparty/libaio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libaio/COPYING -------------------------------------------------------------------------------- /3rdparty/libaio/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libaio/ChangeLog -------------------------------------------------------------------------------- /3rdparty/libaio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libaio/README.md -------------------------------------------------------------------------------- /3rdparty/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/README -------------------------------------------------------------------------------- /3rdparty/libjpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/change.log -------------------------------------------------------------------------------- /3rdparty/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jaricom.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcarith.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jccolor.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jchuff.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcinit.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jconfig.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcparam.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jcsample.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jctrans.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdarith.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdct.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdinput.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdsample.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jerror.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jerror.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jidctint.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jinclude.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemname.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jpegint.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jquant1.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jquant2.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jutils.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libjpeg/jversion.h -------------------------------------------------------------------------------- /3rdparty/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/ANNOUNCE -------------------------------------------------------------------------------- /3rdparty/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/CHANGES -------------------------------------------------------------------------------- /3rdparty/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/INSTALL -------------------------------------------------------------------------------- /3rdparty/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/LICENSE -------------------------------------------------------------------------------- /3rdparty/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/README -------------------------------------------------------------------------------- /3rdparty/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/TODO -------------------------------------------------------------------------------- /3rdparty/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/configure -------------------------------------------------------------------------------- /3rdparty/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/example.c -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/libpng.3 -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/libpng.pc.in -------------------------------------------------------------------------------- /3rdparty/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/libpngpf.3 -------------------------------------------------------------------------------- /3rdparty/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/png.5 -------------------------------------------------------------------------------- /3rdparty/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/png.c -------------------------------------------------------------------------------- /3rdparty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/png.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngbar.jpg -------------------------------------------------------------------------------- /3rdparty/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngbar.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngconf.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngdebug.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngerror.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngget.c -------------------------------------------------------------------------------- /3rdparty/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pnginfo.h -------------------------------------------------------------------------------- /3rdparty/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pnglibconf.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngmem.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngnow.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngpread.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngpriv.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngread.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngrio.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngrtran.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngrutil.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngset.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngstruct.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngtest.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngtest.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngtrans.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngwio.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngwrite.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngwtran.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libpng/pngwutil.c -------------------------------------------------------------------------------- /3rdparty/libsamplerate/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/libsamplerate/NEWS -------------------------------------------------------------------------------- /3rdparty/oboe/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/oboe/AUTHORS -------------------------------------------------------------------------------- /3rdparty/oboe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/oboe/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/oboe/LICENSE -------------------------------------------------------------------------------- /3rdparty/oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/oboe/README.md -------------------------------------------------------------------------------- /3rdparty/portaudio/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/portaudio/Doxyfile -------------------------------------------------------------------------------- /3rdparty/portaudio/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/portaudio/configure -------------------------------------------------------------------------------- /3rdparty/portaudio/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/portaudio/depcomp -------------------------------------------------------------------------------- /3rdparty/portaudio/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/portaudio/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/portaudio/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/portaudio/missing -------------------------------------------------------------------------------- /3rdparty/portaudio/src/common/pa_gitrevision.h: -------------------------------------------------------------------------------- 1 | #define PA_GIT_REVISION unknown 2 | -------------------------------------------------------------------------------- /3rdparty/portaudio/src/common/pa_svnrevision.h: -------------------------------------------------------------------------------- 1 | #define PA_SVN_REVISION 1954M 2 | -------------------------------------------------------------------------------- /3rdparty/pthreads4w/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/ANNOUNCE -------------------------------------------------------------------------------- /3rdparty/pthreads4w/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/BUGS -------------------------------------------------------------------------------- /3rdparty/pthreads4w/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/COPYING -------------------------------------------------------------------------------- /3rdparty/pthreads4w/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/FAQ -------------------------------------------------------------------------------- /3rdparty/pthreads4w/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/Makefile -------------------------------------------------------------------------------- /3rdparty/pthreads4w/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/NEWS -------------------------------------------------------------------------------- /3rdparty/pthreads4w/PROGRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/PROGRESS -------------------------------------------------------------------------------- /3rdparty/pthreads4w/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/README -------------------------------------------------------------------------------- /3rdparty/pthreads4w/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/TODO -------------------------------------------------------------------------------- /3rdparty/pthreads4w/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/attr.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/cancel.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/config.h -------------------------------------------------------------------------------- /3rdparty/pthreads4w/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/create.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/dll.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/errno.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/exit.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/fork.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/global.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/misc.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/mutex.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/rwlock.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/sched.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/signal.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/spin.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/sync.c -------------------------------------------------------------------------------- /3rdparty/pthreads4w/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/pthreads4w/tsd.c -------------------------------------------------------------------------------- /3rdparty/svn_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/svn_readme.txt -------------------------------------------------------------------------------- /3rdparty/vixl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/AUTHORS -------------------------------------------------------------------------------- /3rdparty/vixl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/vixl/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/LICENCE -------------------------------------------------------------------------------- /3rdparty/vixl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/README.md -------------------------------------------------------------------------------- /3rdparty/vixl/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/VERSIONS.md -------------------------------------------------------------------------------- /3rdparty/vixl/vixl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/vixl/vixl.vcxproj -------------------------------------------------------------------------------- /3rdparty/wil/.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable CRLF-mapping for all files in the depot. 2 | * -text 3 | -------------------------------------------------------------------------------- /3rdparty/wil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/.gitignore -------------------------------------------------------------------------------- /3rdparty/wil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/wil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/LICENSE -------------------------------------------------------------------------------- /3rdparty/wil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/README.md -------------------------------------------------------------------------------- /3rdparty/wil/packaging/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(nuget) 3 | -------------------------------------------------------------------------------- /3rdparty/wil/tests/Rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/tests/Rpc.cpp -------------------------------------------------------------------------------- /3rdparty/wil/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/tests/catch.hpp -------------------------------------------------------------------------------- /3rdparty/wil/tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/tests/common.h -------------------------------------------------------------------------------- /3rdparty/wil/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/wil/tests/main.cpp -------------------------------------------------------------------------------- /3rdparty/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /3rdparty/xz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/xz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/config.h -------------------------------------------------------------------------------- /3rdparty/xz/liblzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/liblzma.vcxproj -------------------------------------------------------------------------------- /3rdparty/xz/xz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/.gitignore -------------------------------------------------------------------------------- /3rdparty/xz/xz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/AUTHORS -------------------------------------------------------------------------------- /3rdparty/xz/xz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/COPYING -------------------------------------------------------------------------------- /3rdparty/xz/xz/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/COPYING.GPLv2 -------------------------------------------------------------------------------- /3rdparty/xz/xz/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/COPYING.GPLv3 -------------------------------------------------------------------------------- /3rdparty/xz/xz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/ChangeLog -------------------------------------------------------------------------------- /3rdparty/xz/xz/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/Doxyfile.in -------------------------------------------------------------------------------- /3rdparty/xz/xz/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/INSTALL -------------------------------------------------------------------------------- /3rdparty/xz/xz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/Makefile.am -------------------------------------------------------------------------------- /3rdparty/xz/xz/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/NEWS -------------------------------------------------------------------------------- /3rdparty/xz/xz/PACKAGERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/PACKAGERS -------------------------------------------------------------------------------- /3rdparty/xz/xz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/README -------------------------------------------------------------------------------- /3rdparty/xz/xz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/THANKS -------------------------------------------------------------------------------- /3rdparty/xz/xz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/TODO -------------------------------------------------------------------------------- /3rdparty/xz/xz/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/autogen.sh -------------------------------------------------------------------------------- /3rdparty/xz/xz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/configure.ac -------------------------------------------------------------------------------- /3rdparty/xz/xz/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/debug/README -------------------------------------------------------------------------------- /3rdparty/xz/xz/debug/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/debug/crc32.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/doc/faq.txt -------------------------------------------------------------------------------- /3rdparty/xz/xz/dos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/dos/Makefile -------------------------------------------------------------------------------- /3rdparty/xz/xz/dos/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/dos/config.h -------------------------------------------------------------------------------- /3rdparty/xz/xz/lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/lib/getopt.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/lib/getopt1.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/m4/.gitignore -------------------------------------------------------------------------------- /3rdparty/xz/xz/m4/getopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/m4/getopt.m4 -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/.gitignore -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs 2 | de 3 | fr 4 | it 5 | pl 6 | vi 7 | -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/Makevars -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/cs.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/de.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/fr.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/it.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/pl.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/po/vi.po -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/args.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/args.h -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/list.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/list.h -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/main.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/main.h -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/util.c -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/util.h -------------------------------------------------------------------------------- /3rdparty/xz/xz/src/xz/xz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/src/xz/xz.1 -------------------------------------------------------------------------------- /3rdparty/xz/xz/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/xz/xz/tests/tests.h -------------------------------------------------------------------------------- /3rdparty/yaml-cpp/yaml-cpp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | /tags 3 | /bazel-* 4 | -------------------------------------------------------------------------------- /3rdparty/yaml-cpp/yaml-cpp/test/gtest-1.10.0/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/ChangeLog -------------------------------------------------------------------------------- /3rdparty/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/FAQ -------------------------------------------------------------------------------- /3rdparty/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/README -------------------------------------------------------------------------------- /3rdparty/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/adler32.c -------------------------------------------------------------------------------- /3rdparty/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/compress.c -------------------------------------------------------------------------------- /3rdparty/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/crc32.c -------------------------------------------------------------------------------- /3rdparty/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/crc32.h -------------------------------------------------------------------------------- /3rdparty/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/deflate.c -------------------------------------------------------------------------------- /3rdparty/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/deflate.h -------------------------------------------------------------------------------- /3rdparty/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/examples/gun.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/gzclose.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/gzguts.h -------------------------------------------------------------------------------- /3rdparty/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/gzlib.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/gzread.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/gzwrite.c -------------------------------------------------------------------------------- /3rdparty/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/infback.c -------------------------------------------------------------------------------- /3rdparty/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inffast.c -------------------------------------------------------------------------------- /3rdparty/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inffast.h -------------------------------------------------------------------------------- /3rdparty/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inffixed.h -------------------------------------------------------------------------------- /3rdparty/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inflate.c -------------------------------------------------------------------------------- /3rdparty/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inflate.h -------------------------------------------------------------------------------- /3rdparty/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inftrees.c -------------------------------------------------------------------------------- /3rdparty/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/inftrees.h -------------------------------------------------------------------------------- /3rdparty/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/trees.c -------------------------------------------------------------------------------- /3rdparty/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/trees.h -------------------------------------------------------------------------------- /3rdparty/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/uncompr.c -------------------------------------------------------------------------------- /3rdparty/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/zconf.h -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/zlib.h -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /3rdparty/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/zutil.c -------------------------------------------------------------------------------- /3rdparty/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/3rdparty/zlib/zutil.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/COPYING.GPLv3 -------------------------------------------------------------------------------- /COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/COPYING.LGPLv3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/README.md -------------------------------------------------------------------------------- /bin/PCSX2_keys.ini.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/PCSX2_keys.ini.default -------------------------------------------------------------------------------- /bin/docs/Debugger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/Debugger.pdf -------------------------------------------------------------------------------- /bin/docs/GPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/GPL.html -------------------------------------------------------------------------------- /bin/docs/GameIndex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/GameIndex.pdf -------------------------------------------------------------------------------- /bin/docs/PCSX2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/PCSX2.1 -------------------------------------------------------------------------------- /bin/docs/PCSX2_FAQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/PCSX2_FAQ.pdf -------------------------------------------------------------------------------- /bin/docs/debugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/docs/debugger.txt -------------------------------------------------------------------------------- /bin/portable.ini: -------------------------------------------------------------------------------- 1 | RunWizard=0 2 | -------------------------------------------------------------------------------- /bin/resources/GameIndex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/resources/GameIndex.yaml -------------------------------------------------------------------------------- /bin/resources/vk_merge.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/resources/vk_merge.glsl -------------------------------------------------------------------------------- /bin/resources/vk_tfx.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/resources/vk_tfx.glsl -------------------------------------------------------------------------------- /bin/shaders/GS.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/bin/shaders/GS.fx -------------------------------------------------------------------------------- /cmake/ApiValidation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/ApiValidation.cmake -------------------------------------------------------------------------------- /cmake/BuildParameters.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/BuildParameters.cmake -------------------------------------------------------------------------------- /cmake/CheckLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/CheckLib.cmake -------------------------------------------------------------------------------- /cmake/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindGTK3.cmake -------------------------------------------------------------------------------- /cmake/FindHarfBuzz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindHarfBuzz.cmake -------------------------------------------------------------------------------- /cmake/FindLibc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindLibc.cmake -------------------------------------------------------------------------------- /cmake/FindPCAP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindPCAP.cmake -------------------------------------------------------------------------------- /cmake/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindPulseAudio.cmake -------------------------------------------------------------------------------- /cmake/FindVtune.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindVtune.cmake -------------------------------------------------------------------------------- /cmake/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/FindWayland.cmake -------------------------------------------------------------------------------- /cmake/Pcsx2Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/Pcsx2Utils.cmake -------------------------------------------------------------------------------- /cmake/SearchForStuff.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/SearchForStuff.cmake -------------------------------------------------------------------------------- /cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /cmake/Translation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/cmake/Translation.cmake -------------------------------------------------------------------------------- /common/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Align.h -------------------------------------------------------------------------------- /common/AlignedMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/AlignedMalloc.cpp -------------------------------------------------------------------------------- /common/AppTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/AppTrait.h -------------------------------------------------------------------------------- /common/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Assertions.h -------------------------------------------------------------------------------- /common/BitCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/BitCast.h -------------------------------------------------------------------------------- /common/BitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/BitUtils.h -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Console.cpp -------------------------------------------------------------------------------- /common/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Console.h -------------------------------------------------------------------------------- /common/Darwin/DarwinMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Darwin/DarwinMisc.cpp -------------------------------------------------------------------------------- /common/Dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Dependencies.h -------------------------------------------------------------------------------- /common/EmbeddedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/EmbeddedImage.h -------------------------------------------------------------------------------- /common/EventSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/EventSource.cpp -------------------------------------------------------------------------------- /common/EventSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/EventSource.h -------------------------------------------------------------------------------- /common/EventSource.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/EventSource.inl -------------------------------------------------------------------------------- /common/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Exceptions.cpp -------------------------------------------------------------------------------- /common/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Exceptions.h -------------------------------------------------------------------------------- /common/FastFormatString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/FastFormatString.cpp -------------------------------------------------------------------------------- /common/FastJmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/FastJmp.cpp -------------------------------------------------------------------------------- /common/FastJmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/FastJmp.h -------------------------------------------------------------------------------- /common/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/FileSystem.cpp -------------------------------------------------------------------------------- /common/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/FileSystem.h -------------------------------------------------------------------------------- /common/GL/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/Context.cpp -------------------------------------------------------------------------------- /common/GL/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/Context.h -------------------------------------------------------------------------------- /common/GL/ContextAGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextAGL.h -------------------------------------------------------------------------------- /common/GL/ContextAGL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextAGL.mm -------------------------------------------------------------------------------- /common/GL/ContextEGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextEGL.cpp -------------------------------------------------------------------------------- /common/GL/ContextEGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextEGL.h -------------------------------------------------------------------------------- /common/GL/ContextEGLX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextEGLX11.cpp -------------------------------------------------------------------------------- /common/GL/ContextEGLX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextEGLX11.h -------------------------------------------------------------------------------- /common/GL/ContextWGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextWGL.cpp -------------------------------------------------------------------------------- /common/GL/ContextWGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ContextWGL.h -------------------------------------------------------------------------------- /common/GL/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/Program.cpp -------------------------------------------------------------------------------- /common/GL/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/Program.h -------------------------------------------------------------------------------- /common/GL/ShaderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ShaderCache.cpp -------------------------------------------------------------------------------- /common/GL/ShaderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/ShaderCache.h -------------------------------------------------------------------------------- /common/GL/StreamBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/StreamBuffer.cpp -------------------------------------------------------------------------------- /common/GL/StreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/GL/StreamBuffer.h -------------------------------------------------------------------------------- /common/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/General.h -------------------------------------------------------------------------------- /common/HashCombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/HashCombine.h -------------------------------------------------------------------------------- /common/IniInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/IniInterface.cpp -------------------------------------------------------------------------------- /common/IniInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/IniInterface.h -------------------------------------------------------------------------------- /common/Linux/LnxHostSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Linux/LnxHostSys.cpp -------------------------------------------------------------------------------- /common/Linux/LnxMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Linux/LnxMisc.cpp -------------------------------------------------------------------------------- /common/Linux/LnxThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Linux/LnxThreads.cpp -------------------------------------------------------------------------------- /common/MD5Digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/MD5Digest.cpp -------------------------------------------------------------------------------- /common/MD5Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/MD5Digest.h -------------------------------------------------------------------------------- /common/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/MathUtils.h -------------------------------------------------------------------------------- /common/MemcpyFast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/MemcpyFast.h -------------------------------------------------------------------------------- /common/MemsetFast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/MemsetFast.inl -------------------------------------------------------------------------------- /common/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Misc.cpp -------------------------------------------------------------------------------- /common/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Mutex.cpp -------------------------------------------------------------------------------- /common/PageFaultSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/PageFaultSource.h -------------------------------------------------------------------------------- /common/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Path.h -------------------------------------------------------------------------------- /common/PathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/PathUtils.cpp -------------------------------------------------------------------------------- /common/Pcsx2Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Pcsx2Defs.h -------------------------------------------------------------------------------- /common/Pcsx2Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Pcsx2Types.h -------------------------------------------------------------------------------- /common/Perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Perf.cpp -------------------------------------------------------------------------------- /common/Perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Perf.h -------------------------------------------------------------------------------- /common/PersistentThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/PersistentThread.h -------------------------------------------------------------------------------- /common/PrecompiledHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/PrecompiledHeader.cpp -------------------------------------------------------------------------------- /common/PrecompiledHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/PrecompiledHeader.h -------------------------------------------------------------------------------- /common/ProgressCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ProgressCallback.cpp -------------------------------------------------------------------------------- /common/ProgressCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ProgressCallback.h -------------------------------------------------------------------------------- /common/RedtapeWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/RedtapeWindows.h -------------------------------------------------------------------------------- /common/RwMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/RwMutex.cpp -------------------------------------------------------------------------------- /common/RwMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/RwMutex.h -------------------------------------------------------------------------------- /common/SafeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/SafeArray.h -------------------------------------------------------------------------------- /common/SafeArray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/SafeArray.inl -------------------------------------------------------------------------------- /common/ScopedAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ScopedAlloc.h -------------------------------------------------------------------------------- /common/ScopedGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ScopedGuard.h -------------------------------------------------------------------------------- /common/ScopedPtrMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ScopedPtrMT.h -------------------------------------------------------------------------------- /common/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Semaphore.cpp -------------------------------------------------------------------------------- /common/SettingsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/SettingsInterface.h -------------------------------------------------------------------------------- /common/SettingsWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/SettingsWrapper.cpp -------------------------------------------------------------------------------- /common/SettingsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/SettingsWrapper.h -------------------------------------------------------------------------------- /common/StringHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/StringHelpers.cpp -------------------------------------------------------------------------------- /common/StringHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/StringHelpers.h -------------------------------------------------------------------------------- /common/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/StringUtil.cpp -------------------------------------------------------------------------------- /common/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/StringUtil.h -------------------------------------------------------------------------------- /common/ThreadTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ThreadTools.cpp -------------------------------------------------------------------------------- /common/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Threading.h -------------------------------------------------------------------------------- /common/ThreadingInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/ThreadingInternal.h -------------------------------------------------------------------------------- /common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Timer.cpp -------------------------------------------------------------------------------- /common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Timer.h -------------------------------------------------------------------------------- /common/TraceLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/TraceLog.h -------------------------------------------------------------------------------- /common/VirtualMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/VirtualMemory.cpp -------------------------------------------------------------------------------- /common/WindowInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/WindowInfo.cpp -------------------------------------------------------------------------------- /common/WindowInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/WindowInfo.h -------------------------------------------------------------------------------- /common/Windows/WinMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/Windows/WinMisc.cpp -------------------------------------------------------------------------------- /common/afxresmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/afxresmw.h -------------------------------------------------------------------------------- /common/boost_spsc_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/boost_spsc_queue.hpp -------------------------------------------------------------------------------- /common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/common.vcxproj -------------------------------------------------------------------------------- /common/emitter/bmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/bmi.cpp -------------------------------------------------------------------------------- /common/emitter/cpudetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/cpudetect.cpp -------------------------------------------------------------------------------- /common/emitter/fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/fpu.cpp -------------------------------------------------------------------------------- /common/emitter/groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/groups.cpp -------------------------------------------------------------------------------- /common/emitter/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/internal.h -------------------------------------------------------------------------------- /common/emitter/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/jmp.cpp -------------------------------------------------------------------------------- /common/emitter/legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/legacy.cpp -------------------------------------------------------------------------------- /common/emitter/movs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/movs.cpp -------------------------------------------------------------------------------- /common/emitter/simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/simd.cpp -------------------------------------------------------------------------------- /common/emitter/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/tools.h -------------------------------------------------------------------------------- /common/emitter/x86_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/x86_intrin.h -------------------------------------------------------------------------------- /common/emitter/x86emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/x86emitter.h -------------------------------------------------------------------------------- /common/emitter/x86types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/emitter/x86types.h -------------------------------------------------------------------------------- /common/mt_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/mt_queue.h -------------------------------------------------------------------------------- /common/pxForwardDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/pxForwardDefs.h -------------------------------------------------------------------------------- /common/pxStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/pxStreams.cpp -------------------------------------------------------------------------------- /common/pxStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/pxStreams.h -------------------------------------------------------------------------------- /common/pxTranslate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/pxTranslate.cpp -------------------------------------------------------------------------------- /common/vsprops/QtCompile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/vsprops/QtCompile.xml -------------------------------------------------------------------------------- /common/vsprops/WinSDK.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/vsprops/WinSDK.props -------------------------------------------------------------------------------- /common/vsprops/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/vsprops/common.props -------------------------------------------------------------------------------- /common/vsprops/preBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/vsprops/preBuild.cmd -------------------------------------------------------------------------------- /common/vsprops/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/vsprops/readme.txt -------------------------------------------------------------------------------- /common/wxBaseTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/wxBaseTools.h -------------------------------------------------------------------------------- /common/x86/MemcpyFast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/common/x86/MemcpyFast.cpp -------------------------------------------------------------------------------- /linux_various/PCSX2-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/linux_various/PCSX2-linux.sh -------------------------------------------------------------------------------- /linux_various/PCSX2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/linux_various/PCSX2.xpm -------------------------------------------------------------------------------- /linux_various/hex2h.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/linux_various/hex2h.pl -------------------------------------------------------------------------------- /linux_various/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/linux_various/pre-commit -------------------------------------------------------------------------------- /locales/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/CMakeLists.txt -------------------------------------------------------------------------------- /locales/ar_SA/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ar_SA/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/ca_ES/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ca_ES/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/cs_CZ/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/cs_CZ/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/da_DK/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/da_DK/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/de_DE/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/de_DE/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/es_ES/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/es_ES/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/fi_FI/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/fi_FI/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/fr_FR/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/fr_FR/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/hr_HR/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/hr_HR/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/hu_HU/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/hu_HU/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/id_ID/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/id_ID/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/it_IT/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/it_IT/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/ja_JP/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ja_JP/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/ko_KR/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ko_KR/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/locales.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/locales.txt -------------------------------------------------------------------------------- /locales/lt_LT/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/lt_LT/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/ms_MY/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ms_MY/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/nb_NO/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/nb_NO/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/nl_NL/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/nl_NL/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/pl_PL/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/pl_PL/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/pt_BR/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/pt_BR/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/ru_RU/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/ru_RU/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/sv_SE/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/sv_SE/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/templates/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/templates/readme.txt -------------------------------------------------------------------------------- /locales/th_TH/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/th_TH/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/tr_TR/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/tr_TR/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/zh_CN/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/zh_CN/pcsx2_Main.po -------------------------------------------------------------------------------- /locales/zh_TW/pcsx2_Main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/locales/zh_TW/pcsx2_Main.po -------------------------------------------------------------------------------- /nsis/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/AppIcon.ico -------------------------------------------------------------------------------- /nsis/ApplyExeProps.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/ApplyExeProps.nsh -------------------------------------------------------------------------------- /nsis/SectionUninstaller.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/SectionUninstaller.nsh -------------------------------------------------------------------------------- /nsis/SectionVersionCheck.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/SectionVersionCheck.nsh -------------------------------------------------------------------------------- /nsis/SharedCore.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/SharedCore.nsh -------------------------------------------------------------------------------- /nsis/SharedDefs.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/SharedDefs.nsh -------------------------------------------------------------------------------- /nsis/SharedShortcuts.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/SharedShortcuts.nsh -------------------------------------------------------------------------------- /nsis/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/banner.bmp -------------------------------------------------------------------------------- /nsis/nsis_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/nsis_instructions.txt -------------------------------------------------------------------------------- /nsis/pcsx2_full_install.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/pcsx2_full_install.nsi -------------------------------------------------------------------------------- /nsis/pcsx2_shared_init.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/nsis/pcsx2_shared_init.nsi -------------------------------------------------------------------------------- /nsis/portable.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pcsx2/AsyncFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/AsyncFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVD.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVD.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVD_internal.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVDaccess.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVDaccess.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDdiscReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVDdiscReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDisoReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVDisoReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDisoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CDVDisoReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CdRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CdRom.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CdRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CdRom.h -------------------------------------------------------------------------------- /pcsx2/CDVD/ChdFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/ChdFileReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/ChdFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/ChdFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/ChunksCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/ChunksCache.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/ChunksCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/ChunksCache.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CsoFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CsoFileReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CsoFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/CsoFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/InputIsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/InputIsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFS/IsoFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFS/IsoFS.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFS/IsoFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFS/IsoFS.h -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFS/IsoFSCDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFS/IsoFSCDVD.h -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFS/IsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFS/IsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFS/IsoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFS/IsoFile.h -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFileFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/IsoFileFormats.h -------------------------------------------------------------------------------- /pcsx2/CDVD/OutputIsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/OutputIsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/zlib_indexed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CDVD/zlib_indexed.h -------------------------------------------------------------------------------- /pcsx2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/CMakeLists.txt -------------------------------------------------------------------------------- /pcsx2/COP0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/COP0.cpp -------------------------------------------------------------------------------- /pcsx2/COP0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/COP0.h -------------------------------------------------------------------------------- /pcsx2/COP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/COP2.cpp -------------------------------------------------------------------------------- /pcsx2/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Cache.cpp -------------------------------------------------------------------------------- /pcsx2/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Cache.h -------------------------------------------------------------------------------- /pcsx2/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Common.h -------------------------------------------------------------------------------- /pcsx2/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Config.h -------------------------------------------------------------------------------- /pcsx2/Counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Counters.cpp -------------------------------------------------------------------------------- /pcsx2/Counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Counters.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ATA/ATA.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA_Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ATA/ATA_Info.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA_State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ATA/ATA_State.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/HddCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ATA/HddCreate.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/HddCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ATA/HddCreate.h -------------------------------------------------------------------------------- /pcsx2/DEV9/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/Config.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ConfigUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/ConfigUI.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/DEV9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/DEV9.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/DEV9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/DEV9.h -------------------------------------------------------------------------------- /pcsx2/DEV9/DEV9Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/DEV9Config.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/Linux/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/Linux/Config.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/SimpleQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/SimpleQueue.h -------------------------------------------------------------------------------- /pcsx2/DEV9/Win32/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/Win32/tap.h -------------------------------------------------------------------------------- /pcsx2/DEV9/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/flash.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/net.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/net.h -------------------------------------------------------------------------------- /pcsx2/DEV9/pcap_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/pcap_io.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/pcap_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/pcap_io.h -------------------------------------------------------------------------------- /pcsx2/DEV9/smap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/smap.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/smap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DEV9/smap.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DebugTools/Debug.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/DisASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DebugTools/DisASM.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/DisVUops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DebugTools/DisVUops.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/SymbolMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/DebugTools/SymbolMap.h -------------------------------------------------------------------------------- /pcsx2/Dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Dmac.h -------------------------------------------------------------------------------- /pcsx2/Docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /pcsx2/Docs/Debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/Debugger.md -------------------------------------------------------------------------------- /pcsx2/Docs/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/GPL.txt -------------------------------------------------------------------------------- /pcsx2/Docs/GameIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/GameIndex.md -------------------------------------------------------------------------------- /pcsx2/Docs/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/License.txt -------------------------------------------------------------------------------- /pcsx2/Docs/PCSX2_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/PCSX2_FAQ.md -------------------------------------------------------------------------------- /pcsx2/Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/README.md -------------------------------------------------------------------------------- /pcsx2/Docs/eisvogel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/eisvogel.tex -------------------------------------------------------------------------------- /pcsx2/Docs/gen-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Docs/gen-docs.sh -------------------------------------------------------------------------------- /pcsx2/Dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Dump.cpp -------------------------------------------------------------------------------- /pcsx2/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Dump.h -------------------------------------------------------------------------------- /pcsx2/Elfheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Elfheader.cpp -------------------------------------------------------------------------------- /pcsx2/Elfheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Elfheader.h -------------------------------------------------------------------------------- /pcsx2/FPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/FPU.cpp -------------------------------------------------------------------------------- /pcsx2/FW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/FW.cpp -------------------------------------------------------------------------------- /pcsx2/FW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/FW.h -------------------------------------------------------------------------------- /pcsx2/FiFo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/FiFo.cpp -------------------------------------------------------------------------------- /pcsx2/GS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS.cpp -------------------------------------------------------------------------------- /pcsx2/GS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS.h -------------------------------------------------------------------------------- /pcsx2/GS/GS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GS.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GS.h -------------------------------------------------------------------------------- /pcsx2/GS/GS.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GS.rc -------------------------------------------------------------------------------- /pcsx2/GS/GSAlignedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSAlignedClass.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSAlignedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSAlignedClass.h -------------------------------------------------------------------------------- /pcsx2/GS/GSBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSBlock.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSBlock.h -------------------------------------------------------------------------------- /pcsx2/GS/GSCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCapture.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCapture.h -------------------------------------------------------------------------------- /pcsx2/GS/GSClut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSClut.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSClut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSClut.h -------------------------------------------------------------------------------- /pcsx2/GS/GSCodeBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCodeBuffer.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSCodeBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCodeBuffer.h -------------------------------------------------------------------------------- /pcsx2/GS/GSCrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCrc.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSCrc.h -------------------------------------------------------------------------------- /pcsx2/GS/GSDrawingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSDrawingContext.h -------------------------------------------------------------------------------- /pcsx2/GS/GSDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSDump.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSDump.h -------------------------------------------------------------------------------- /pcsx2/GS/GSLocalMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSLocalMemory.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSLocalMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSLocalMemory.h -------------------------------------------------------------------------------- /pcsx2/GS/GSLzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSLzma.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSLzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSLzma.h -------------------------------------------------------------------------------- /pcsx2/GS/GSPerfMon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSPerfMon.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSPerfMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSPerfMon.h -------------------------------------------------------------------------------- /pcsx2/GS/GSPng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSPng.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSPng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSPng.h -------------------------------------------------------------------------------- /pcsx2/GS/GSRingHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSRingHeap.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSRingHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSRingHeap.h -------------------------------------------------------------------------------- /pcsx2/GS/GSState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSState.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSState.h -------------------------------------------------------------------------------- /pcsx2/GS/GSTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSTables.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSTables.h -------------------------------------------------------------------------------- /pcsx2/GS/GSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSThread.h -------------------------------------------------------------------------------- /pcsx2/GS/GSThread_CXX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSThread_CXX11.h -------------------------------------------------------------------------------- /pcsx2/GS/GSUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSUtil.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSUtil.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector4.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector4_arm64.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector4i.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4i_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector4i_arm64.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector8.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GSVector8i.h -------------------------------------------------------------------------------- /pcsx2/GS/GS_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/GS_types.h -------------------------------------------------------------------------------- /pcsx2/GS/Window/GSDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/Window/GSDialog.cpp -------------------------------------------------------------------------------- /pcsx2/GS/Window/GSDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/Window/GSDialog.h -------------------------------------------------------------------------------- /pcsx2/GS/Window/GSSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/Window/GSSetting.h -------------------------------------------------------------------------------- /pcsx2/GS/Window/GSwxDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/Window/GSwxDialog.h -------------------------------------------------------------------------------- /pcsx2/GS/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/config.h -------------------------------------------------------------------------------- /pcsx2/GS/neon_permute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/neon_permute.h -------------------------------------------------------------------------------- /pcsx2/GS/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GS/resource.h -------------------------------------------------------------------------------- /pcsx2/GSState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GSState.cpp -------------------------------------------------------------------------------- /pcsx2/GameDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GameDatabase.cpp -------------------------------------------------------------------------------- /pcsx2/GameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/GameDatabase.h -------------------------------------------------------------------------------- /pcsx2/Gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Gif.cpp -------------------------------------------------------------------------------- /pcsx2/Gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Gif.h -------------------------------------------------------------------------------- /pcsx2/Gif_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Gif_Logger.cpp -------------------------------------------------------------------------------- /pcsx2/Gif_Unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Gif_Unit.cpp -------------------------------------------------------------------------------- /pcsx2/Gif_Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Gif_Unit.h -------------------------------------------------------------------------------- /pcsx2/Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Hardware.h -------------------------------------------------------------------------------- /pcsx2/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Host.h -------------------------------------------------------------------------------- /pcsx2/HostDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HostDisplay.cpp -------------------------------------------------------------------------------- /pcsx2/HostDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HostDisplay.h -------------------------------------------------------------------------------- /pcsx2/HostSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HostSettings.cpp -------------------------------------------------------------------------------- /pcsx2/HostSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HostSettings.h -------------------------------------------------------------------------------- /pcsx2/Hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Hw.cpp -------------------------------------------------------------------------------- /pcsx2/Hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Hw.h -------------------------------------------------------------------------------- /pcsx2/HwRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HwRead.cpp -------------------------------------------------------------------------------- /pcsx2/HwWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/HwWrite.cpp -------------------------------------------------------------------------------- /pcsx2/IPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPC.cpp -------------------------------------------------------------------------------- /pcsx2/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPC.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPU.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPU.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_Fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPU_Fifo.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_Fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPU_Fifo.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPUdma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPUdma.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPUdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IPU/IPUdma.h -------------------------------------------------------------------------------- /pcsx2/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Interpreter.cpp -------------------------------------------------------------------------------- /pcsx2/IopBios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopBios.cpp -------------------------------------------------------------------------------- /pcsx2/IopBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopBios.h -------------------------------------------------------------------------------- /pcsx2/IopCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopCommon.h -------------------------------------------------------------------------------- /pcsx2/IopCounters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopCounters.cpp -------------------------------------------------------------------------------- /pcsx2/IopCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopCounters.h -------------------------------------------------------------------------------- /pcsx2/IopDma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopDma.cpp -------------------------------------------------------------------------------- /pcsx2/IopDma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopDma.h -------------------------------------------------------------------------------- /pcsx2/IopGte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopGte.cpp -------------------------------------------------------------------------------- /pcsx2/IopGte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopGte.h -------------------------------------------------------------------------------- /pcsx2/IopHw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopHw.cpp -------------------------------------------------------------------------------- /pcsx2/IopHw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopHw.h -------------------------------------------------------------------------------- /pcsx2/IopIrq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopIrq.cpp -------------------------------------------------------------------------------- /pcsx2/IopMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopMem.cpp -------------------------------------------------------------------------------- /pcsx2/IopMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopMem.h -------------------------------------------------------------------------------- /pcsx2/IopModuleNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopModuleNames.cpp -------------------------------------------------------------------------------- /pcsx2/IopSio2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopSio2.cpp -------------------------------------------------------------------------------- /pcsx2/IopSio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/IopSio2.h -------------------------------------------------------------------------------- /pcsx2/Linux/LnxKeyCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Linux/LnxKeyCodes.cpp -------------------------------------------------------------------------------- /pcsx2/MMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MMI.cpp -------------------------------------------------------------------------------- /pcsx2/MTGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MTGS.cpp -------------------------------------------------------------------------------- /pcsx2/MTVU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MTVU.cpp -------------------------------------------------------------------------------- /pcsx2/MTVU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MTVU.h -------------------------------------------------------------------------------- /pcsx2/Mdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Mdec.cpp -------------------------------------------------------------------------------- /pcsx2/Mdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Mdec.h -------------------------------------------------------------------------------- /pcsx2/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Memory.cpp -------------------------------------------------------------------------------- /pcsx2/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Memory.h -------------------------------------------------------------------------------- /pcsx2/MemoryCardFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MemoryCardFile.cpp -------------------------------------------------------------------------------- /pcsx2/MemoryCardFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MemoryCardFile.h -------------------------------------------------------------------------------- /pcsx2/MemoryCardFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MemoryCardFolder.cpp -------------------------------------------------------------------------------- /pcsx2/MemoryCardFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MemoryCardFolder.h -------------------------------------------------------------------------------- /pcsx2/MemoryTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/MemoryTypes.h -------------------------------------------------------------------------------- /pcsx2/OutputIsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/OutputIsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/Config.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/Device.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/Device.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/Global.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/KeyStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/KeyStatus.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/KeyStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/KeyStatus.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/PAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/PAD.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/PAD.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/SDLJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/SDLJoystick.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Host/bitwise.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/Config.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/Config.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/Device.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/Device.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/Global.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/PAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/PAD.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/PAD.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/bitwise.h -------------------------------------------------------------------------------- /pcsx2/PAD/Linux/linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Linux/linux.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Windows/PAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Windows/PAD.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Windows/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Windows/PAD.h -------------------------------------------------------------------------------- /pcsx2/PAD/Windows/PAD.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Windows/PAD.rc -------------------------------------------------------------------------------- /pcsx2/PAD/Windows/VKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Windows/VKey.h -------------------------------------------------------------------------------- /pcsx2/PAD/Windows/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PAD/Windows/usb.h -------------------------------------------------------------------------------- /pcsx2/PCSX2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PCSX2.rc -------------------------------------------------------------------------------- /pcsx2/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Patch.cpp -------------------------------------------------------------------------------- /pcsx2/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Patch.h -------------------------------------------------------------------------------- /pcsx2/Patch_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Patch_Memory.cpp -------------------------------------------------------------------------------- /pcsx2/PathDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PathDefs.h -------------------------------------------------------------------------------- /pcsx2/Pcsx2Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Pcsx2Config.cpp -------------------------------------------------------------------------------- /pcsx2/PrecompiledHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/PrecompiledHeader.h -------------------------------------------------------------------------------- /pcsx2/R3000A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R3000A.cpp -------------------------------------------------------------------------------- /pcsx2/R3000A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R3000A.h -------------------------------------------------------------------------------- /pcsx2/R5900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R5900.cpp -------------------------------------------------------------------------------- /pcsx2/R5900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R5900.h -------------------------------------------------------------------------------- /pcsx2/R5900Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R5900Exceptions.h -------------------------------------------------------------------------------- /pcsx2/R5900OpcodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R5900OpcodeImpl.cpp -------------------------------------------------------------------------------- /pcsx2/R5900OpcodeTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/R5900OpcodeTables.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2.txt -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dbgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2_dbgp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2_dcmp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_drfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2_drfp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_ttyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/deci2_ttyp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/iloadp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/RDebug/iloadp.txt -------------------------------------------------------------------------------- /pcsx2/Recording/PadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Recording/PadData.h -------------------------------------------------------------------------------- /pcsx2/Recording/VirtualPad/img/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | -------------------------------------------------------------------------------- /pcsx2/SPR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPR.cpp -------------------------------------------------------------------------------- /pcsx2/SPR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPR.h -------------------------------------------------------------------------------- /pcsx2/SPU2/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/ADSR.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Config.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Debug.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Debug.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Dma.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Dma.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Global.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Host/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Host/Config.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Host/Dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Host/Dialogs.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Linux/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Linux/Config.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Mixer.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Mixer.h -------------------------------------------------------------------------------- /pcsx2/SPU2/ReadInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/ReadInput.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/RegLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/RegLog.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/RegTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/RegTable.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Reverb.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/SndOut.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/SndOut.h -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/SndOut_SDL.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/WavFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/WavFile.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/WavFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/WavFile.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Windows/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/Windows/dsp.h -------------------------------------------------------------------------------- /pcsx2/SPU2/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/defs.h -------------------------------------------------------------------------------- /pcsx2/SPU2/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/regs.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/spdif.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/spu2.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/spu2.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2freeze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/spu2freeze.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/spu2sys.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/wx/wxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SPU2/wx/wxConfig.h -------------------------------------------------------------------------------- /pcsx2/SaveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SaveState.cpp -------------------------------------------------------------------------------- /pcsx2/SaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SaveState.h -------------------------------------------------------------------------------- /pcsx2/Sif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sif.cpp -------------------------------------------------------------------------------- /pcsx2/Sif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sif.h -------------------------------------------------------------------------------- /pcsx2/Sif0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sif0.cpp -------------------------------------------------------------------------------- /pcsx2/Sif1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sif1.cpp -------------------------------------------------------------------------------- /pcsx2/Sifcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sifcmd.h -------------------------------------------------------------------------------- /pcsx2/Sio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sio.cpp -------------------------------------------------------------------------------- /pcsx2/Sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Sio.h -------------------------------------------------------------------------------- /pcsx2/SourceLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SourceLog.cpp -------------------------------------------------------------------------------- /pcsx2/SysForwardDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/SysForwardDefs.h -------------------------------------------------------------------------------- /pcsx2/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/System.cpp -------------------------------------------------------------------------------- /pcsx2/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/System.h -------------------------------------------------------------------------------- /pcsx2/System/RecTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/System/RecTypes.h -------------------------------------------------------------------------------- /pcsx2/System/SysThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/System/SysThreads.h -------------------------------------------------------------------------------- /pcsx2/USB/USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/USB.cpp -------------------------------------------------------------------------------- /pcsx2/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/USB.h -------------------------------------------------------------------------------- /pcsx2/USB/USBNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/USBNull.cpp -------------------------------------------------------------------------------- /pcsx2/USB/Win32/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/Win32/guid.cpp -------------------------------------------------------------------------------- /pcsx2/USB/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/configuration.h -------------------------------------------------------------------------------- /pcsx2/USB/device_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/device_init.cpp -------------------------------------------------------------------------------- /pcsx2/USB/deviceproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/deviceproxy.cpp -------------------------------------------------------------------------------- /pcsx2/USB/deviceproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/deviceproxy.h -------------------------------------------------------------------------------- /pcsx2/USB/gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/gtk.h -------------------------------------------------------------------------------- /pcsx2/USB/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/helpers.h -------------------------------------------------------------------------------- /pcsx2/USB/icon_buzz_24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/icon_buzz_24.h -------------------------------------------------------------------------------- /pcsx2/USB/linux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/linux/config.h -------------------------------------------------------------------------------- /pcsx2/USB/linux/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/linux/ini.c -------------------------------------------------------------------------------- /pcsx2/USB/linux/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/linux/ini.h -------------------------------------------------------------------------------- /pcsx2/USB/linux/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/linux/util.cpp -------------------------------------------------------------------------------- /pcsx2/USB/linux/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/linux/util.h -------------------------------------------------------------------------------- /pcsx2/USB/platcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/platcompat.h -------------------------------------------------------------------------------- /pcsx2/USB/proxybase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/proxybase.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/desc.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/glib.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/hid.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/iov.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/qusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/qusb.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/vl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/vl.cpp -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/vl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/qemu-usb/vl.h -------------------------------------------------------------------------------- /pcsx2/USB/shared/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/shared/hidapi.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-hid/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/usb-hid/noop.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-mic/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/usb-mic/audio.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-pad/dx/dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/USB/usb-pad/dx/dx.h -------------------------------------------------------------------------------- /pcsx2/VMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VMManager.h -------------------------------------------------------------------------------- /pcsx2/VU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU.h -------------------------------------------------------------------------------- /pcsx2/VU0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU0.cpp -------------------------------------------------------------------------------- /pcsx2/VU0micro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU0micro.cpp -------------------------------------------------------------------------------- /pcsx2/VU0microInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU0microInterp.cpp -------------------------------------------------------------------------------- /pcsx2/VU1micro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU1micro.cpp -------------------------------------------------------------------------------- /pcsx2/VU1microInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VU1microInterp.cpp -------------------------------------------------------------------------------- /pcsx2/VUflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUflags.cpp -------------------------------------------------------------------------------- /pcsx2/VUflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUflags.h -------------------------------------------------------------------------------- /pcsx2/VUmicro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUmicro.cpp -------------------------------------------------------------------------------- /pcsx2/VUmicro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUmicro.h -------------------------------------------------------------------------------- /pcsx2/VUmicroMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUmicroMem.cpp -------------------------------------------------------------------------------- /pcsx2/VUops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUops.cpp -------------------------------------------------------------------------------- /pcsx2/VUops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/VUops.h -------------------------------------------------------------------------------- /pcsx2/Vif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif.cpp -------------------------------------------------------------------------------- /pcsx2/Vif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif.h -------------------------------------------------------------------------------- /pcsx2/Vif0_Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif0_Dma.cpp -------------------------------------------------------------------------------- /pcsx2/Vif1_Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif1_Dma.cpp -------------------------------------------------------------------------------- /pcsx2/Vif1_MFIFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif1_MFIFO.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif_Codes.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif_Dma.h -------------------------------------------------------------------------------- /pcsx2/Vif_Transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif_Transfer.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif_Unpack.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/Vif_Unpack.h -------------------------------------------------------------------------------- /pcsx2/gui/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/gui/i18n.h -------------------------------------------------------------------------------- /pcsx2/libAetherSX2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/libAetherSX2.a -------------------------------------------------------------------------------- /pcsx2/pcsx2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/pcsx2.vcxproj -------------------------------------------------------------------------------- /pcsx2/pcsx2core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/pcsx2core.vcxproj -------------------------------------------------------------------------------- /pcsx2/ps2/BiosTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/BiosTools.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/BiosTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/BiosTools.h -------------------------------------------------------------------------------- /pcsx2/ps2/HwInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/HwInternal.h -------------------------------------------------------------------------------- /pcsx2/ps2/Iop/PsxBios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/Iop/PsxBios.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/LegacyDmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/LegacyDmac.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/pgif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/pgif.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/pgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/ps2/pgif.h -------------------------------------------------------------------------------- /pcsx2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/resource.h -------------------------------------------------------------------------------- /pcsx2/sif2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/sif2.cpp -------------------------------------------------------------------------------- /pcsx2/sio_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/sio_internal.h -------------------------------------------------------------------------------- /pcsx2/vtlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/vtlb.cpp -------------------------------------------------------------------------------- /pcsx2/vtlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/vtlb.h -------------------------------------------------------------------------------- /pcsx2/windows/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/windows/AppIcon.ico -------------------------------------------------------------------------------- /pcsx2/windows/Optimus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/windows/Optimus.cpp -------------------------------------------------------------------------------- /pcsx2/windows/Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/windows/Win32.h -------------------------------------------------------------------------------- /pcsx2/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/windows/resource.h -------------------------------------------------------------------------------- /pcsx2/x86/BaseblockEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/BaseblockEx.cpp -------------------------------------------------------------------------------- /pcsx2/x86/BaseblockEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/BaseblockEx.h -------------------------------------------------------------------------------- /pcsx2/x86/iCOP0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iCOP0.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iCOP0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iCOP0.h -------------------------------------------------------------------------------- /pcsx2/x86/iCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iCore.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iCore.h -------------------------------------------------------------------------------- /pcsx2/x86/iFPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iFPU.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iFPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iFPU.h -------------------------------------------------------------------------------- /pcsx2/x86/iFPUd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iFPUd.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iMMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iMMI.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iMMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iMMI.h -------------------------------------------------------------------------------- /pcsx2/x86/iMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iMisc.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR3000A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR3000A.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR3000A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR3000A.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Arit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Arit.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900AritImm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900AritImm.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Branch.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Jump.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Misc.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Move.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900MultDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900MultDiv.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/iR5900Shift.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/microVU.cpp -------------------------------------------------------------------------------- /pcsx2/x86/microVU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/microVU.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/microVU_IR.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Log.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/microVU_Log.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/microVU_Misc.h -------------------------------------------------------------------------------- /pcsx2/x86/newVif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/pcsx2/x86/newVif.h -------------------------------------------------------------------------------- /tests/run_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/tests/run_test.pl -------------------------------------------------------------------------------- /toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/toolchain.cmake -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bin2app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/tools/bin2app.sh -------------------------------------------------------------------------------- /tools/bin2cpp/bin2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPurple666/AetherSX2/HEAD/tools/bin2cpp/bin2cpp.cpp --------------------------------------------------------------------------------