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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageForContainer.cpp 38 const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
40 m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect, compositeOp, blendMode);
44 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
46 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
SVGImage.cpp 168 const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
187 draw(context, dstRect, scaledSrc, compositeOp, blendMode);
206 const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
234 image->drawPattern(context, scaledSrcRect, scaleWithoutCTM, phase, compositeOp, dstRect, blendMode, repeatSpacing);
237 void SVGImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
243 context->setCompositeOperation(compositeOp, blendMode);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterProgramInfo.h 45 : blendMode(blink::WebBlendModeNormal)
52 return blendMode == o.blendMode && compositeOperator == o.compositeOperator;
55 blink::WebBlendMode blendMode;
CustomFilterProgramInfo.cpp 86 static_cast<uintptr_t>(blendsElementTexture ? m_mixSettings.blendMode : 0),
CustomFilterValidatedProgram.cpp 260 builder.append(blendFunctionString(m_programInfo.mixSettings().blendMode));
283 String CustomFilterValidatedProgram::blendFunctionString(blink::WebBlendMode blendMode)
294 switch (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);
BitmapImage.cpp 250 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
252 draw(ctxt, dstRect, srcRect, compositeOp, blendMode, DoNotRespectImageOrientation);
255 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
294 bm->draw(ctxt, normSrcRect, normDstRect, WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
ImageBuffer.cpp 186 CompositeOperator op, blink::WebBlendMode blendMode, bool useLowQualityScale)
193 context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, useLowQualityScale);
204 const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
211 image->drawPattern(context, srcRect, scale, phase, op, destRect, blendMode, repeatSpacing);
GraphicsContext.cpp 424 void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
427 m_state->m_blendMode = blendMode;
428 m_state->m_xferMode = WebCoreCompositeToSkiaComposite(compositeOperation, blendMode);
    [all...]
GraphicsLayer.cpp 614 ts << "(blendMode " << compositeOperatorName(CompositeSourceOver, m_blendMode) << ")\n";
956 void GraphicsLayer::setBlendMode(blink::WebBlendMode blendMode)
958 if (m_blendMode == blendMode)
960 m_blendMode = blendMode;
961 platformLayer()->setBlendMode(blink::WebBlendMode(blendMode));
    [all...]
GraphicsLayer.h 201 blink::WebBlendMode blendMode() const { return m_blendMode; }
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.h 44 BlendModeType blendMode() const;
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
RenderState.java 126 * <code>BlendMode</code> specifies the blending operation to use.
128 * @see RenderState#setBlendMode(com.jme3.material.RenderState.BlendMode)
130 public enum BlendMode {
299 BlendMode blendMode = BlendMode.Off;
332 oc.write(blendMode, "blendMode", BlendMode.Off);
370 blendMode = ic.readEnum("blendMode", BlendMode.class, BlendMode.Off)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 117 blink::WebBlendMode blendMode = isRenderingMask ? blink::WebBlendModeNormal : style->blendMode();
118 if (opacity < 1 || blendMode != blink::WebBlendModeNormal) {
121 if (opacity < 1 || blendMode != blink::WebBlendModeNormal) {
123 if (blendMode != blink::WebBlendModeNormal) {
128 m_paintInfo->context->setCompositeOperation(CompositeSourceOver, blendMode);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 50 import de.lessvoid.nifty.render.BlendMode;
74 private BlendMode blendMode = null;
159 public void setBlendMode(BlendMode blendMode) {
160 if (this.blendMode != blendMode) {
161 this.blendMode = blendMode;
165 private RenderState.BlendMode convertBlend() {
    [all...]
  /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 403 blink::WebBlendMode blendMode,
495 paint.setXfermode(WebCoreCompositeToSkiaComposite(compositeOp, blendMode).get());
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderContext.java 119 * @see RenderState#setBlendMode(com.jme3.material.RenderState.BlendMode)
121 public RenderState.BlendMode blendMode = RenderState.BlendMode.Off;
284 blendMode = RenderState.BlendMode.Off;
  /external/chromium_org/third_party/WebKit/public/platform/
WebLayer.h 91 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/webkit/renderer/compositor_bindings/
web_layer_impl.h 80 virtual blink::WebBlendMode blendMode() const;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 574 blink::WebBlendMode blendMode = blink::WebBlendModeNormal;
575 if (!parseCompositeAndBlendOperator(operation, op, blendMode))
577 if ((state().m_globalComposite == op) && (state().m_globalBlend == blendMode))
581 modifiableState().m_globalBlend = blendMode;
585 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); }

Completed in 1333 milliseconds

1 2