diff options
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/core.h b/src/core/core.h index 473204db7..ba5add0dc 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -116,7 +116,6 @@ class CpuManager; | |||
| 116 | class Debugger; | 116 | class Debugger; |
| 117 | class DeviceMemory; | 117 | class DeviceMemory; |
| 118 | class ExclusiveMonitor; | 118 | class ExclusiveMonitor; |
| 119 | class GPUDirtyMemoryManager; | ||
| 120 | class PerfStats; | 119 | class PerfStats; |
| 121 | class Reporter; | 120 | class Reporter; |
| 122 | class SpeedLimiter; | 121 | class SpeedLimiter; |
| @@ -225,12 +224,6 @@ public: | |||
| 225 | /// Prepare the core emulation for a reschedule | 224 | /// Prepare the core emulation for a reschedule |
| 226 | void PrepareReschedule(u32 core_index); | 225 | void PrepareReschedule(u32 core_index); |
| 227 | 226 | ||
| 228 | /// Provides a reference to the gou dirty memory manager. | ||
| 229 | [[nodiscard]] Core::GPUDirtyMemoryManager& CurrentGPUDirtyMemoryManager(); | ||
| 230 | |||
| 231 | /// Provides a constant reference to the current gou dirty memory manager. | ||
| 232 | [[nodiscard]] const Core::GPUDirtyMemoryManager& CurrentGPUDirtyMemoryManager() const; | ||
| 233 | |||
| 234 | void GatherGPUDirtyMemory(std::function<void(VAddr, size_t)>& callback); | 227 | void GatherGPUDirtyMemory(std::function<void(VAddr, size_t)>& callback); |
| 235 | 228 | ||
| 236 | [[nodiscard]] size_t GetCurrentHostThreadID() const; | 229 | [[nodiscard]] size_t GetCurrentHostThreadID() const; |
| @@ -250,12 +243,6 @@ public: | |||
| 250 | /// Gets a const reference to the underlying CPU manager | 243 | /// Gets a const reference to the underlying CPU manager |
| 251 | [[nodiscard]] const CpuManager& GetCpuManager() const; | 244 | [[nodiscard]] const CpuManager& GetCpuManager() const; |
| 252 | 245 | ||
| 253 | /// Gets a reference to the exclusive monitor | ||
| 254 | [[nodiscard]] ExclusiveMonitor& Monitor(); | ||
| 255 | |||
| 256 | /// Gets a constant reference to the exclusive monitor | ||
| 257 | [[nodiscard]] const ExclusiveMonitor& Monitor() const; | ||
| 258 | |||
| 259 | /// Gets a mutable reference to the system memory instance. | 246 | /// Gets a mutable reference to the system memory instance. |
| 260 | [[nodiscard]] Core::Memory::Memory& ApplicationMemory(); | 247 | [[nodiscard]] Core::Memory::Memory& ApplicationMemory(); |
| 261 | 248 | ||