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

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 62 RefPtr<Gradient> strokeGradient;
GraphicsContext.cpp 127 m_common->state.strokeGradient.clear();
224 m_common->state.strokeGradient.clear();
248 m_common->state.strokeGradient = gradient;
250 setPlatformStrokeGradient(m_common->state.strokeGradient.get());
270 Gradient* GraphicsContext::strokeGradient() const
272 return m_common->state.strokeGradient.get();
GraphicsContext.h 176 Gradient* strokeGradient() const;
  /external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp 89 if (ctx->strokeGradient()) {
90 QBrush brush(*ctx->strokeGradient()->platformGradient());
91 brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform());
GraphicsContextQt.cpp 565 if (m_common->state.strokePattern || m_common->state.strokeGradient || strokeColor().alpha()) {
582 } else if (m_common->state.strokeGradient) {
583 QBrush brush(*m_common->state.strokeGradient->platformGradient());
584 brush.setTransform(m_common->state.strokeGradient->gradientSpaceTransform());
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp 161 if (context->strokeGradient()) {
162 cairo_set_source(cr, context->strokeGradient()->platformGradient());
GraphicsContextCairo.cpp 97 } else if (gcp->state.strokeGradient)
98 cairo_set_source(cr, gcp->state.strokeGradient->platformGradient());
103 if (gcp->state.globalAlpha < 1.0f && (gcp->state.strokePattern || gcp->state.strokeGradient)) {
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 533 if (state.fillGradient || state.strokeGradient) {
592 // FIXME: Is this helpful and correct in the strokePattern and strokeGradient cases?
595 if (m_common->state.strokeGradient) {
599 CGContextConcatCTM(context, m_common->state.strokeGradient->gradientSpaceTransform());
600 m_common->state.strokeGradient->paint(this);
856 // FIXME: Is this helpful and correct in the strokePattern and strokeGradient cases?
859 if (m_common->state.strokeGradient) {
865 m_common->state.strokeGradient->paint(this);
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 249 if (context->fillGradient() || context->strokeGradient())
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp     [all...]

Completed in 35 milliseconds