mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 00:57:56 -05:00
Nvdrv: Correct Async regression and avoid signaling empty buffer vsyncs
This commit is contained in:
committed by
FernandoS27
parent
d633397883
commit
4e9f975935
@ -170,8 +170,13 @@ const VI::Layer* NVFlinger::FindLayer(u64 display_id, u64 layer_id) const {
|
||||
|
||||
void NVFlinger::Compose() {
|
||||
for (auto& display : displays) {
|
||||
bool trigger_event = false;
|
||||
// Trigger vsync for this display at the end of drawing
|
||||
SCOPE_EXIT({ display.SignalVSyncEvent(); });
|
||||
SCOPE_EXIT({
|
||||
if (trigger_event) {
|
||||
display.SignalVSyncEvent();
|
||||
}
|
||||
});
|
||||
|
||||
// Don't do anything for displays without layers.
|
||||
if (!display.HasLayers())
|
||||
@ -194,6 +199,7 @@ void NVFlinger::Compose() {
|
||||
}
|
||||
|
||||
const auto& igbp_buffer = buffer->get().igbp_buffer;
|
||||
trigger_event = true;
|
||||
|
||||
// Now send the buffer to the GPU for drawing.
|
||||
// TODO(Subv): Support more than just disp0. The display device selection is probably based
|
||||
|
Reference in New Issue
Block a user