Lines Matching defs:dst
82 blit_info->dst.box.width == 0 || blit_info->dst.box.height == 0)
86 struct pipe_resource *dst = blit_info->dst.resource;
89 unsigned width = blit_info->dst.box.width;
90 unsigned height = blit_info->dst.box.height;
91 float x_scale = blit_info->src.box.width / (float)blit_info->dst.box.width;
92 float y_scale = blit_info->src.box.height / (float)blit_info->dst.box.height;
93 float z_scale = blit_info->src.box.depth / (float)blit_info->dst.box.depth;
104 blit_info->dst.box.x,
105 blit_info->dst.box.y,
106 blit_info->dst.box.z,
115 image.resource = dst;
117 image.format = util_format_linear(blit_info->dst.format);
118 image.u.tex.level = blit_info->dst.level;
120 image.u.tex.last_layer = (unsigned)(dst->array_size - 1);