Lines Matching refs:opacity

51     uint8_t opacity;  member
101 … if (!rshape->stroke->fill && (MULTIPLY(rshape->stroke->color[3], opacity) == 0)) return 0.0f; in validStrokeWidth()
119 if (opacity == 0 && !clipper) { in run()
136 alpha = MULTIPLY(alpha, opacity); in run()
154 … if (!shapeGenFillColors(&shape, fill, transform, surface, opacity, ctable)) goto err; in run()
168 … if (!shapeGenStrokeFillColors(&shape, fill, transform, surface, opacity, ctable)) goto err; in run()
232 …nderUpdateFlag::Image | RenderUpdateFlag::Transform | RenderUpdateFlag::Color)) && (opacity > 0)) { in run()
274 static void _renderFill(SwShapeTask* task, SwSurface* surface, uint8_t opacity) in _renderFill() argument
278 rasterGradientShape(surface, &task->shape, fill, opacity); in _renderFill()
281 a = MULTIPLY(opacity, a); in _renderFill()
286 static void _renderStroke(SwShapeTask* task, SwSurface* surface, uint8_t opacity) in _renderStroke() argument
290 rasterGradientStroke(surface, &task->shape, strokeFill, opacity); in _renderStroke()
293 a = MULTIPLY(opacity, a); in _renderStroke()
420 if (task->opacity == 0) return true; in renderImage()
422 return rasterImage(surface, &task->image, task->transform, task->bbox, task->opacity); in renderImage()
433 if (task->opacity == 0) return true; in renderShape()
437 _renderStroke(task, surface, task->opacity); in renderShape()
438 _renderFill(task, surface, task->opacity); in renderShape()
440 _renderFill(task, surface, task->opacity); in renderShape()
441 _renderStroke(task, surface, task->opacity); in renderShape()
508 bool SwRenderer::beginComposite(RenderCompositor* cmp, CompositeMethod method, uint8_t opacity) in beginComposite() argument
514 p->opacity = opacity; in beginComposite()
643 return rasterImage(surface, &p->image, m, p->bbox, p->opacity); in endComposite()
690 …* task, const Matrix& transform, const Array<RenderData>& clips, uint8_t opacity, RenderUpdateFlag… in prepareCommon() argument
709 task->opacity = opacity; in prepareCommon()
729 …derData data, const Matrix& transform, Array<RenderData>& clips, uint8_t opacity, RenderUpdateFlag… in prepare() argument
738 return prepareCommon(task, transform, clips, opacity, flags); in prepare()
742 …derData data, const Matrix& transform, Array<RenderData>& clips, uint8_t opacity, RenderUpdateFlag… in prepare() argument
752 return prepareCommon(task, transform, clips, opacity, flags); in prepare()