Searched defs:cairoContext (Results 1 - 5 of 5) sorted by relevance

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

Completed in 141 milliseconds