Home | History | Annotate | Download | only in renderonly

Lines Matching refs:handle

79    struct winsys_handle handle;
100 scanout->handle = create_dumb.handle;
104 err = drmPrimeHandleToFD(ro->kms_fd, create_dumb.handle, O_CLOEXEC,
112 handle.type = DRM_API_HANDLE_TYPE_FD;
113 handle.handle = prime_fd;
114 handle.stride = create_dumb.pitch;
117 &handle, PIPE_HANDLE_USAGE_READ_WRITE);
127 destroy_dumb.handle = scanout->handle;
144 struct winsys_handle handle = {
152 status = screen->resource_get_handle(screen, NULL, rsc, &handle,
157 scanout->stride = handle.stride;
158 fd = handle.handle;
160 err = drmPrimeFDToHandle(ro->kms_fd, fd, &scanout->handle);