2018-01-13 22:22:39 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2018-01-08 03:27:58 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-22 17:54:58 +01:00
|
|
|
#include "core/hle/service/nvflinger/nvflinger.h"
|
2018-01-08 03:27:58 +01:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-01-09 03:58:59 +01:00
|
|
|
namespace CoreTiming {
|
|
|
|
struct EventType;
|
|
|
|
}
|
|
|
|
|
2018-01-08 03:27:58 +01:00
|
|
|
namespace Service {
|
|
|
|
namespace VI {
|
|
|
|
|
2018-03-21 11:09:40 +01:00
|
|
|
class Module final {
|
2018-01-08 03:27:58 +01:00
|
|
|
public:
|
2018-03-21 11:09:40 +01: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 03:27:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all VI services with the specified service manager.
|
2018-01-22 19:40:02 +01:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
|
2018-01-08 03:27:58 +01:00
|
|
|
|
|
|
|
} // namespace VI
|
|
|
|
} // namespace Service
|