mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-23 23:30:02 +00:00
modesetting: properly use fb_id of front_bo for reverse PRIME CRTC
When doing reverse PRIME, the buffer being scaned out is still the front BO. Properly reuse its fb_id, to prevent adding a FB for the front_bo each time the fb_id is requested. Signed-off-by: Icenowy Zheng <uwu@icenowy.me> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2064>
This commit is contained in:
committed by
Enrico Weigelt
parent
f70e79b374
commit
d0e2967eab
@@ -667,8 +667,10 @@ drmmode_crtc_get_fb_id(xf86CrtcPtr crtc, uint32_t *fb_id, int *x, int *y)
|
||||
msGetPixmapPriv(drmmode, drmmode_crtc->prime_pixmap);
|
||||
*fb_id = ppriv->fb_id;
|
||||
*x = 0;
|
||||
} else
|
||||
} else {
|
||||
*fb_id = drmmode->fb_id;
|
||||
*x = drmmode_crtc->prime_pixmap_x;
|
||||
}
|
||||
*y = 0;
|
||||
}
|
||||
else if (trf->buf[trf->back_idx ^ 1].px) {
|
||||
|
||||
Reference in New Issue
Block a user