Lines Matching refs:descriptor
77 bool cros_gralloc_driver::is_supported(const struct cros_gralloc_buffer_descriptor *descriptor)
81 resolved_format = drv_resolve_format(drv_, descriptor->drm_format, descriptor->use_flags);
82 combo = drv_get_combination(drv_, resolved_format, descriptor->use_flags);
86 int32_t cros_gralloc_driver::allocate(const struct cros_gralloc_buffer_descriptor *descriptor,
99 resolved_format = drv_resolve_format(drv_, descriptor->drm_format, descriptor->use_flags);
100 use_flags = descriptor->use_flags;
110 bo = drv_bo_create(drv_, descriptor->width, descriptor->height, resolved_format, use_flags);
147 hnd->use_flags[0] = static_cast<uint32_t>(descriptor->use_flags >> 32);
148 hnd->use_flags[1] = static_cast<uint32_t>(descriptor->use_flags);
152 hnd->droid_format = descriptor->droid_format;
153 hnd->usage = descriptor->producer_usage;