diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-03 12:38:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-03 12:38:18 -0500 |
commit | 7e7110b3b9f466d3e3f66605d94a2fa57a7724bb (patch) | |
tree | a4333839950c9ab58b593dde77999e79121b90ac /src | |
parent | aef7a15b938f596a2ef12bc82712c7e394ce7650 (diff) | |
parent | 656e7aab2980faedc773bfd260cc703cfbd9bfa2 (diff) |
Merge pull request #226 from Subv/buffer_queue_event
Vi: Signal the BufferQueue's Native Handle right after ReleaseBuffer is called
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index a54239b0f..0d30f54dc 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -150,6 +150,9 @@ void NVFlinger::Compose() { igbp_buffer.width, igbp_buffer.height, igbp_buffer.stride, buffer->transform); buffer_queue->ReleaseBuffer(buffer->slot); + + // TODO(Subv): Figure out when we should actually signal this event. + buffer_queue->GetNativeHandle()->Signal(); } } |