Lines Matching defs:plane
81 * Number of bytes per pixel (per plane), this is aliased with
91 * Number of bytes per block (per plane), where blocks are
148 * format with data laid in a single plane
264 * drm_format_info_plane_width - width of the plane given the first plane
266 * @width: width of the first plane
267 * @plane: plane index
270 * The width of @plane, given that the width of the first plane is @width.
274 int plane)
276 if (!info || plane >= info->num_planes)
279 if (plane == 0)
286 * drm_format_info_plane_height - height of the plane given the first plane
288 * @height: height of the first plane
289 * @plane: plane index
292 * The height of @plane, given that the height of the first plane is @height.
296 int plane)
298 if (!info || plane >= info->num_planes)
301 if (plane == 0)
316 int plane);
318 int plane);
319 unsigned int drm_format_info_bpp(const struct drm_format_info *info, int plane);
321 int plane, unsigned int buffer_width);