HomeSort by relevance Sort by last modified time
    Searched refs:dst_clip (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_bicubic_filter.h 60 struct u_rect *dst_clip);
vl_bicubic_filter.c 381 struct u_rect *dst_clip)
391 if (dst_clip) {
392 scissor.minx = dst_clip->x0;
393 scissor.miny = dst_clip->y0;
394 scissor.maxx = dst_clip->x1;
395 scissor.maxy = dst_clip->y1;
vl_compositor.h 172 vl_compositor_set_dst_clip(struct vl_compositor_state *settings, struct u_rect *dst_clip);
vl_compositor.c 950 vl_compositor_set_dst_clip(struct vl_compositor_state *s, struct u_rect *dst_clip)
954 s->scissor_valid = dst_clip != NULL;
955 if (dst_clip) {
956 s->scissor.minx = dst_clip->x0;
957 s->scissor.miny = dst_clip->y0;
958 s->scissor.maxx = dst_clip->x1;
959 s->scissor.maxy = dst_clip->y1;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
presentation.c 214 struct u_rect src_rect, dst_clip, *dirty_area; local
249 dst_clip.x0 = 0;
250 dst_clip.y0 = 0;
251 dst_clip.x1 = clip_width ? clip_width : surf_draw->width;
252 dst_clip.y1 = clip_height ? clip_height : surf_draw->height;
261 vl_compositor_set_dst_clip(cstate, &dst_clip);

Completed in 1325 milliseconds