diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-01-03 03:09:31 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-01-03 03:09:44 +0100 |
commit | 0d6d8129c46f96b2e9f05c592e0d9a6bc3769619 (patch) | |
tree | 387e5129419845948ddfc3884be8acd69626f324 /src/core | |
parent | Merge pull request #3243 from ReinUsesLisp/topologies (diff) | |
download | yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar.gz yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar.bz2 yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar.lz yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar.xz yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.tar.zst yuzu-0d6d8129c46f96b2e9f05c592e0d9a6bc3769619.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.cpp | 10 | ||||
-rw-r--r-- | src/core/core.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index c45fb960c..d697b80ef 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -46,7 +46,6 @@ #include "core/settings.h" #include "core/telemetry_session.h" #include "core/tools/freezer.h" -#include "video_core/debug_utils/debug_utils.h" #include "video_core/renderer_base.h" #include "video_core/video_core.h" @@ -341,7 +340,6 @@ struct System::Impl { std::unique_ptr<Loader::AppLoader> app_loader; std::unique_ptr<VideoCore::RendererBase> renderer; std::unique_ptr<Tegra::GPU> gpu_core; - std::shared_ptr<Tegra::DebugContext> debug_context; std::unique_ptr<Hardware::InterruptManager> interrupt_manager; Memory::Memory memory; CpuCoreManager cpu_core_manager; @@ -580,14 +578,6 @@ Loader::AppLoader& System::GetAppLoader() const { return *impl->app_loader; } -void System::SetGPUDebugContext(std::shared_ptr<Tegra::DebugContext> context) { - impl->debug_context = std::move(context); -} - -Tegra::DebugContext* System::GetGPUDebugContext() const { - return impl->debug_context.get(); -} - void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) { impl->virtual_filesystem = std::move(vfs); } diff --git a/src/core/core.h b/src/core/core.h index 91184e433..e240c5c58 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -307,10 +307,6 @@ public: Service::SM::ServiceManager& ServiceManager(); const Service::SM::ServiceManager& ServiceManager() const; - void SetGPUDebugContext(std::shared_ptr<Tegra::DebugContext> context); - - Tegra::DebugContext* GetGPUDebugContext() const; - void SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs); std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; |