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
|
|
|
|
|
2019-02-26 22:20:02 +00:00
|
|
|
#include <memory>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
class HLERequestContext;
|
|
|
|
}
|
2018-01-08 02:27:58 +00:00
|
|
|
|
2018-09-13 20:43:31 +00:00
|
|
|
namespace Service::NVFlinger {
|
|
|
|
class NVFlinger;
|
2018-01-09 02:58:59 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 22:20:02 +00:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::VI {
|
2018-01-08 02:27:58 +00:00
|
|
|
|
2018-04-03 03:28:45 +00:00
|
|
|
enum class DisplayResolution : u32 {
|
|
|
|
DockedWidth = 1920,
|
|
|
|
DockedHeight = 1080,
|
|
|
|
UndockedWidth = 1280,
|
|
|
|
UndockedHeight = 720,
|
|
|
|
};
|
|
|
|
|
2019-02-26 22:49:32 +00:00
|
|
|
/// Permission level for a particular VI service instance
|
|
|
|
enum class Permission {
|
|
|
|
User,
|
|
|
|
System,
|
|
|
|
Manager,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// A policy type that may be requested via GetDisplayService and
|
|
|
|
/// GetDisplayServiceWithProxyNameExchange
|
|
|
|
enum class Policy {
|
|
|
|
User,
|
|
|
|
Compositor,
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
void GetDisplayServiceImpl(Kernel::HLERequestContext& ctx,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger, Permission permission);
|
|
|
|
} // namespace detail
|
|
|
|
|
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
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::VI
|