summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/vi/vi.h')
-rw-r--r--src/core/hle/service/vi/vi.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.h b/src/core/hle/service/vi/vi.h
new file mode 100644
index 000000000..fbc86498f
--- /dev/null
+++ b/src/core/hle/service/vi/vi.h
@@ -0,0 +1,34 @@
+// Copyright 2018 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/kernel/event.h"
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace VI {
+
+class IApplicationDisplayService final : public ServiceFramework<IApplicationDisplayService> {
+public:
+ IApplicationDisplayService();
+ ~IApplicationDisplayService() = default;
+
+private:
+ void GetRelayService(Kernel::HLERequestContext& ctx);
+ void GetSystemDisplayService(Kernel::HLERequestContext& ctx);
+ void GetManagerDisplayService(Kernel::HLERequestContext& ctx);
+ void OpenDisplay(Kernel::HLERequestContext& ctx);
+ void SetLayerScalingMode(Kernel::HLERequestContext& ctx);
+ void OpenLayer(Kernel::HLERequestContext& ctx);
+ void GetDisplayVsyncEvent(Kernel::HLERequestContext& ctx);
+
+ Kernel::SharedPtr<Kernel::Event> vsync_event;
+};
+
+/// Registers all VI services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager);
+
+} // namespace VI
+} // namespace Service