diff options
author | Subv <subv2112@gmail.com> | 2018-03-03 17:51:36 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-03-03 17:51:36 +0100 |
commit | 656e7aab2980faedc773bfd260cc703cfbd9bfa2 (patch) | |
tree | b68f387b346bd3df10a914b18b5f1afbec00c7d5 /src/core/hle/service/nvflinger | |
parent | Merge pull request #216 from Subv/savedata (diff) | |
download | yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar.gz yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar.bz2 yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar.lz yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar.xz yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.tar.zst yuzu-656e7aab2980faedc773bfd260cc703cfbd9bfa2.zip |
Diffstat (limited to 'src/core/hle/service/nvflinger')
-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(); } } |