Home | History | Annotate | Download | only in canvas

Lines Matching defs:blendMode

584     BlendMode blendMode = BlendModeNormal;
585 if (!parseCompositeAndBlendOperator(operation, op, blendMode))
587 if ((state().m_globalComposite == op) && (state().m_globalBlend == blendMode))
591 modifiableState().m_globalBlend = blendMode;
595 c->setCompositeOperation(op, blendMode);
1215 void CanvasRenderingContext2D::drawImageInternal(Image* image, const FloatRect& srcRect, const FloatRect& dstRect, const CompositeOperator& op, const BlendMode& blendMode)
1227 c->drawImage(image, dstRect, srcRect, op, blendMode);
1234 c->drawImage(image, dstRect, srcRect, op, blendMode);
1237 c->drawImage(image, dstRect, srcRect, op, blendMode);
1347 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, const FloatRect& srcRect, const FloatRect& dstRect, const CompositeOperator& op, const BlendMode& blendMode, ExceptionState& es)
1394 drawImageInternal(imageForRendering, normalizedSrcRect, normalizedDstRect, op, blendMode);
1555 BlendMode blendOp = BlendModeNormal;