Searched refs:fillPattern (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFontCairo.cpp125 } else if (context->fillPattern()) {
127 cairo_pattern_t* pattern = context->fillPattern()->createPlatformPattern(affine);
H A DGraphicsContextCairo.cpp79 if (state.fillPattern) {
81 pattern = state.fillPattern->createPlatformPattern(affine);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp501 if (shadow->mustUseContextShadow(this) || m_state.fillPattern || m_state.fillGradient)
505 if (m_state.fillPattern) {
508 shadowPainter->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
530 if (m_state.fillPattern) {
532 p->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
675 if (m_state.fillPattern) {
676 QPixmap* image = m_state.fillPattern->tileImage()->nativeImageForCurrentFrame();
679 drawRepeatPattern(shadowPainter, image, normalizedRect, m_state.fillPattern->repeatX(), m_state.fillPattern->repeatY());
684 drawRepeatPattern(p, image, normalizedRect, m_state.fillPattern
[all...]
H A DFontQt.cpp89 } else if (ctx->fillPattern()) {
91 textFillPen = QPen(QBrush(ctx->fillPattern()->createPlatformPattern(affine)), 0);
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.cpp217 m_state.fillPattern.clear();
278 m_state.fillPattern = pattern;
279 setPlatformFillPattern(m_state.fillPattern.get());
302 m_state.fillPattern.clear();
316 Pattern* GraphicsContext::fillPattern() const function in class:WebCore::GraphicsContext
318 return m_state.fillPattern.get();
H A DGraphicsContext.h193 RefPtr<Pattern> fillPattern; member in struct:WebCore::GraphicsContextState
258 Pattern* fillPattern() const;
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DGraphicsContextAndroid.cpp76 Pattern* pat = gc->state().fillPattern.get();
553 void GraphicsContext::setPlatformFillPattern(Pattern* fillPattern) argument
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp473 RetainPtr<CGPatternRef> platformPattern(AdoptCF, m_state.fillPattern->createPlatformPattern(getCTM()));
486 bool shouldFill = state.fillPattern || state.fillColor.alpha();
530 if (state.fillPattern)
595 if (m_state.fillPattern)
695 if (m_state.fillPattern)
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp268 if (context->fillPattern() || context->strokePattern())

Completed in 144 milliseconds