Searched refs:shadowContext (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageCairo.cpp142 cairo_t* shadowContext = shadow->beginShadowLayer(context, dstRect); local
143 if (shadowContext) {
144 cairo_translate(shadowContext, dstRect.x(), dstRect.y());
145 cairo_set_source(shadowContext, pattern);
146 cairo_rectangle(shadowContext, 0, 0, dstRect.width(), dstRect.height());
147 cairo_fill(shadowContext);
H A DFontCairo.cpp91 cairo_t* shadowContext = shadow->beginShadowLayer(graphicsContext, fontExtentsRect); local
92 if (shadowContext) {
93 prepareContextForGlyphDrawing(shadowContext, font, point);
94 drawGlyphsToContext(shadowContext, font, glyphs, numGlyphs);
H A DGraphicsContextCairo.cpp170 cairo_t* shadowContext = shadow->beginShadowLayer(context, solidFigureExtents); local
171 if (!shadowContext)
176 copyContextProperties(cairoContext, shadowContext);
177 cairo_append_path(shadowContext, path.get());
180 setPlatformFill(context, shadowContext);
182 setPlatformStroke(context, shadowContext);
/external/webkit/Source/WebCore/platform/graphics/
H A DShadowBlur.cpp505 GraphicsContext* shadowContext = m_layerImage->context(); local
506 shadowContext->save();
509 shadowContext->clearRect(FloatRect(0, 0, m_layerSize.width() + 1, m_layerSize.height() + 1));
510 shadowContext->translate(m_layerContextTranslation);
511 shadowContext->setFillColor(Color::black, ColorSpaceDeviceRGB);
513 shadowContext->fillRect(shadowedRect);
517 shadowContext->fillPath(path);
522 shadowContext->restore();
545 GraphicsContext* shadowContext = m_layerImage->context(); local
546 shadowContext
625 GraphicsContext* shadowContext = m_layerImage->context(); local
689 GraphicsContext* shadowContext = m_layerImage->context(); local
810 GraphicsContext* shadowContext = m_layerImage->context(); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp248 cairo_t* shadowContext = shadow->beginShadowLayer(graphicsContext, extents); local
249 if (shadowContext) {
250 cairo_translate(shadowContext, point.x(), point.y());
251 pango_cairo_show_layout_line(shadowContext, layoutLine);

Completed in 753 milliseconds