diff options
| author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2021-09-08 00:34:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-08 00:34:36 -0400 |
| commit | eb1ba45c3982473f2049df7eebb12dcf551ed616 (patch) | |
| tree | 20d566260fe8c53e0f631c3c1076420ea4526416 /src/core/hle/service/nvflinger/nvflinger.cpp | |
| parent | ab73787d8f65d7861de59456c682c7726877f5d8 (diff) | |
| parent | e05bfd2f542ae32aec87c24b9b59684b4ecf5f45 (diff) | |
Merge pull request #6971 from bunnei/buffer-queue-kevent
core: hle: service: buffer_queue: Improve management of KEvent.
Diffstat (limited to 'src/core/hle/service/nvflinger/nvflinger.cpp')
| -rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index 32d4e360a..00bff8caf 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -147,7 +147,7 @@ std::optional<u64> NVFlinger::CreateLayer(u64 display_id) { void NVFlinger::CreateLayerAtId(VI::Display& display, u64 layer_id) { const u32 buffer_queue_id = next_buffer_queue_id++; buffer_queues.emplace_back( - std::make_unique<BufferQueue>(system.Kernel(), buffer_queue_id, layer_id)); + std::make_unique<BufferQueue>(system.Kernel(), buffer_queue_id, layer_id, service_context)); display.CreateLayer(layer_id, *buffer_queues.back()); } |
