Home | History | Annotate | Download | only in vdpau

Lines Matching refs:box

291    struct pipe_box box;
293 box.x = 0;
294 box.y = 0;
295 box.z = 0;
296 box.width = res->width0;
297 box.height = res->height0;
298 box.depth = 1;
301 box.x = MIN2(rect->x0, rect->x1);
302 box.y = MIN2(rect->y0, rect->y1);
303 box.width = abs(rect->x1 - rect->x0);
304 box.height = abs(rect->y1 - rect->y0);
307 return box;