aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/self_controller.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-22 12:40:50 -0500
committerLiam <byteslice@airmail.cc>2024-02-09 09:20:53 -0500
commit962c82540c304f909957776908aabcd261f2a7ba (patch)
tree707ab34565e8309b5ede21acebf36975da7718e7 /src/core/hle/service/am/self_controller.cpp
parent06fd7f2012a6087c4b1fc76842faad44cd097bde (diff)
nvnflinger/gpu: implement blending
Diffstat (limited to 'src/core/hle/service/am/self_controller.cpp')
-rw-r--r--src/core/hle/service/am/self_controller.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/self_controller.cpp b/src/core/hle/service/am/self_controller.cpp
index 0289f5cf1..b92663b2b 100644
--- a/src/core/hle/service/am/self_controller.cpp
+++ b/src/core/hle/service/am/self_controller.cpp
@@ -288,7 +288,8 @@ void ISelfController::GetSystemSharedBufferHandle(HLERequestContext& ctx) {
}
Result ISelfController::EnsureBufferSharingEnabled(Kernel::KProcess* process) {
- if (applet->system_buffer_manager.Initialize(&nvnflinger, process, applet->applet_id)) {
+ if (applet->system_buffer_manager.Initialize(&nvnflinger, process, applet->applet_id,
+ applet->library_applet_mode)) {
return ResultSuccess;
}