Searched defs:src_desc (Results 1 - 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format.c415 util_is_format_compatible(const struct util_format_description *src_desc, argument
420 if (src_desc->format == dst_desc->format) {
424 if (src_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN ||
429 if (src_desc->block.bits != dst_desc->block.bits ||
430 src_desc->nr_channels != dst_desc->nr_channels ||
431 src_desc->colorspace != dst_desc->colorspace) {
436 if (src_desc->channel[chan].size !=
446 if (src_desc->swizzle[chan] != swizzle) {
449 if ((src_desc->channel[swizzle].type !=
451 (src_desc
[all...]
H A Du_blit.c406 const struct util_format_description *src_desc = local
410 return util_is_format_compatible(src_desc, dst_desc);
451 const struct util_format_description *src_desc = local
470 is_depth = util_format_has_depth(src_desc);
471 is_stencil = util_format_has_stencil(src_desc);
H A Du_blitter.c1132 const struct util_format_description *src_desc = local
1135 blit_depth = util_format_has_depth(src_desc) && (mask & PIPE_MASK_Z);
1136 blit_stencil = util_format_has_stencil(src_desc) && (mask & PIPE_MASK_S);
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_context.c697 const struct util_format_description *src_desc = local
701 if (!util_is_format_compatible(src_desc, dst_desc))
703 src_desc->short_name,

Completed in 109 milliseconds