HomeSort by relevance Sort by last modified time
    Searched refs:src_desc (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/src/mesa/state_tracker/
st_cb_copyimage.c 288 const struct util_format_description *src_desc, *dst_desc; local
304 src_desc = util_format_description(blit_src_format);
307 assert(src_desc->block.bits == dst_desc->block.bits);
308 bits = src_desc->block.bits;
310 if (dst_desc->channel[0].size == src_desc->channel[0].size) {
314 } else if (has_identity_swizzle(src_desc)) {
327 canonical_format_from_bits(bits, src_desc->channel[0].size);
410 const struct util_format_description *src_desc, *dst_desc; local
417 src_desc = util_format_description(src->format);
422 src_is_canon = same_size_and_swizzle(src_desc, canon_desc)
    [all...]
st_cb_texture.c 1104 const struct util_format_description *src_desc = util_format_description(src); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.c 485 util_is_format_compatible(const struct util_format_description *src_desc,
490 if (src_desc->format == dst_desc->format) {
494 if (src_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN ||
499 if (src_desc->block.bits != dst_desc->block.bits ||
500 src_desc->nr_channels != dst_desc->nr_channels ||
501 src_desc->colorspace != dst_desc->colorspace) {
506 if (src_desc->channel[chan].size !=
516 if (src_desc->swizzle[chan] != swizzle) {
519 if ((src_desc->channel[swizzle].type !=
521 (src_desc->channel[swizzle].normalized !
    [all...]
u_blit.c 346 const struct util_format_description *src_desc = local
350 return util_is_format_compatible(src_desc, dst_desc);
383 const struct util_format_description *src_desc = local
403 is_depth = util_format_has_depth(src_desc);
404 is_stencil = util_format_has_stencil(src_desc);
u_surface.c 700 const struct util_format_description *src_desc, *dst_desc; local
702 src_desc = util_format_description(blit->src.resource->format);
715 !util_is_format_compatible(src_desc, dst_desc)) {
u_blitter.c 1693 const struct util_format_description *src_desc = local
    [all...]
u_format.h 692 util_is_format_compatible(const struct util_format_description *src_desc,
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_descriptor_set.c 696 struct anv_descriptor *src_desc = local
698 src_desc += copy->srcArrayElement;
707 dst_desc[j] = src_desc[j];

Completed in 1965 milliseconds