compositor-drm: Use fb->fd consistently
Everyone else uses fb->fd rather than pulling the FD back out of GBM. Use that in the destroy callback too. Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Armin Krezović <krezovic.armin@gmail.com> Differential Revision: https://phabricator.freedesktop.org/D1406
This commit is contained in:
parent
3e661f7b6c
commit
4e5eceb075
@ -243,10 +243,9 @@ static void
|
||||
drm_fb_destroy_callback(struct gbm_bo *bo, void *data)
|
||||
{
|
||||
struct drm_fb *fb = data;
|
||||
struct gbm_device *gbm = gbm_bo_get_device(bo);
|
||||
|
||||
if (fb->fb_id)
|
||||
drmModeRmFB(gbm_device_get_fd(gbm), fb->fb_id);
|
||||
drmModeRmFB(fb->fd, fb->fb_id);
|
||||
|
||||
weston_buffer_reference(&fb->buffer_ref, NULL);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user