2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2018-01-08 02:27:58 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-22 16:54:58 +00:00
|
|
|
#include "core/hle/service/nvflinger/nvflinger.h"
|
2018-01-08 02:27:58 +00:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-01-09 02:58:59 +00:00
|
|
|
namespace CoreTiming {
|
|
|
|
struct EventType;
|
|
|
|
}
|
|
|
|
|
2018-01-08 02:27:58 +00:00
|
|
|
namespace Service {
|
|
|
|
namespace VI {
|
|
|
|
|
2018-03-21 10:09:40 +00:00
|
|
|
class Module final {
|
2018-01-08 02:27:58 +00:00
|
|
|
public:
|
2018-03-21 10:09:40 +00:00
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
|
|
|
Interface(std::shared_ptr<Module> module, const char* name,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
|
|
|
|
|
|
|
|
void GetDisplayService(Kernel::HLERequestContext& ctx);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger;
|
|
|
|
};
|
2018-01-08 02:27:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all VI services with the specified service manager.
|
2018-01-22 18:40:02 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
|
2018-01-08 02:27:58 +00:00
|
|
|
|
|
|
|
} // namespace VI
|
|
|
|
} // namespace Service
|