HomeSort by relevance Sort by last modified time
    Searched refs:blendMode (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageForContainer.cpp 37 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);
SVGImage.cpp 185 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)
262 context->setCompositeOperation(compositeOp, blendMode);
265 bool compositingRequiresTransparencyLayer = compositeOp != CompositeSourceOver || blendMode != blink::WebBlendModeNormal;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerBlendInfo.h 79 blink::WebBlendMode blendMode() const { return m_blendMode; }
RenderLayerBlendInfo.cpp 71 blink::WebBlendMode newBlendMode = m_renderer.style()->blendMode();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
CrossfadeGeneratedImage.cpp 87 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
90 context->setCompositeOperation(compositeOp, blendMode);
100 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
111 imageBuffer->drawPattern(context, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
Image.cpp 119 void Image::draw(GraphicsContext* ctx, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator op, blink::WebBlendMode blendMode, RespectImageOrientationEnum)
121 draw(ctx, dstRect, srcRect, op, blendMode);
124 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, CompositeOperator op, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
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, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
230 bitmap->drawPattern(context, adjustForNegativeSize(floatSrcRect), scale, phase, compositeOp, destRect, blendMode, repeatSpacing);
GradientGeneratedImage.cpp 34 void GradientGeneratedImage::draw(GraphicsContext* destContext, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
37 destContext->setCompositeOperation(compositeOp, blendMode);
48 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
97 draw(destContext, tileDstRect, visibleSrcRect, compositeOp, blendMode);
GraphicsContextState.cpp 232 void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, blink::WebBlendMode blendMode)
235 m_blendMode = blendMode;
236 m_xferMode = WebCoreCompositeToSkiaComposite(compositeOperation, blendMode);
BitmapImage.cpp 262 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
264 draw(ctxt, dstRect, srcRect, compositeOp, blendMode, DoNotRespectImageOrientation);
267 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
306 bm->draw(ctxt, normSrcRect, normDstRect, WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
GraphicsContextState.h 131 blink::WebBlendMode blendMode() const { return m_blendMode; }
ImageBuffer.cpp 260 const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
267 image->drawPattern(context, srcRect, scale, phase, op, destRect, blendMode, repeatSpacing);
GraphicsLayer.cpp 581 ts << "(blendMode " << compositeOperatorName(CompositeSourceOver, m_blendMode) << ")\n";
951 void GraphicsLayer::setBlendMode(blink::WebBlendMode blendMode)
953 if (m_blendMode == blendMode)
955 m_blendMode = blendMode;
956 platformLayer()->setBlendMode(blink::WebBlendMode(blendMode));
    [all...]
GraphicsContext.cpp 390 void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
394 mutableState()->setCompositeOperation(compositeOperation, blendMode);
455 layerPaint.setXfermode(WebCoreCompositeToSkiaComposite(op, m_paintState->blendMode()).get());
1013 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOri (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.h 44 BlendModeType blendMode() const;
FEBlend.cpp 52 BlendModeType FEBlend::blendMode() const
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.cpp 81 PassRefPtr<SkXfermode> WebCoreCompositeToSkiaComposite(CompositeOperator op, blink::WebBlendMode blendMode)
83 if (blendMode != blink::WebBlendModeNormal) {
84 if ((uint8_t)blendMode >= SK_ARRAY_COUNT(gMapBlendOpsToXfermodeModes)) {
85 SkDEBUGF(("GraphicsContext::setPlatformCompositeOperation unknown blink::WebBlendMode %d\n", blendMode));
88 SkXfermode::Mode mode = (SkXfermode::Mode)gMapBlendOpsToXfermodeModes[(uint8_t)blendMode];
NativeImageSkia.cpp 434 blink::WebBlendMode blendMode,
529 paint.setXfermode(WebCoreCompositeToSkiaComposite(compositeOp, blendMode).get());
  /external/deqp/framework/referencerenderer/
rrRenderState.hpp 108 enum BlendMode
240 BlendMode blendMode;
274 , blendMode (BLENDMODE_NONE)
  /external/chromium_org/third_party/WebKit/public/platform/
WebLayer.h 85 virtual WebBlendMode blendMode() const = 0;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBlender.cpp 46 float SVGPathBlender::blendAnimatedDimensonalFloat(float from, float to, FloatBlendMode blendMode)
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/content/renderer/compositor_bindings/
web_layer_impl.h 78 virtual blink::WebBlendMode blendMode() const;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 682 blink::WebBlendMode blendMode = blink::WebBlendModeNormal;
683 if (!parseCompositeAndBlendOperator(operation, op, blendMode))
685 if ((state().m_globalComposite == op) && (state().m_globalBlend == blendMode))
689 modifiableState().m_globalBlend = blendMode;
693 c->setCompositeOperation(op, blendMode);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.h 79 blink::WebBlendMode blendMode() const { return static_cast<blink::WebBlendMode>(m_blendMode); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 130 m_paintInfo->context->setCompositeOperation(CompositeSourceOver, style->blendMode());
  /external/deqp/modules/gles2/functional/
es2fBlendTests.cpp 256 referenceState.blendMode = rr::BLENDMODE_NONE;
258 referenceState.blendMode = rr::BLENDMODE_STANDARD;

Completed in 425 milliseconds

1 2