HomeSort by relevance Sort by last modified time
    Searched refs:strokeGradient (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 519 if (state.fillGradient || state.strokeGradient) {
610 if (m_state.strokeGradient) {
632 CGContextConcatCTM(layerContext, m_state.strokeGradient->gradientSpaceTransform());
633 m_state.strokeGradient->paint(layerContext);
643 CGContextConcatCTM(context, m_state.strokeGradient->gradientSpaceTransform());
644 m_state.strokeGradient->paint(this);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FontCairo.cpp 148 if (context->strokeGradient()) {
149 cairo_set_source(cr, context->strokeGradient()->platformGradient());
GraphicsContextCairo.cpp 104 } else if (state.strokeGradient)
105 cairo_set_source(cr, state.strokeGradient->platformGradient());
110 if (state.globalAlpha < 1.0f && (state.strokePattern || state.strokeGradient)) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 131 m_state.strokeGradient.clear();
265 m_state.strokeGradient.clear();
289 m_state.strokeGradient = gradient;
291 setPlatformStrokeGradient(m_state.strokeGradient.get());
311 Gradient* GraphicsContext::strokeGradient() const
313 return m_state.strokeGradient.get();
GraphicsContext.h 189 RefPtr<Gradient> strokeGradient;
249 Gradient* strokeGradient() const;
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 98 if (ctx->strokeGradient()) {
99 QBrush brush(*ctx->strokeGradient()->platformGradient());
100 brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform());
GraphicsContextQt.cpp 553 if (shadow->mustUseContextShadow(this) || m_state.strokePattern || m_state.strokeGradient)
559 if (m_state.strokeGradient) {
560 QBrush brush(*m_state.strokeGradient->platformGradient());
561 brush.setTransform(m_state.strokeGradient->gradientSpaceTransform());
589 } else if (m_state.strokeGradient) {
590 QBrush brush(*m_state.strokeGradient->platformGradient());
591 brush.setTransform(m_state.strokeGradient->gradientSpaceTransform());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsContextAndroid.cpp 90 grad = gc->state().strokeGradient.get();
562 void GraphicsContext::setPlatformStrokeGradient(Gradient* strokeGradient)
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 264 if (context->fillGradient() || context->strokeGradient())

Completed in 26 milliseconds