Lines Matching full:format
29 * DRM_FORMAT_MAX_PLANES - maximum number of planes a DRM format can have
38 * case the format can't be specified otherwise, so we don't end up
39 * with two values describing the same format.
59 * struct drm_format_info - information about a DRM format
62 /** @format: 4CC format identifier (DRM_FORMAT_*) */
63 u32 format; member
84 * describing the pixel format.
108 * generic format table. Drivers could supply accurate
136 /** @has_alpha: Does the format embeds an alpha component? */
139 /** @is_yuv: Is it a YUV format? */
144 * drm_format_info_is_yuv_packed - check that the format info matches a YUV
145 * format with data laid in a single plane
146 * @info: format info
149 * A boolean indicating whether the format info matches a packed YUV format.
158 * drm_format_info_is_yuv_semiplanar - check that the format info matches a YUV
159 * format with data laid in two planes (luminance and chrominance)
160 * @info: format info
163 * A boolean indicating whether the format info matches a semiplanar YUV format.
172 * drm_format_info_is_yuv_planar - check that the format info matches a YUV
173 * format with data laid in three planes (one for each YUV component)
174 * @info: format info
177 * A boolean indicating whether the format info matches a planar YUV format.
186 * drm_format_info_is_yuv_sampling_410 - check that the format info matches a
187 * YUV format with 4:1:0 sub-sampling
188 * @info: format info
191 * A boolean indicating whether the format info matches a YUV format with 4:1:0
201 * drm_format_info_is_yuv_sampling_411 - check that the format info matches a
202 * YUV format with 4:1:1 sub-sampling
203 * @info: format info
206 * A boolean indicating whether the format info matches a YUV format with 4:1:1
216 * drm_format_info_is_yuv_sampling_420 - check that the format info matches a
217 * YUV format with 4:2:0 sub-sampling
218 * @info: format info
221 * A boolean indicating whether the format info matches a YUV format with 4:2:0
231 * drm_format_info_is_yuv_sampling_422 - check that the format info matches a
232 * YUV format with 4:2:2 sub-sampling
233 * @info: format info
236 * A boolean indicating whether the format info matches a YUV format with 4:2:2
246 * drm_format_info_is_yuv_sampling_444 - check that the format info matches a
247 * YUV format with 4:4:4 sub-sampling
248 * @info: format info
251 * A boolean indicating whether the format info matches a YUV format with 4:4:4
262 * @info: pixel format info
284 * @info: pixel format info
304 const struct drm_format_info *__drm_format_info(u32 format);
305 const struct drm_format_info *drm_format_info(u32 format);