From 812f23d05c77fb10407546c3e7a95447fcbea395 Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 14 Feb 2024 23:44:05 -0500 Subject: vi: manage resources independently of nvnflinger and refactor --- src/core/hle/service/vi/system_root_service.h | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'src/core/hle/service/vi/system_root_service.h') diff --git a/src/core/hle/service/vi/system_root_service.h b/src/core/hle/service/vi/system_root_service.h index 16c997422..9d5aa53d3 100644 --- a/src/core/hle/service/vi/system_root_service.h +++ b/src/core/hle/service/vi/system_root_service.h @@ -10,21 +10,15 @@ namespace Core { class System; } -namespace Service::Nvnflinger { -class IHOSBinderDriver; -} // namespace Service::Nvnflinger - namespace Service::VI { -class FbshareBufferManager; +class Container; class IApplicationDisplayService; enum class Policy : u32; class ISystemRootService final : public ServiceFramework { public: - explicit ISystemRootService(Core::System& system_, - std::shared_ptr binder_service, - std::shared_ptr shared_buffer_manager); + explicit ISystemRootService(Core::System& system_, std::shared_ptr container); ~ISystemRootService() override; private: @@ -32,8 +26,7 @@ private: Out> out_application_display_service, Policy policy); - const std::shared_ptr m_binder_service; - const std::shared_ptr m_shared_buffer_manager; + const std::shared_ptr m_container; }; } // namespace Service::VI -- cgit v1.2.3