diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-24 19:52:32 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-25 01:17:36 +0100 |
commit | 39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0 (patch) | |
tree | 2e9ebbbc43d2886279c106ac7995123c45186633 /src/core/hle/service/vi | |
parent | Merge pull request #9842 from german77/proper_real_mouse (diff) | |
download | yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.gz yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.bz2 yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.lz yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.xz yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.tar.zst yuzu-39ca7b2928ba130446ba0fd9f0d07eb25baeb4a0.zip |
Diffstat (limited to 'src/core/hle/service/vi')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 5 | ||||
-rw-r--r-- | src/core/hle/service/vi/vi_m.cpp | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index 2fb631183..0915785d2 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -249,6 +249,9 @@ public: {2053, nullptr, "DestroyIndirectProducerEndPoint"}, {2054, nullptr, "CreateIndirectConsumerEndPoint"}, {2055, nullptr, "DestroyIndirectConsumerEndPoint"}, + {2060, nullptr, "CreateWatermarkCompositor"}, + {2062, nullptr, "SetWatermarkText"}, + {2063, nullptr, "SetWatermarkLayerStacks"}, {2300, nullptr, "AcquireLayerTexturePresentingEvent"}, {2301, nullptr, "ReleaseLayerTexturePresentingEvent"}, {2302, nullptr, "GetDisplayHotplugEvent"}, @@ -279,6 +282,8 @@ public: {6011, nullptr, "EnableLayerAutoClearTransitionBuffer"}, {6012, nullptr, "DisableLayerAutoClearTransitionBuffer"}, {6013, nullptr, "SetLayerOpacity"}, + {6014, nullptr, "AttachLayerWatermarkCompositor"}, + {6015, nullptr, "DetachLayerWatermarkCompositor"}, {7000, nullptr, "SetContentVisibility"}, {8000, nullptr, "SetConductorLayer"}, {8001, nullptr, "SetTimestampTracking"}, diff --git a/src/core/hle/service/vi/vi_m.cpp b/src/core/hle/service/vi/vi_m.cpp index 1ab7fe4ab..7ca44354b 100644 --- a/src/core/hle/service/vi/vi_m.cpp +++ b/src/core/hle/service/vi/vi_m.cpp @@ -14,6 +14,10 @@ VI_M::VI_M(Core::System& system_, NVFlinger::NVFlinger& nv_flinger_, static const FunctionInfo functions[] = { {2, &VI_M::GetDisplayService, "GetDisplayService"}, {3, nullptr, "GetDisplayServiceWithProxyNameExchange"}, + {100, nullptr, "PrepareFatal"}, + {101, nullptr, "ShowFatal"}, + {102, nullptr, "DrawFatalRectangle"}, + {103, nullptr, "DrawFatalText32"}, }; RegisterHandlers(functions); } |