Home | History | Annotate | Download | only in gralloc960

Lines Matching defs:luma_stride

292 	int luma_stride;
304 luma_stride = GRALLOC_ALIGN(width, stride_alignment);
308 int chroma_stride = GRALLOC_ALIGN(luma_stride / 2, stride_alignment);
309 /* Simplification of ((height * luma_stride ) + 2 * ((height / 2) * chroma_stride)). */
310 *size = height *(luma_stride + chroma_stride);
315 *byte_stride = luma_stride;
320 *pixel_stride = luma_stride;