Home
last modified time | relevance | path

Searched refs:dst_clip (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/frontends/vdpau/
Dpresentation.c214 struct u_rect src_rect, dst_clip, *dirty_area; in vlVdpPresentationQueueDisplay() local
249 dst_clip.x0 = 0; in vlVdpPresentationQueueDisplay()
250 dst_clip.y0 = 0; in vlVdpPresentationQueueDisplay()
251 dst_clip.x1 = clip_width ? clip_width : surf_draw->width; in vlVdpPresentationQueueDisplay()
252 dst_clip.y1 = clip_height ? clip_height : surf_draw->height; in vlVdpPresentationQueueDisplay()
261 vl_compositor_set_dst_clip(cstate, &dst_clip); in vlVdpPresentationQueueDisplay()
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_bicubic_filter.c390 struct u_rect *dst_clip) in vl_bicubic_filter_render() argument
399 if (dst_clip) { in vl_bicubic_filter_render()
400 scissor.minx = dst_clip->x0; in vl_bicubic_filter_render()
401 scissor.miny = dst_clip->y0; in vl_bicubic_filter_render()
402 scissor.maxx = dst_clip->x1; in vl_bicubic_filter_render()
403 scissor.maxy = dst_clip->y1; in vl_bicubic_filter_render()
Dvl_bicubic_filter.h60 struct u_rect *dst_clip);
Dvl_compositor.c496 vl_compositor_set_dst_clip(struct vl_compositor_state *s, struct u_rect *dst_clip) in vl_compositor_set_dst_clip() argument
500 s->scissor_valid = dst_clip != NULL; in vl_compositor_set_dst_clip()
501 if (dst_clip) { in vl_compositor_set_dst_clip()
502 s->scissor.minx = dst_clip->x0; in vl_compositor_set_dst_clip()
503 s->scissor.miny = dst_clip->y0; in vl_compositor_set_dst_clip()
504 s->scissor.maxx = dst_clip->x1; in vl_compositor_set_dst_clip()
505 s->scissor.maxy = dst_clip->y1; in vl_compositor_set_dst_clip()
Dvl_compositor.h203 vl_compositor_set_dst_clip(struct vl_compositor_state *settings, struct u_rect *dst_clip);