Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1,700 additions
and 378 deletions.
- +1 −0 README.md
- +45 −1 android/app/src/main/res/xml/root_preferences.xml
- +2 −0 src/core/CMakeLists.txt
- +2 −0 src/core/core.vcxproj
- +2 −0 src/core/core.vcxproj.filters
- +88 −12 src/core/cpu_core.cpp
- +69 −8 src/core/cpu_recompiler_code_generator.cpp
- +17 −3 src/core/dma.cpp
- +9 −24 src/core/gpu.cpp
- +20 −2 src/core/gpu.h
- +51 −42 src/core/gpu_commands.cpp
- +132 −95 src/core/gpu_hw.cpp
- +10 −8 src/core/gpu_hw.h
- +1 −1 src/core/gpu_hw_d3d11.cpp
- +1 −1 src/core/gpu_hw_opengl.cpp
- +7 −6 src/core/gpu_hw_shadergen.cpp
- +1 −1 src/core/gpu_hw_vulkan.cpp
- +9 −9 src/core/gpu_sw.cpp
- +42 −3 src/core/gte.cpp
- +20 −3 src/core/host_interface.cpp
- +800 −0 src/core/pgxp.cpp
- +54 −0 src/core/pgxp.h
- +8 −0 src/core/settings.cpp
- +5 −0 src/core/settings.h
- +24 −1 src/duckstation-libretro/libretro_host_interface.cpp
- +30 −0 src/duckstation-qt/gpusettingswidget.cpp
- +1 −0 src/duckstation-qt/gpusettingswidget.h
- +214 −158 src/duckstation-qt/gpusettingswidget.ui
- +17 −0 src/duckstation-sdl/sdl_host_interface.cpp
- +18 −0 src/frontend-common/common_host_interface.cpp
Oops, something went wrong.