Lines Matching refs:transform
213 bool _prepareLinear(SwFill* fill, const LinearGradient* linear, const Matrix& transform) in _prepareLinear() argument
233 auto gradTransform = linear->transform(); in _prepareLinear()
237 gradTransform = transform * gradTransform; in _prepareLinear()
239 gradTransform = transform; in _prepareLinear()
258 bool _prepareRadial(SwFill* fill, const RadialGradient* radial, const Matrix& transform) in _prepareRadial() argument
300 auto gradTransform = radial->transform(); in _prepareRadial()
303 if (isTransformation) gradTransform = transform * gradTransform; in _prepareRadial()
305 gradTransform = transform; in _prepareRadial()
828 bool fillGenColorTable(SwFill* fill, const Fill* fdata, const Matrix& transform, SwSurface* surface… in fillGenColorTable() argument
835 … if (!_prepareLinear(fill, static_cast<const LinearGradient*>(fdata), transform)) return false; in fillGenColorTable()
837 … if (!_prepareRadial(fill, static_cast<const RadialGradient*>(fdata), transform)) return false; in fillGenColorTable()