2018-01-13 16:22:39 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2018-01-07 21:27:58 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-22 11:54:58 -05:00
|
|
|
#include "core/hle/service/nvflinger/nvflinger.h"
|
2018-01-07 21:27:58 -05:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-01-08 21:58:59 -05:00
|
|
|
namespace CoreTiming {
|
|
|
|
struct EventType;
|
|
|
|
}
|
|
|
|
|
2018-01-07 21:27:58 -05:00
|
|
|
namespace Service {
|
|
|
|
namespace VI {
|
|
|
|
|
2018-04-02 23:28:45 -04:00
|
|
|
enum class DisplayResolution : u32 {
|
|
|
|
DockedWidth = 1920,
|
|
|
|
DockedHeight = 1080,
|
|
|
|
UndockedWidth = 1280,
|
|
|
|
UndockedHeight = 720,
|
|
|
|
};
|
|
|
|
|
2018-03-21 06:09:40 -04:00
|
|
|
class Module final {
|
2018-01-07 21:27:58 -05:00
|
|
|
public:
|
2018-03-21 06:09:40 -04: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-07 21:27:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all VI services with the specified service manager.
|
2018-01-22 13:40:02 -05:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
|
2018-01-07 21:27:58 -05:00
|
|
|
|
|
|
|
} // namespace VI
|
|
|
|
} // namespace Service
|