Home
last modified time | relevance | path

Searched refs:strokeGradient (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp519 if (state.fillGradient || state.strokeGradient) { in drawPath()
610 if (m_state.strokeGradient) { in strokePath()
632 CGContextConcatCTM(layerContext, m_state.strokeGradient->gradientSpaceTransform()); in strokePath()
633 m_state.strokeGradient->paint(layerContext); in strokePath()
643 CGContextConcatCTM(context, m_state.strokeGradient->gradientSpaceTransform()); in strokePath()
644 m_state.strokeGradient->paint(this); in strokePath()
1004 if (m_state.strokeGradient) { in strokeRect()
1025 CGContextConcatCTM(layerContext, m_state.strokeGradient->gradientSpaceTransform()); in strokeRect()
1026 m_state.strokeGradient->paint(layerContext); in strokeRect()
1038 CGContextConcatCTM(context, m_state.strokeGradient->gradientSpaceTransform()); in strokeRect()
[all …]
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsContext.cpp131 m_state.strokeGradient.clear(); in setStrokeColor()
265 m_state.strokeGradient.clear(); in setStrokePattern()
289 m_state.strokeGradient = gradient; in setStrokeGradient()
291 setPlatformStrokeGradient(m_state.strokeGradient.get()); in setStrokeGradient()
311 Gradient* GraphicsContext::strokeGradient() const in strokeGradient() function in WebCore::GraphicsContext
313 return m_state.strokeGradient.get(); in strokeGradient()
DGraphicsContext.h189 RefPtr<Gradient> strokeGradient; member
249 Gradient* strokeGradient() const;
/external/webkit/Source/WebCore/platform/graphics/cairo/
DFontCairo.cpp148 if (context->strokeGradient()) { in drawGlyphs()
149 cairo_set_source(cr, context->strokeGradient()->platformGradient()); in drawGlyphs()
DGraphicsContextCairo.cpp104 } else if (state.strokeGradient) in setPlatformStroke()
105 cairo_set_source(cr, state.strokeGradient->platformGradient()); in setPlatformStroke()
110 if (state.globalAlpha < 1.0f && (state.strokePattern || state.strokeGradient)) { in setPlatformStroke()
/external/webkit/Source/WebCore/platform/graphics/qt/
DFontQt.cpp98 if (ctx->strokeGradient()) { in drawTextCommon()
99 QBrush brush(*ctx->strokeGradient()->platformGradient()); in drawTextCommon()
100 brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform()); in drawTextCommon()
DGraphicsContextQt.cpp553 if (shadow->mustUseContextShadow(this) || m_state.strokePattern || m_state.strokeGradient) in strokePath()
559 if (m_state.strokeGradient) { in strokePath()
560 QBrush brush(*m_state.strokeGradient->platformGradient()); in strokePath()
561 brush.setTransform(m_state.strokeGradient->gradientSpaceTransform()); in strokePath()
589 } else if (m_state.strokeGradient) { in strokePath()
590 QBrush brush(*m_state.strokeGradient->platformGradient()); in strokePath()
591 brush.setTransform(m_state.strokeGradient->gradientSpaceTransform()); in strokePath()
/external/webkit/Source/WebCore/platform/graphics/android/context/
DGraphicsContextAndroid.cpp90 grad = gc->state().strokeGradient.get(); in syncPlatformContext()
562 void GraphicsContext::setPlatformStrokeGradient(Gradient* strokeGradient) in setPlatformStrokeGradient() argument
/external/webkit/Source/WebCore/platform/graphics/skia/
DSkiaFontWin.cpp264 if (context->fillGradient() || context->strokeGradient()) in windowsCanHandleTextDrawingWithoutShadow()
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1643975 (WebCore::GraphicsContext::strokeGradient):
46149 (WebCore::GraphicsContext::strokeGradient):
46302 (WebCore::GraphicsContext::strokeGradient):
DChangeLog-2010-01-2930785 (WebCore::GraphicsContext::drawPath): Use fillGradient, strokeGradient,