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

  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageCairo.cpp 142 cairo_t* shadowContext = shadow->beginShadowLayer(context, dstRect);
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);
FontCairo.cpp 91 cairo_t* shadowContext = shadow->beginShadowLayer(graphicsContext, fontExtentsRect);
92 if (shadowContext) {
93 prepareContextForGlyphDrawing(shadowContext, font, point);
94 drawGlyphsToContext(shadowContext, font, glyphs, numGlyphs);
GraphicsContextCairo.cpp 170 cairo_t* shadowContext = shadow->beginShadowLayer(context, solidFigureExtents);
171 if (!shadowContext)
176 copyContextProperties(cairoContext, shadowContext);
177 cairo_append_path(shadowContext, path.get());
180 setPlatformFill(context, shadowContext);
182 setPlatformStroke(context, shadowContext);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp 505 GraphicsContext* shadowContext = m_layerImage->context();
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();
546 shadowContext->save()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 248 cairo_t* shadowContext = shadow->beginShadowLayer(graphicsContext, extents);
249 if (shadowContext) {
250 cairo_translate(shadowContext, point.x(), point.y());
251 pango_cairo_show_layout_line(shadowContext, layoutLine);

Completed in 95 milliseconds