mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 09:20:02 +01:00
present: Fix swapping of PresentCompleteNotify events
The code would fall through to the PresentIdleNotify case, and nothing good would come of it. Signed-off-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
parent
cc66777d85
commit
b9f415cbad
1 changed files with 2 additions and 0 deletions
|
|
@ -91,6 +91,7 @@ present_event_swap(xGenericEvent *from, xGenericEvent *to)
|
|||
swapl(&c->serial);
|
||||
swapll(&c->ust);
|
||||
swapll(&c->msc);
|
||||
break;
|
||||
}
|
||||
case PresentIdleNotify:
|
||||
{
|
||||
|
|
@ -99,6 +100,7 @@ present_event_swap(xGenericEvent *from, xGenericEvent *to)
|
|||
swapl(&c->window);
|
||||
swapl(&c->serial);
|
||||
swapl(&c->idle_fence);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue