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

  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextCairoWin.cpp 27 #include "GraphicsContext.h"
67 GraphicsContext::GraphicsContext(HDC dc, bool hasAlpha)
73 void GraphicsContext::platformInit(HDC dc, bool hasAlpha)
123 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
151 void GraphicsContext::drawWindowsBitmap(WindowsBitmap* bitmap, const IntPoint& point)
GraphicsContextCGWin.cpp 69 GraphicsContext::GraphicsContext(HDC hdc, bool hasAlpha)
75 void GraphicsContext::platformInit(HDC hdc, bool hasAlpha)
90 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
120 void GraphicsContext::drawWindowsBitmap(WindowsBitmap* image, const IntPoint& point)
131 void GraphicsContext::drawFocusRing(const Path& path, int width, int offset, const Color& color)
136 // FIXME: This is nearly identical to the GraphicsContext::drawFocusRing function in GraphicsContextMac.mm.
138 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
183 void GraphicsContext::drawLineForTextChecking(const FloatPoint& point, float width, TextCheckingLineStyle style)
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 27 #include "GraphicsContext.h"
79 GraphicsContext::GraphicsContext(PlatformGraphicsContext* platformGraphicsContext)
85 GraphicsContext::~GraphicsContext()
90 void GraphicsContext::save()
100 void GraphicsContext::restore()
106 LOG_ERROR("ERROR void GraphicsContext::restore() stack is empty");
115 void GraphicsContext::setStrokeThickness(float thickness)
121 void GraphicsContext::setStrokeStyle(StrokeStyle style
    [all...]
GraphicsContext.h 227 class GraphicsContext {
228 WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED;
230 GraphicsContext(PlatformGraphicsContext*);
231 ~GraphicsContext();
302 /** platform-specific factory method to return a bitmap graphicscontext,
307 static GraphicsContext* createOffscreenContext(int width, int height);
469 GraphicsContext(HDC, bool hasAlpha = false); // FIXME: To be removed.
477 // FIXME: This is a layering violation. GraphicsContext shouldn't know
479 // to be passed as a parameter alongside the GraphicsContext, but doing
531 GraphicsContext(cairo_t*)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 33 #include "GraphicsContext.h"
73 static inline void setPlatformFill(GraphicsContext* context, cairo_t* cr)
94 static inline void setPlatformStroke(GraphicsContext* context, cairo_t* cr)
144 static inline void drawPathShadow(GraphicsContext* context, PathDrawingStyle drawingStyle)
187 static void fillCurrentCairoPath(GraphicsContext* context, cairo_t* cairoContext)
196 static void strokeCurrentCairoPath(GraphicsContext* context, cairo_t* cairoContext)
203 GraphicsContext::GraphicsContext(cairo_t* cr)
209 void GraphicsContext::platformInit(PlatformContextCairo* platformContext)
218 void GraphicsContext::platformDestroy(
    [all...]

Completed in 70 milliseconds