summaryrefslogtreecommitdiffstats
path: root/src/core/cpu_manager.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-04-03 17:58:43 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-27 17:36:08 +0200
commitad92865497f83fe4c19cd9ab78cce9da1a8c3a6c (patch)
treef24dd8b60b23abe73931a934af33d2ed82aa7975 /src/core/cpu_manager.h
parentCoreTiming/CycleTimer: Correct Idling. (diff)
downloadyuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.gz
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.bz2
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.lz
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.xz
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.zst
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.zip
Diffstat (limited to 'src/core/cpu_manager.h')
-rw-r--r--src/core/cpu_manager.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h
index ae55d6427..35929ed94 100644
--- a/src/core/cpu_manager.h
+++ b/src/core/cpu_manager.h
@@ -16,10 +16,6 @@ class Event;
class Fiber;
} // namespace Common
-namespace Core::Frontend {
-class EmuWindow;
-} // namespace Core::Frontend
-
namespace Core {
class System;
@@ -61,8 +57,6 @@ public:
return current_core.load();
}
- void SetRenderWindow(Core::Frontend::EmuWindow& render_window);
-
private:
static void GuestThreadFunction(void* cpu_manager);
static void GuestRewindFunction(void* cpu_manager);
@@ -106,7 +100,6 @@ private:
std::size_t preemption_count{};
std::size_t idle_count{};
static constexpr std::size_t max_cycle_runs = 5;
- Core::Frontend::EmuWindow* render_window;
System& system;
};