Searched refs:gr_handle (Results 1 – 2 of 2) sorted by relevance
71 cros_gralloc_handle *gr_handle = (cros_gralloc_handle *)handle; in ImportBuffer() local72 if (!gr_handle) in ImportBuffer()76 int ret = drmPrimeFDToHandle(drm_->fd(), gr_handle->fds[0], &gem_handle); in ImportBuffer()78 ALOGE("failed to import prime fd %d ret=%d", gr_handle->fds[0], ret); in ImportBuffer()83 bo->width = gr_handle->width; in ImportBuffer()84 bo->height = gr_handle->height; in ImportBuffer()85 bo->hal_format = gr_handle->droid_format; in ImportBuffer()86 bo->format = gr_handle->format; in ImportBuffer()87 bo->usage = gr_handle->usage; in ImportBuffer()88 bo->pixel_stride = gr_handle->pixel_stride; in ImportBuffer()[all …]
105 gralloc_handle_t *gr_handle = gralloc_handle(handle); in ImportBuffer() local106 if (!gr_handle) in ImportBuffer()110 int ret = drmPrimeFDToHandle(drm_->fd(), gr_handle->prime_fd, &gem_handle); in ImportBuffer()112 ALOGE("failed to import prime fd %d ret=%d", gr_handle->prime_fd, ret); in ImportBuffer()117 bo->width = gr_handle->width; in ImportBuffer()118 bo->height = gr_handle->height; in ImportBuffer()119 bo->hal_format = gr_handle->format; in ImportBuffer()120 bo->format = ConvertHalFormatToDrm(gr_handle->format); in ImportBuffer()121 bo->usage = gr_handle->usage; in ImportBuffer()122 bo->pixel_stride = (gr_handle->stride * 8) / in ImportBuffer()[all …]