Lines Matching refs:dst
158 const struct copybit_rect_t *dst, in set_rects() argument
162 intersect(&clip, scissor, dst); in set_rects()
171 e->src_rect.x = (clip.t - dst->t) + src->t; in set_rects()
172 e->src_rect.y = (dst->r - clip.r) + src->l; in set_rects()
175 W = dst->b - dst->t; in set_rects()
176 H = dst->r - dst->l; in set_rects()
178 e->src_rect.x = (clip.l - dst->l) + src->l; in set_rects()
179 e->src_rect.y = (clip.t - dst->t) + src->t; in set_rects()
182 W = dst->r - dst->l; in set_rects()
183 H = dst->b - dst->t; in set_rects()
226 l->req[i].dst.width, in msm_copybit()
227 l->req[i].dst.height, in msm_copybit()
228 l->req[i].dst.format, in msm_copybit()
340 struct copybit_image_t const *dst, in stretch_copybit() argument
374 if (dst->w > MAX_DIMENSION || dst->h > MAX_DIMENSION) in stretch_copybit()
378 const struct copybit_rect_t bounds = { 0, 0, dst->w, dst->h }; in stretch_copybit()
386 set_image(&req->dst, dst); in stretch_copybit()
413 struct copybit_image_t const *dst, in blit_copybit() argument
417 struct copybit_rect_t dr = { 0, 0, dst->w, dst->h }; in blit_copybit()
419 return stretch_copybit(dev, dst, src, &dr, &sr, region); in blit_copybit()