Home | History | Annotate | Download | only in fb

Lines Matching refs:yOff

113     int xDst = list->xOff, yDst = list->yOff;
135 y += list->yOff;
145 int xoff, yoff;
153 if (!(glyphImage = image_from_pict(pPicture, FALSE, &xoff, &yoff)))
174 y += glyph->info.yOff;
282 create_bits_picture(PicturePtr pict, Bool has_clip, int *xoff, int *yoff)
290 fbGetDrawablePixmap(pict->pDrawable, pixmap, *xoff, *yoff);
314 if (*xoff || *yoff)
315 pixman_region_translate(pict->pCompositeClip, *xoff, *yoff);
319 if (*xoff || *yoff)
320 pixman_region_translate(pict->pCompositeClip, -*xoff, -*yoff);
329 *yoff += pict->pDrawable->y;
335 int *xoff, int *yoff,
345 int *xoff, int *yoff, Bool is_alpha_map)
363 pixman_int_to_fixed(*yoff));
366 *yoff = 0;
438 image_from_pict_internal(PicturePtr pict, Bool has_clip, int *xoff, int *yoff,
447 image = create_bits_picture(pict, has_clip, xoff, yoff);
465 *xoff = *yoff = 0;
469 set_image_properties(image, pict, has_clip, xoff, yoff, is_alpha_map);
475 image_from_pict(PicturePtr pict, Bool has_clip, int *xoff, int *yoff)
477 return image_from_pict_internal(pict, has_clip, xoff, yoff, FALSE);