HomeSort by relevance Sort by last modified time
    Searched refs:blendMode (Results 1 - 25 of 43) 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/platform/graphics/
CrossfadeGeneratedImage.cpp 85 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode)
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)
109 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, 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, 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, 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, WebBlendMode blendMode)
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);
GraphicsContextState.cpp 232 void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
235 m_blendMode = blendMode;
236 SkXfermode::Mode xferMode = WebCoreCompositeToSkiaComposite(compositeOperation, blendMode);
ImageBuffer.cpp 256 void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect* srcPtr, CompositeOperator op, WebBlendMode blendMode)
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);
BitmapImage.cpp 261 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode)
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)
305 image->draw(ctxt, normSrcRect, normDstRect, compositeOp, blendMode);
GraphicsContextState.h 127 WebBlendMode blendMode() const { return m_blendMode; }
GraphicsContext.cpp 392 void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
396 mutableState()->setCompositeOperation(compositeOperation, blendMode);
460 layerPaint.setXfermodeMode(WebCoreCompositeToSkiaComposite(op, m_paintState->blendMode()));
    [all...]
GraphicsLayer.cpp 571 json->setString("blendMode", compositeOperatorName(CompositeSourceOver, m_blendMode));
870 void GraphicsLayer::setBlendMode(WebBlendMode blendMode)
872 if (m_blendMode == blendMode)
874 m_blendMode = blendMode;
875 platformLayer()->setBlendMode(WebBlendMode(blendMode));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.h 35 WebBlendMode blendMode() const;
FEBlend.cpp 53 WebBlendMode FEBlend::blendMode() const
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.cpp 81 SkXfermode::Mode WebCoreCompositeToSkiaComposite(CompositeOperator op, WebBlendMode blendMode)
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)];
NativeImageSkia.cpp 162 WebBlendMode blendMode) const
169 context->preparePaintForDrawRectToRect(&paint, srcRect, destRect, compositeOp, blendMode, isLazyDecoded, isDataComplete());
203 WebBlendMode blendMode,
298 paint.setXfermodeMode(WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
  /external/deqp/framework/referencerenderer/
rrRenderState.hpp 108 enum BlendMode
240 BlendMode blendMode;
274 , blendMode (BLENDMODE_NONE)
rrFragmentOperations.cpp     [all...]
  /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/cc/blink/
web_layer_impl.h 76 virtual blink::WebBlendMode blendMode() const;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 701 blink::WebBlendMode blendMode = blink::WebBlendModeNormal;
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);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.h 79 WebBlendMode blendMode() const { return static_cast<WebBlendMode>(m_blendMode); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 125 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;
  /external/deqp/modules/gles3/functional/
es3fBlendTests.cpp 309 referenceState.blendMode = rr::BLENDMODE_NONE;
311 referenceState.blendMode = rr::BLENDMODE_STANDARD;

Completed in 1050 milliseconds

1 2