Browse Source

Merge pull request #226 from Subv/buffer_queue_event

Vi: Signal the BufferQueue's Native Handle right after ReleaseBuffer is called
pull/15/merge
bunnei 8 years ago
committed by GitHub
parent
commit
7e7110b3b9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/core/hle/service/nvflinger/nvflinger.cpp

3
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();
}
}

Loading…
Cancel
Save