2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-07 21:27:58 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-26 17:20:02 -05:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2020-11-26 15:19:08 -05:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2019-02-26 17:20:02 -05:00
|
|
|
namespace Kernel {
|
|
|
|
class HLERequestContext;
|
|
|
|
}
|
2018-01-07 21:27:58 -05:00
|
|
|
|
2018-09-13 16:43:31 -04:00
|
|
|
namespace Service::NVFlinger {
|
2021-11-11 22:15:51 -05:00
|
|
|
class HosBinderDriverServer;
|
2018-09-13 16:43:31 -04:00
|
|
|
class NVFlinger;
|
2021-11-11 22:15:51 -05:00
|
|
|
} // namespace Service::NVFlinger
|
2018-01-08 21:58:59 -05:00
|
|
|
|
2019-02-26 17:20:02 -05:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::VI {
|
2018-01-07 21:27:58 -05:00
|
|
|
|
2018-04-02 23:28:45 -04:00
|
|
|
enum class DisplayResolution : u32 {
|
|
|
|
DockedWidth = 1920,
|
|
|
|
DockedHeight = 1080,
|
|
|
|
UndockedWidth = 1280,
|
|
|
|
UndockedHeight = 720,
|
|
|
|
};
|
|
|
|
|
2019-02-26 17:49:32 -05: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 {
|
2020-11-26 15:19:08 -05:00
|
|
|
void GetDisplayServiceImpl(Kernel::HLERequestContext& ctx, Core::System& system,
|
2021-11-11 22:15:51 -05:00
|
|
|
NVFlinger::NVFlinger& nv_flinger,
|
|
|
|
NVFlinger::HosBinderDriverServer& hos_binder_driver_server,
|
|
|
|
Permission permission);
|
2019-02-26 17:49:32 -05:00
|
|
|
} // namespace detail
|
|
|
|
|
2018-01-07 21:27:58 -05:00
|
|
|
/// Registers all VI services with the specified service manager.
|
2020-11-26 15:19:08 -05:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system,
|
2021-11-11 22:15:51 -05:00
|
|
|
NVFlinger::NVFlinger& nv_flinger,
|
|
|
|
NVFlinger::HosBinderDriverServer& hos_binder_driver_server);
|
2018-01-07 21:27:58 -05:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::VI
|