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-08 23:18:50 +00:00
|
|
|
#include <memory>
|
2018-01-09 01:28:06 +00:00
|
|
|
#include <boost/optional.hpp>
|
2018-01-08 02:27:58 +00:00
|
|
|
#include "core/hle/kernel/event.h"
|
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 {
|
|
|
|
|
|
|
|
class IApplicationDisplayService final : public ServiceFramework<IApplicationDisplayService> {
|
|
|
|
public:
|
2018-01-22 16:54:58 +00:00
|
|
|
IApplicationDisplayService(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
|
2018-01-08 02:27:58 +00:00
|
|
|
~IApplicationDisplayService() = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetRelayService(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetSystemDisplayService(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetManagerDisplayService(Kernel::HLERequestContext& ctx);
|
2018-01-15 22:20:08 +00:00
|
|
|
void GetIndirectDisplayTransactionService(Kernel::HLERequestContext& ctx);
|
2018-01-08 02:27:58 +00:00
|
|
|
void OpenDisplay(Kernel::HLERequestContext& ctx);
|
2018-01-15 22:20:08 +00:00
|
|
|
void CloseDisplay(Kernel::HLERequestContext& ctx);
|
2018-01-08 02:27:58 +00:00
|
|
|
void SetLayerScalingMode(Kernel::HLERequestContext& ctx);
|
|
|
|
void OpenLayer(Kernel::HLERequestContext& ctx);
|
2018-01-15 22:20:08 +00:00
|
|
|
void CreateStrayLayer(Kernel::HLERequestContext& ctx);
|
|
|
|
void DestroyStrayLayer(Kernel::HLERequestContext& ctx);
|
2018-01-08 02:27:58 +00:00
|
|
|
void GetDisplayVsyncEvent(Kernel::HLERequestContext& ctx);
|
|
|
|
|
2018-01-22 16:54:58 +00:00
|
|
|
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
|