Lines Matching refs:box
34 glamor_prep_pixmap_box(PixmapPtr pixmap, glamor_access_t access, BoxPtr box) in glamor_prep_pixmap_box() argument
50 RegionInit(®ion, box, 1); in glamor_prep_pixmap_box()
87 RegionInit(&priv->prepare_region, box, 1); in glamor_prep_pixmap_box()
239 BoxRec box; in glamor_prepare_access() local
244 box.x1 = drawable->x + off_x; in glamor_prepare_access()
245 box.x2 = box.x1 + drawable->width; in glamor_prepare_access()
246 box.y1 = drawable->y + off_y; in glamor_prepare_access()
247 box.y2 = box.y1 + drawable->height; in glamor_prepare_access()
248 return glamor_prep_pixmap_box(pixmap, access, &box); in glamor_prepare_access()
256 BoxRec box; in glamor_prepare_access_box() local
260 box.x1 = drawable->x + x + off_x; in glamor_prepare_access_box()
261 box.x2 = box.x1 + w; in glamor_prepare_access_box()
262 box.y1 = drawable->y + y + off_y; in glamor_prepare_access_box()
263 box.y2 = box.y1 + h; in glamor_prepare_access_box()
264 return glamor_prep_pixmap_box(pixmap, access, &box); in glamor_prepare_access_box()