Home
last modified time | relevance | path

Searched refs:destroy_dumb (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/renderonly/
Drenderonly.c58 struct drm_mode_destroy_dumb destroy_dumb = { }; in renderonly_scanout_destroy() local
61 destroy_dumb.handle = scanout->handle; in renderonly_scanout_destroy()
62 drmIoctl(ro->kms_fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb); in renderonly_scanout_destroy()
79 struct drm_mode_destroy_dumb destroy_dumb = { }; in renderonly_create_kms_dumb_buffer_for_resource() local
114 destroy_dumb.handle = scanout->handle; in renderonly_create_kms_dumb_buffer_for_resource()
115 drmIoctl(ro->kms_fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb); in renderonly_create_kms_dumb_buffer_for_resource()
/external/minigbm/
Dhelpers.c299 struct drm_mode_destroy_dumb destroy_dumb; in drv_dumb_bo_destroy() local
302 memset(&destroy_dumb, 0, sizeof(destroy_dumb)); in drv_dumb_bo_destroy()
303 destroy_dumb.handle = bo->handles[0].u32; in drv_dumb_bo_destroy()
305 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb); in drv_dumb_bo_destroy()
/external/mesa3d/src/gbm/backends/dri/
Dgbm_dri.c1094 goto destroy_dumb; in create_dumb()
1098 destroy_dumb: in create_dumb()