Lines Matching refs:bbox

345     return _compositeMaskImage(surface, &surface->compositor->image, surface->compositor->bbox);  in _rasterCompositeMaskedRect()
512 return _compositeMaskImage(surface, &surface->compositor->image, surface->compositor->bbox); in _rasterCompositeMaskedRle()
1277 return _compositeMaskImage(surface, &surface->compositor->image, surface->compositor->bbox); in _rasterCompositeGradientMaskedRect()
1450 return _compositeMaskImage(surface, &surface->compositor->image, surface->compositor->bbox); in _rasterCompositeGradientMaskedRle()
1744 …if (type == Type::LinearGradient) return _rasterLinearGradientRect(surface, shape->bbox, shape->fi… in rasterGradientShape()
1745 …else if (type == Type::RadialGradient)return _rasterRadialGradientRect(surface, shape->bbox, shape… in rasterGradientShape()
1778 if (shape->fastTrack) return _rasterRect(surface, shape->bbox, r, g, b, a); in rasterShape()
1795 bool rasterImage(SwSurface* surface, SwImage* image, const Matrix& transform, const SwBBox& bbox, u… in rasterImage() argument
1798 …if (bbox.max.x < 0 || bbox.max.y < 0 || bbox.min.x >= static_cast<SwCoord>(surface->w) || bbox.min… in rasterImage()
1800 return _rasterImage(surface, image, transform, bbox, opacity); in rasterImage()
1825 …nt32_t* src, uint32_t* dst, int32_t stride, int32_t w, int32_t h, const SwBBox& bbox, bool flipped) in rasterXYFlip() argument
1830 src += ((bbox.min.x * stride) + bbox.min.y); in rasterXYFlip()
1831 dst += ((bbox.min.y * stride) + bbox.min.x); in rasterXYFlip()
1833 src += ((bbox.min.y * stride) + bbox.min.x); in rasterXYFlip()
1834 dst += ((bbox.min.x * stride) + bbox.min.y); in rasterXYFlip()