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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageForContainer.cpp 39 const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
41 m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect, compositeOp, blendMode);
45 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, BlendMode blendMode)
47 m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode);
SVGImage.cpp 119 const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
141 draw(context, dstRect, scaledSrc, compositeOp, blendMode);
162 const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, BlendMode blendMode)
189 image->drawPattern(context, scaledSrcRect, scaleWithoutCTM, phase, compositeOp, dstRect, blendMode);
192 void SVGImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
200 context->setCompositeOperation(compositeOp, blendMode);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterProgramInfo.h 45 : blendMode(BlendModeNormal)
52 return blendMode == o.blendMode && compositeOperator == o.compositeOperator;
55 BlendMode blendMode;
CustomFilterProgramInfo.cpp 87 static_cast<uintptr_t>(blendsElementTexture ? m_mixSettings.blendMode : 0),
CustomFilterValidatedProgram.cpp 262 builder.append(blendFunctionString(m_programInfo.mixSettings().blendMode));
285 String CustomFilterValidatedProgram::blendFunctionString(BlendMode blendMode)
296 switch (blendMode) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
CrossfadeGeneratedImage.cpp 83 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
86 context->setCompositeOperation(compositeOp, blendMode);
96 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, BlendMode blendMode)
107 imageBuffer->drawPattern(context, srcRect, scale, phase, compositeOp, dstRect, blendMode);
GeneratorGeneratedImage.cpp 36 void GeneratorGeneratedImage::draw(GraphicsContext* destContext, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
39 destContext->setCompositeOperation(compositeOp, blendMode);
50 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, BlendMode blendMode)
97 draw(destContext, tileDstRect, visibleSrcRect, compositeOp, blendMode);
103 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, BlendMode blendMode)
114 drawPatternWithoutCache(destContext, srcRect, scale, phase, compositeOp, destRect, blendMode);
142 m_cachedImageBuffer->drawPattern(destContext, adjustedSrcRect, scaleWithoutCTM, phase, compositeOp, destRect, blendMode);
    [all...]
Image.cpp 121 void Image::draw(GraphicsContext* ctx, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator op, BlendMode blendMode, RespectImageOrientationEnum)
123 draw(ctx, dstRect, srcRect, op, blendMode);
126 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, CompositeOperator op, BlendMode blendMode)
157 draw(ctxt, destRect, visibleSrcRect, op, blendMode);
162 drawPattern(ctxt, tileRect, scale, oneTileRect.location(), op, destRect, blendMode);
227 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, BlendMode blendMode)
231 bitmap->drawPattern(context, adjustForNegativeSize(floatSrcRect), scale, phase, compositeOp, destRect, blendMode);
    [all...]
BitmapImage.cpp 288 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
290 draw(ctxt, dstRect, srcRect, compositeOp, blendMode, DoNotRespectImageOrientation);
293 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
332 bm->draw(ctxt, normSrcRect, normDstRect, WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
GraphicsContext.cpp 366 void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, BlendMode blendMode)
369 m_state->m_blendMode = blendMode;
370 m_state->m_xferMode = WebCoreCompositeToSkiaComposite(compositeOperation, blendMode);
997 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, BlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation, bool useLowQualityScale)
1008 image->draw(this, dest, src, op, blendMode, shouldRespectImageOrientation);
    [all...]
ImageBuffer.cpp 246 CompositeOperator op, BlendMode blendMode, bool useLowQualityScale)
253 context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, useLowQualityScale);
257 const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, BlendMode blendMode)
264 image->drawPattern(context, srcRect, scale, phase, op, destRect, blendMode);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEBlend.h 45 BlendModeType blendMode() const;
FEBlend.cpp 57 BlendModeType FEBlend::blendMode() const
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
SkiaUtils.cpp 62 // keep this array in sync with BlendMode enum in GraphicsTypes.h
82 SkXfermode::Mode WebCoreCompositeToSkiaComposite(CompositeOperator op, BlendMode blendMode)
84 if (blendMode != BlendModeNormal) {
85 if ((uint8_t)blendMode >= SK_ARRAY_COUNT(gMapBlendOpsToXfermodeModes)) {
86 SkDEBUGF(("GraphicsContext::setPlatformCompositeOperation unknown BlendMode %d\n", blendMode));
89 return (SkXfermode::Mode)gMapBlendOpsToXfermodeModes[(uint8_t)blendMode];
NativeImageSkia.cpp 387 BlendMode blendMode) const
464 paint.setXfermodeMode(WebCoreCompositeToSkiaComposite(compositeOp, blendMode));
  /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/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/core/rendering/svg/
SVGRenderingContext.cpp 102 BlendMode blendMode = isRenderingMask ? BlendModeNormal : style->blendMode();
103 if (opacity < 1 || blendMode != BlendModeNormal) {
106 if (opacity < 1 || blendMode != BlendModeNormal) {
108 if (blendMode != BlendModeNormal) {
113 m_paintInfo->context->setCompositeOperation(CompositeSourceOver, blendMode);
  /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/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/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 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);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.h 79 BlendMode blendMode() const { return static_cast<BlendMode>(m_blendMode); }
111 void setBlendMode(BlendMode b) { m_blendMode = b; m_blendModeSet = true; }
180 static BlendMode initialFillBlendMode(EFillLayerType) { return BlendModeNormal; }
211 unsigned m_blendMode : 5; // BlendMode
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 345 if (state.getBlendMode() != context.blendMode) {
346 if (state.getBlendMode() == RenderState.BlendMode.Off) {
380 context.blendMode = state.getBlendMode();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 274 mixSettings.blendMode = *primitiveValue;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 1398 milliseconds

1 2