Lines Matching defs:info
101 const struct pipe_blit_info *info)
107 if (info->dst.box.width != info->src.box.width ||
108 info->dst.box.height != info->src.box.height)
111 if (info->scissor_enable)
114 if (info->dst.box.height < 0 || info->src.box.height < 0)
117 if (info->dst.box.depth > 1 || info->src.box.depth > 1)
121 util_format_description(info->src.format);
122 int i = util_format_get_first_non_void_channel(info->src.format);
127 if ((util_format_has_alpha1(info->src.format) &&
128 util_format_has_alpha(info->dst.format) &&
373 const struct pipe_blit_info *info)
375 if (!validate_blit_for_blt(batch, info))
379 (struct crocus_resource *)info->src.resource,
380 (struct crocus_resource *)info->dst.resource,
381 info->dst.level,
382 info->dst.box.x,
383 info->dst.box.y,
384 info->dst.box.z,
385 info->src.level,
386 &info->src.box);