dolphin/Source/Core/Core
JMC47 c4b913d9da
Merge pull request #13768 from JosJuice/page-table-fastmem-2
Core: Create fastmem mappings for page address translation
2026-02-04 16:20:35 -05:00
..
Boot Remove unused imports 2026-01-25 16:12:15 +01:00
Config feat: Add an option to preserve audio pitch when emulation speed changes, integrating it into core configuration and both Qt and Android UIs. 2026-01-27 18:48:22 -05:00
ConfigLoaders Remove unused imports 2026-01-25 16:12:15 +01:00
Debugger Remove unused imports 2026-01-25 16:12:15 +01:00
DSP Remove unused imports 2026-01-25 16:12:15 +01:00
FifoPlayer Remove unused imports 2026-01-25 16:12:15 +01:00
HLE Remove unused imports 2026-01-25 16:12:15 +01:00
HW UnitTests: Add PageTableHostMappingTest 2026-02-04 21:35:22 +01:00
IOS Remove unused imports 2026-01-25 16:12:15 +01:00
PowerPC Core: Don't create page table mappings before R/C bits are set 2026-02-04 21:35:22 +01:00
AchievementManager.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
AchievementManager.h Core/AchievementManager: Refactor IsApprovedCode and users 2026-01-24 18:02:57 +01:00
ActionReplay.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
ActionReplay.h
ARDecrypt.cpp ARDecrypt: Code modernization. 2026-01-18 01:22:10 -06:00
ARDecrypt.h ARDecrypt: Code modernization. 2026-01-18 01:22:10 -06:00
BootManager.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
BootManager.h
CheatCodes.h
CheatGeneration.cpp Common: Replace Result with C++23's std::expected. 2026-01-17 16:58:45 -06:00
CheatGeneration.h Common: Replace Result with C++23's std::expected. 2026-01-17 16:58:45 -06:00
CheatSearch.cpp Common: Replace Result with C++23's std::expected. 2026-01-17 16:58:45 -06:00
CheatSearch.h Common: Replace Result with C++23's std::expected. 2026-01-17 16:58:45 -06:00
CMakeLists.txt cpp-ipc: Fix builds on non-FreeBSD BSDs 2026-01-06 21:46:33 +01:00
CommonTitles.h
ConfigManager.cpp Merge pull request #14303 from Sintendo/game-ini 2026-01-24 15:36:29 -05:00
ConfigManager.h Merge pull request #14303 from Sintendo/game-ini 2026-01-24 15:36:29 -05:00
Core.cpp Core: Make RunOnCPUThread always non-blocking. 2026-02-03 17:29:17 -06:00
Core.h Core: Make RunOnCPUThread always non-blocking. 2026-02-03 17:29:17 -06:00
CoreTiming.cpp CoreTiming: Fix percent speed display when "Rush Frame Presentation" is enabled. 2025-11-22 05:04:09 -06:00
CoreTiming.h
CPUThreadConfigCallback.cpp
CPUThreadConfigCallback.h
DolphinAnalytics.cpp c++23: Replace Common::ToUnderlying with std::to_underlying 2026-01-09 23:49:10 +01:00
DolphinAnalytics.h
DSPEmulator.cpp
DSPEmulator.h
FreeLookManager.cpp
FreeLookManager.h Remove unused imports 2026-01-25 16:12:15 +01:00
GeckoCode.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
GeckoCode.h
GeckoCodeConfig.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
GeckoCodeConfig.h
Host.h Core: Remove unused HostMessageID enum members. 2025-11-19 02:43:44 -06:00
HotkeyManager.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
HotkeyManager.h Remove unused imports 2026-01-25 16:12:15 +01:00
LibusbUtils.cpp
LibusbUtils.h
MachineContext.h
MemoryWatcher.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
MemoryWatcher.h
MemTools.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
MemTools.h
Movie.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
Movie.h Remove unused imports 2026-01-25 16:12:15 +01:00
NetPlayClient.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
NetPlayClient.h
NetPlayCommon.cpp
NetPlayCommon.h
NetPlayProto.h Remove unused imports 2026-01-25 16:12:15 +01:00
NetPlayServer.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
NetPlayServer.h Remove unused imports 2026-01-25 16:12:15 +01:00
NetworkCaptureLogger.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
NetworkCaptureLogger.h Remove unused imports 2026-01-25 16:12:15 +01:00
PatchEngine.cpp
PatchEngine.h
State.cpp Merge pull request #13768 from JosJuice/page-table-fastmem-2 2026-02-04 16:20:35 -05:00
State.h State: Simplify interthread communication and cleanups. Save/Load calls are now always non-blocking for the caller, but appropriately block the CPU thread as needed. 2026-01-19 21:56:59 -06:00
SyncIdentifier.h
SysConf.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
SysConf.h
System.cpp VideoCommon: separate the concept of a 'resource' from an 'asset'. A resource is potentially multiple assets that are chained together but represent one type of data to the rest of the system. An example is a 'material'. A 'material' is a collection of textures, a custom shader, and some metadata that all comes together to form what the concept of the material is. There will be a 'material' resource. For now, start small by introducing the interface and change our texture loading which used assets from the old resource manager, to an actual resource. 2025-11-23 11:04:24 -06:00
System.h
TimePlayed.cpp
TimePlayed.h
TitleDatabase.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
TitleDatabase.h
USBUtils.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
USBUtils.h
WC24PatchEngine.cpp
WC24PatchEngine.h
WiiRoot.cpp Remove unused imports 2026-01-25 16:12:15 +01:00
WiiRoot.h
WiiUtils.cpp c++23: Replace Common::ToUnderlying with std::to_underlying 2026-01-09 23:49:10 +01:00
WiiUtils.h Remove unused imports 2026-01-25 16:12:15 +01:00