mirror of
https://github.com/X11Libre/xf86-video-amdgpu.git
synced 2026-03-24 01:24:31 +00:00
dri3: Always flush glamor before sharing pixmap storage with clients
Even if glamor_gbm_bo_from_pixmap / glamor_fd_from_pixmap themselves don't trigger any drawing, there could already be unflushed drawing to the pixmap whose storage we share with a client.
This commit is contained in:
committed by
Michel Dänzer
parent
bf61e6d7ac
commit
4b17533fcb
@@ -221,29 +221,13 @@ static int amdgpu_dri3_fd_from_pixmap(ScreenPtr screen,
|
||||
AMDGPUInfoPtr info = AMDGPUPTR(scrn);
|
||||
|
||||
if (info->use_glamor) {
|
||||
Bool need_flush = TRUE;
|
||||
int ret = -1;
|
||||
#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1,19,99,904,0)
|
||||
struct gbm_bo *gbm_bo = glamor_gbm_bo_from_pixmap(screen, pixmap);
|
||||
int ret = glamor_fd_from_pixmap(screen, pixmap, stride, size);
|
||||
|
||||
if (gbm_bo) {
|
||||
ret = gbm_bo_get_fd(gbm_bo);
|
||||
gbm_bo_destroy(gbm_bo);
|
||||
|
||||
if (ret >= 0)
|
||||
need_flush = FALSE;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (ret < 0)
|
||||
ret = glamor_fd_from_pixmap(screen, pixmap, stride, size);
|
||||
|
||||
/* glamor might have needed to reallocate the pixmap storage and
|
||||
* copy the pixmap contents to the new storage. The copy
|
||||
* operation needs to be flushed to the kernel driver before the
|
||||
* client starts using the pixmap storage for direct rendering.
|
||||
/* Any pending drawing operations need to be flushed to the
|
||||
* kernel driver before the client starts using the pixmap
|
||||
* storage for direct rendering.
|
||||
*/
|
||||
if (ret >= 0 && need_flush)
|
||||
if (ret >= 0)
|
||||
amdgpu_glamor_flush(scrn);
|
||||
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user