mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-06 07:17:53 +00:00
1a954b2a59
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
42 lines
1 KiB
C++
42 lines
1 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::APM {
|
|
|
|
class Controller;
|
|
class Module;
|
|
|
|
class APM final : public ServiceFramework<APM> {
|
|
public:
|
|
explicit APM(Core::System& system_, std::shared_ptr<Module> apm_, Controller& controller_,
|
|
const char* name);
|
|
~APM() override;
|
|
|
|
private:
|
|
void OpenSession(Kernel::HLERequestContext& ctx);
|
|
void GetPerformanceMode(Kernel::HLERequestContext& ctx);
|
|
|
|
std::shared_ptr<Module> apm;
|
|
Controller& controller;
|
|
};
|
|
|
|
class APM_Sys final : public ServiceFramework<APM_Sys> {
|
|
public:
|
|
explicit APM_Sys(Core::System& system_, Controller& controller);
|
|
~APM_Sys() override;
|
|
|
|
void SetCpuBoostMode(Kernel::HLERequestContext& ctx);
|
|
|
|
private:
|
|
void GetPerformanceEvent(Kernel::HLERequestContext& ctx);
|
|
void GetCurrentPerformanceConfiguration(Kernel::HLERequestContext& ctx);
|
|
|
|
Controller& controller;
|
|
};
|
|
|
|
} // namespace Service::APM
|