HomeSort by: relevance | last modified time | path
    Searched refs:dst_desc (Results 1 - 21 of 21) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_copyimage.c 289 const struct util_format_description *src_desc, *dst_desc; local
306 dst_desc = util_format_description(blit_dst_format);
308 assert(src_desc->block.bits == dst_desc->block.bits);
311 if (dst_desc->channel[0].size == src_desc->channel[0].size) {
321 canonical_format_from_bits(bits, dst_desc->channel[0].size);
322 } else if (has_identity_swizzle(dst_desc)) {
412 const struct util_format_description *src_desc, *dst_desc; local
420 dst_desc = util_format_description(dst->format);
425 dst_is_canon = same_size_and_swizzle(dst_desc, canon_desc);
427 dst_is_noncanon = same_size_and_swizzle(dst_desc, noncanon_desc)
    [all...]
st_cb_texture.c 1541 const struct util_format_description *dst_desc = util_format_description(dst); local
1549 if (dst_desc->nr_channels != 4 || dst_desc->swizzle[3] == PIPE_SWIZZLE_1)
1553 swizzle[i] = dst_desc->swizzle[src_desc->swizzle[i]];
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_copyimage.c 289 const struct util_format_description *src_desc, *dst_desc; local
306 dst_desc = util_format_description(blit_dst_format);
308 assert(src_desc->block.bits == dst_desc->block.bits);
311 if (dst_desc->channel[0].size == src_desc->channel[0].size) {
321 canonical_format_from_bits(bits, dst_desc->channel[0].size);
322 } else if (has_identity_swizzle(dst_desc)) {
412 const struct util_format_description *src_desc, *dst_desc; local
420 dst_desc = util_format_description(dst->format);
425 dst_is_canon = same_size_and_swizzle(dst_desc, canon_desc);
427 dst_is_noncanon = same_size_and_swizzle(dst_desc, noncanon_desc)
    [all...]
st_cb_texture.c 1170 const struct util_format_description *dst_desc = util_format_description(dst); local
1178 if (dst_desc->nr_channels != 4 || dst_desc->swizzle[3] == PIPE_SWIZZLE_1)
1182 swizzle[i] = dst_desc->swizzle[src_desc->swizzle[i]];
  /xsrc/external/mit/MesaLib/dist/src/util/format/
u_format.c 515 const struct util_format_description *dst_desc)
519 if (src_desc->format == dst_desc->format) {
524 dst_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN) {
528 if (src_desc->block.bits != dst_desc->block.bits ||
529 src_desc->nr_channels != dst_desc->nr_channels ||
530 src_desc->colorspace != dst_desc->colorspace) {
536 dst_desc->channel[chan].size) {
542 enum pipe_swizzle swizzle = dst_desc->swizzle[chan];
549 dst_desc->channel[swizzle].type) ||
551 dst_desc->channel[swizzle].normalized))
    [all...]
u_format.h 772 const struct util_format_description *dst_desc) ATTRIBUTE_CONST;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_format.c 467 const struct util_format_description *dst_desc)
471 if (src_desc->format == dst_desc->format) {
476 dst_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN) {
480 if (src_desc->block.bits != dst_desc->block.bits ||
481 src_desc->nr_channels != dst_desc->nr_channels ||
482 src_desc->colorspace != dst_desc->colorspace) {
488 dst_desc->channel[chan].size) {
494 enum pipe_swizzle swizzle = dst_desc->swizzle[chan];
501 dst_desc->channel[swizzle].type) ||
503 dst_desc->channel[swizzle].normalized))
    [all...]
u_blit.c 361 const struct util_format_description *dst_desc = local
363 return util_is_format_compatible(src_desc, dst_desc);
u_surface.c 789 const struct util_format_description *src_desc, *dst_desc; local
792 dst_desc = util_format_description(blit->dst.resource->format);
804 !util_is_format_compatible(src_desc, dst_desc)) {
u_format.h 758 const struct util_format_description *dst_desc);
u_blitter.c 1828 const struct util_format_description *dst_desc = local
1832 dst_desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS;
1834 util_format_has_depth(dst_desc);
1836 util_format_has_stencil(dst_desc);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_blit.c 255 const struct util_format_description *dst_desc = util_format_description(info->dst.format); local
261 if (src_desc == dst_desc ||
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_surface.c 772 const struct util_format_description *src_desc, *dst_desc; local
775 dst_desc = util_format_description(blit->dst.resource->format);
787 !util_is_format_compatible(src_desc, dst_desc)) {
u_blitter.c 1931 const struct util_format_description *dst_desc = local
1939 dst_desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS;
1941 util_format_has_depth(dst_desc);
1944 util_format_has_stencil(dst_desc);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_pipe_blit.c 421 const struct util_format_description *src_desc, *dst_desc; local
424 dst_desc = util_format_description(blit_info->dst.resource->format);
428 !util_is_format_compatible(src_desc, dst_desc))
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/
lvp_descriptor_set.c 471 struct lvp_descriptor *dst_desc = local
473 dst_desc += copy->dstArrayElement;
476 dst_desc[j] = src_desc[j];
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/
fd6_blitter.c 154 const struct util_format_description *dst_desc = local
156 const int common_channels = MIN2(src_desc->nr_channels, dst_desc->nr_channels);
161 &dst_desc->channel[i],
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_pipe_blit.c 429 const struct util_format_description *src_desc, *dst_desc; local
432 dst_desc = util_format_description(blit_info->dst.resource->format);
436 !util_is_format_compatible(src_desc, dst_desc))
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_descriptor_set.c 1693 struct anv_descriptor *dst_desc = local
1695 dst_desc += copy->dstArrayElement;
1728 dst_desc[j].type = src_desc[j].type;
1729 dst_desc[j].buffer_view = &dst_bview[j];
1733 dst_desc[j] = src_desc[j];
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
fd6_blitter.c 217 const struct util_format_description *dst_desc = local
220 MIN2(src_desc->nr_channels, dst_desc->nr_channels);
224 fail_if(memcmp(&src_desc->channel[i], &dst_desc->channel[i],
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_descriptor_set.c 1446 struct anv_descriptor *dst_desc = local
1448 dst_desc += copy->dstArrayElement;
1451 dst_desc[j] = src_desc[j];

Completed in 104 milliseconds