summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-02-04 23:00:35 -0500
committerGravatar bunnei2018-02-04 23:00:35 -0500
commitfe9905259984f1fd5a1cf771a2d90248601e5baf (patch)
tree72989820471195c2baf050bd5085746de7b2d0d7 /src
parentlogger: Add Time service logging category. (diff)
downloadyuzu-fe9905259984f1fd5a1cf771a2d90248601e5baf.tar.gz
yuzu-fe9905259984f1fd5a1cf771a2d90248601e5baf.tar.xz
yuzu-fe9905259984f1fd5a1cf771a2d90248601e5baf.zip
nvflinger: Signal BufferQueue native handle event.
- This gets BOTW booting.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.cpp b/src/core/hle/service/nvflinger/buffer_queue.cpp
index 705bdbe5d..c7206a683 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue.cpp
@@ -14,6 +14,7 @@ namespace NVFlinger {
14 14
15BufferQueue::BufferQueue(u32 id, u64 layer_id) : id(id), layer_id(layer_id) { 15BufferQueue::BufferQueue(u32 id, u64 layer_id) : id(id), layer_id(layer_id) {
16 native_handle = Kernel::Event::Create(Kernel::ResetType::OneShot, "BufferQueue NativeHandle"); 16 native_handle = Kernel::Event::Create(Kernel::ResetType::OneShot, "BufferQueue NativeHandle");
17 native_handle->Signal();
17} 18}
18 19
19void BufferQueue::SetPreallocatedBuffer(u32 slot, IGBPBuffer& igbp_buffer) { 20void BufferQueue::SetPreallocatedBuffer(u32 slot, IGBPBuffer& igbp_buffer) {