Searched refs:blendMode (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
H A DSVGImageForContainer.cpp37 const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
39 m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect, compositeOp, blendMode);
43 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
45 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
36 draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) argument
42 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) argument
H A DSVGImage.cpp185 const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
204 draw(context, dstRect, scaledSrc, compositeOp, blendMode);
223 const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
253 image->drawPattern(context, scaledSrcRect, scaleWithoutCTM, phase, compositeOp, dstRect, blendMode, repeatSpacing);
256 void SVGImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) argument
262 context->setCompositeOperation(compositeOp, blendMode);
265 bool compositingRequiresTransparencyLayer = compositeOp != CompositeSourceOver || blendMode != blink::WebBlendModeNormal;
184 drawForContainer(GraphicsContext* context, const FloatSize containerSize, float zoom, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) argument
222 drawPatternForContainer(GraphicsContext* context, const FloatSize containerSize, float zoom, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCrossfadeGeneratedImage.cpp85 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode) argument
88 context->setCompositeOperation(compositeOp, blendMode);
98 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
109 imageBuffer->drawPattern(context, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
H A DImage.cpp119 void Image::draw(GraphicsContext* ctx, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator op, WebBlendMode blendMode, RespectImageOrientationEnum) argument
121 draw(ctx, dstRect, srcRect, op, blendMode);
124 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, CompositeOperator op, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
156 draw(ctxt, destRect, visibleSrcRect, op, blendMode);
161 drawPattern(ctxt, tileRect, scale, oneTileRect.location(), op, destRect, blendMode, repeatSpacing);
226 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing)
230 bitmap->drawPattern(context, adjustForNegativeSize(floatSrcRect), scale, phase, compositeOp, destRect, blendMode, repeatSpacing);
225 drawPattern(GraphicsContext* context, const FloatRect& floatSrcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
H A DGradientGeneratedImage.cpp34 void GradientGeneratedImage::draw(GraphicsContext* destContext, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode) argument
37 destContext->setCompositeOperation(compositeOp, blendMode);
48 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing)
97 draw(destContext, tileDstRect, visibleSrcRect, compositeOp, blendMode);
47 drawPattern(GraphicsContext* destContext, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
H A DGraphicsContextState.cpp232 void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode) argument
235 m_blendMode = blendMode;
236 SkXfermode::Mode xferMode = WebCoreCompositeToSkiaComposite(compositeOperation, blendMode);
H A DImageBuffer.cpp256 void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect* srcPtr, CompositeOperator op, WebBlendMode blendMode) argument
264 context->drawPicture(picture.release(), destRect, srcRect, op, blendMode);
278 context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation);
289 const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing)
296 image->drawPattern(context, srcRect, scale, phase, op, destRect, blendMode, repeatSpacing);
288 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
H A DBitmapImage.cpp261 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode) argument
263 draw(ctxt, dstRect, srcRect, compositeOp, blendMode, DoNotRespectImageOrientation);
266 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation) argument
305 image->draw(ctxt, normSrcRect, normDstRect, compositeOp, blendMode);
H A DGraphicsContextState.h127 WebBlendMode blendMode() const { return m_blendMode; } function in class:blink::FINAL
H A DGraphicsContext.cpp392 void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode) argument
396 mutableState()->setCompositeOperation(compositeOperation, blendMode);
460 layerPaint.setXfermodeMode(WebCoreCompositeToSkiaComposite(op, m_paintState->blendMode()));
1094 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation) argument
1098 image->draw(this, dest, src, op, blendMode, shouldRespectImageOrientation);
1101 void GraphicsContext::drawTiledImage(Image* image, const IntRect& destRect, const IntPoint& srcPoint, const IntSize& tileSize, CompositeOperator op, WebBlendMode blendMode, const IntSize& repeatSpacing) argument
1105 image->drawTiled(this, destRect, srcPoint, tileSize, op, blendMode, repeatSpacing);
1124 const FloatRect* src, CompositeOperator op, WebBlendMode blendMode)
1129 image->draw(this, dest, src, op, blendMode);
1132 void GraphicsContext::drawPicture(PassRefPtr<SkPicture> picture, const FloatRect& dest, const FloatRect& src, CompositeOperator op, WebBlendMode blendMode) argument
1123 drawImageBuffer(ImageBuffer* image, const FloatRect& dest, const FloatRect* src, CompositeOperator op, WebBlendMode blendMode) argument
1971 preparePaintForDrawRectToRect( SkPaint* paint, const SkRect& srcRect, const SkRect& destRect, CompositeOperator compositeOp, WebBlendMode blendMode, bool isLazyDecoded, bool isDataComplete) const argument
[all...]
H A DGraphicsLayer.cpp571 json->setString("blendMode", compositeOperatorName(CompositeSourceOver, m_blendMode));
870 void GraphicsLayer::setBlendMode(WebBlendMode blendMode) argument
872 if (m_blendMode == blendMode)
874 m_blendMode = blendMode;
875 platformLayer()->setBlendMode(WebBlendMode(blendMode));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEBlend.h35 WebBlendMode blendMode() const;
H A DFEBlend.cpp53 WebBlendMode FEBlend::blendMode() const function in class:blink::FEBlend
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DSkiaUtils.cpp81 SkXfermode::Mode WebCoreCompositeToSkiaComposite(CompositeOperator op, WebBlendMode blendMode) argument
83 if (blendMode != WebBlendModeNormal) {
84 if (static_cast<uint8_t>(blendMode) >= SK_ARRAY_COUNT(gMapBlendOpsToXfermodeModes)) {
85 SkDEBUGF(("GraphicsContext::setPlatformCompositeOperation unknown WebBlendMode %d\n", blendMode));
88 return gMapBlendOpsToXfermodeModes[static_cast<uint8_t>(blendMode)];
H A DNativeImageSkia.cpp162 WebBlendMode blendMode) const
169 context->preparePaintForDrawRectToRect(&paint, srcRect, destRect, compositeOp, blendMode, isLazyDecoded, isDataComplete());
203 WebBlendMode blendMode,
298 paint.setXfermodeMode(WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
196 drawPattern( GraphicsContext* context, const FloatRect& floatSrcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, WebBlendMode blendMode, const IntSize& repeatSpacing) const argument
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp240 BlendMode blendMode; member in struct:rr::FragmentOperationState
274 , blendMode (BLENDMODE_NONE)
H A DrrFragmentOperations.cpp844 if (state.blendMode == BLENDMODE_STANDARD)
868 else if (state.blendMode == BLENDMODE_ADVANCED)
891 DE_ASSERT(state.blendMode == BLENDMODE_NONE);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebLayer.h85 virtual WebBlendMode blendMode() const = 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathBlender.cpp46 float SVGPathBlender::blendAnimatedDimensonalFloat(float from, float to, FloatBlendMode blendMode) argument
56 float fromValue = blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y();
57 float toValue = blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y();
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp701 blink::WebBlendMode blendMode = blink::WebBlendModeNormal; local
702 if (!parseCompositeAndBlendOperator(operation, op, blendMode))
704 if ((state().m_globalComposite == op) && (state().m_globalBlend == blendMode))
709 modifiableState().m_globalBlend = blendMode;
712 c->setCompositeOperation(op, blendMode);
1479 blink::WebBlendMode blendMode = c ? c->blendModeOperation() : blink::WebBlendModeNormal; local
1480 drawImageInternal(imageSource, sx, sy, sw, sh, dx, dy, dw, dh, exceptionState, op, blendMode, c);
1486 CompositeOperator op, blink::WebBlendMode blendMode, GraphicsContext* c)
1533 c->drawImage(image.get(), dstRect, srcRect, op, blendMode);
1538 c->drawImage(image.get(), dstRect, srcRect, op, blendMode);
1483 drawImageInternal(CanvasImageSource* imageSource, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState& exceptionState, CompositeOperator op, blink::WebBlendMode blendMode, GraphicsContext* c) argument
[all...]
/external/chromium_org/cc/blink/
H A Dweb_layer_impl.h76 virtual blink::WebBlendMode blendMode() const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DFillLayer.h79 WebBlendMode blendMode() const { return static_cast<WebBlendMode>(m_blendMode); } function in class:blink::FillLayer
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.cpp125 m_paintInfo->context->setCompositeOperation(CompositeSourceOver, style->blendMode());
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.cpp256 referenceState.blendMode = rr::BLENDMODE_NONE;
258 referenceState.blendMode = rr::BLENDMODE_STANDARD;
/external/deqp/modules/gles3/functional/
H A Des3fBlendTests.cpp309 referenceState.blendMode = rr::BLENDMODE_NONE;
311 referenceState.blendMode = rr::BLENDMODE_STANDARD;

Completed in 4860 milliseconds

12