Lines Matching refs:descriptor
99 struct cros_gralloc_buffer_descriptor descriptor;
102 descriptor.width = w;
103 descriptor.height = h;
104 descriptor.droid_format = format;
105 descriptor.producer_usage = descriptor.consumer_usage = usage;
106 descriptor.drm_format = cros_gralloc_convert_format(format);
107 descriptor.use_flags = gralloc0_convert_usage(usage);
109 supported = mod->driver->is_supported(&descriptor);
111 descriptor.use_flags &= ~BO_USE_SCANOUT;
112 supported = mod->driver->is_supported(&descriptor);
118 format, usage, reinterpret_cast<char *>(&descriptor.drm_format),
119 static_cast<unsigned long long>(descriptor.use_flags));
123 ret = mod->driver->allocate(&descriptor, handle);