Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/state_trackers/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.c381 struct u_rect *dst_clip) in vl_bicubic_filter_render() argument
391 if (dst_clip) { in vl_bicubic_filter_render()
392 scissor.minx = dst_clip->x0; in vl_bicubic_filter_render()
393 scissor.miny = dst_clip->y0; in vl_bicubic_filter_render()
394 scissor.maxx = dst_clip->x1; in vl_bicubic_filter_render()
395 scissor.maxy = dst_clip->y1; in vl_bicubic_filter_render()
Dvl_bicubic_filter.h60 struct u_rect *dst_clip);
Dvl_compositor.h172 vl_compositor_set_dst_clip(struct vl_compositor_state *settings, struct u_rect *dst_clip);
Dvl_compositor.c950 vl_compositor_set_dst_clip(struct vl_compositor_state *s, struct u_rect *dst_clip) in vl_compositor_set_dst_clip() argument
954 s->scissor_valid = dst_clip != NULL; in vl_compositor_set_dst_clip()
955 if (dst_clip) { in vl_compositor_set_dst_clip()
956 s->scissor.minx = dst_clip->x0; in vl_compositor_set_dst_clip()
957 s->scissor.miny = dst_clip->y0; in vl_compositor_set_dst_clip()
958 s->scissor.maxx = dst_clip->x1; in vl_compositor_set_dst_clip()
959 s->scissor.maxy = dst_clip->y1; in vl_compositor_set_dst_clip()