Home
last modified time | relevance | path

Searched refs:cairoContext (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/gtk/
DWidgetRenderingContext.cpp132 cairo_t* cairoContext = m_graphicsContext->platformContext()->cr(); in ~WidgetRenderingContext() local
133 RefPtr<cairo_pattern_t> previousSource(cairo_get_source(cairoContext)); in ~WidgetRenderingContext()
140 … gdk_cairo_set_source_pixmap(cairoContext, gScratchBuffer, fullTargetRect.x(), fullTargetRect.y()); in ~WidgetRenderingContext()
141 …cairo_rectangle(cairoContext, fullTargetRect.x(), fullTargetRect.y(), fullTargetRect.width(), full… in ~WidgetRenderingContext()
142 cairo_fill(cairoContext); in ~WidgetRenderingContext()
143 cairo_set_source(cairoContext, previousSource.get()); in ~WidgetRenderingContext()
DGtkVersioning.c277 cairo_t *cairoContext = gdk_cairo_create(window); in gdk_window_create_similar_surface() local
278 cairo_surface_t *cairoSurface = cairo_get_target(cairoContext); in gdk_window_create_similar_surface()
280 cairo_destroy(cairoContext); in gdk_window_create_similar_surface()
DRenderThemeGtk3.cpp427 cairo_t* cairoContext = paintInfo.context->platformContext()->cr(); in paintMenuList() local
497 …gtk_render_arrow(arrowStyleContext, cairoContext, G_PI, arrowPosition.x(), arrowPosition.y(), exte… in paintMenuList()
528 gtk_render_frame(separatorStyleContext, cairoContext, in paintMenuList()
542 cairo_save(cairoContext); in paintMenuList()
545 …cairo_rectangle(cairoContext, separatorPosition.x(), separatorPosition.y(), border.left, innerRect… in paintMenuList()
546 cairo_clip(cairoContext); in paintMenuList()
547 gtk_render_line(separatorStyleContext, cairoContext, in paintMenuList()
550 cairo_restore(cairoContext); in paintMenuList()
/external/webkit/Tools/DumpRenderTree/cairo/
DPixelDumpSupportCairo.cpp66 cairo_t* bitmapContext = context->cairoContext(); in computeMD5HashStringForBitmapContext()
91 cairo_surface_t* surface = cairo_get_target(context->cairoContext()); in dumpBitmap()
DPixelDumpSupportCairo.h67 cairo_t* cairoContext() const { return m_context; } in cairoContext() function
/external/webkit/Source/WebCore/platform/graphics/cairo/
DGraphicsContextCairo.cpp152 cairo_t* cairoContext = context->platformContext()->cr(); in drawPathShadow() local
153 OwnPtr<cairo_path_t> path(cairo_copy_path(cairoContext)); in drawPathShadow()
161 cairo_stroke_extents(cairoContext, &x0, &y0, &x1, &y1); in drawPathShadow()
165 cairo_fill_extents(cairoContext, &x0, &y0, &x1, &y1); in drawPathShadow()
176 copyContextProperties(cairoContext, shadowContext); in drawPathShadow()
187 static void fillCurrentCairoPath(GraphicsContext* context, cairo_t* cairoContext) in fillCurrentCairoPath() argument
189 …cairo_set_fill_rule(cairoContext, context->fillRule() == RULE_EVENODD ? CAIRO_FILL_RULE_EVEN_ODD :… in fillCurrentCairoPath()
192 setPlatformFill(context, cairoContext); in fillCurrentCairoPath()
193 cairo_new_path(cairoContext); in fillCurrentCairoPath()
196 static void strokeCurrentCairoPath(GraphicsContext* context, cairo_t* cairoContext) in strokeCurrentCairoPath() argument
[all …]
/external/webkit/Tools/
DChangeLog-2010-05-2434452 (BitmapContext::cairoContext):