HomeSort by relevance Sort by last modified time
    Searched refs:GraphicsContext (Results 26 - 50 of 458) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.h 55 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
56 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
57 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
  /external/webkit/Source/WebCore/platform/graphics/brew/
IconBrew.cpp 27 #include "GraphicsContext.h"
45 void Icon::paint(GraphicsContext*, const IntRect&)
  /external/webkit/Source/WebCore/platform/graphics/haiku/
IconHaiku.cpp 26 #include "GraphicsContext.h"
45 void Icon::paint(GraphicsContext*, const IntRect&)
  /external/webkit/Source/WebCore/platform/graphics/wx/
IconWx.cpp 24 #include "GraphicsContext.h"
41 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
GraphicsContextWx.cpp 27 #include "GraphicsContext.h"
114 void GraphicsContext::platformInit(PlatformGraphicsContext* context)
131 void GraphicsContext::platformDestroy()
136 PlatformGraphicsContext* GraphicsContext::platformContext() const
141 void GraphicsContext::savePlatformState()
168 void GraphicsContext::restorePlatformState()
196 void GraphicsContext::drawRect(const IntRect& rect)
206 void GraphicsContext::drawLine(const IntPoint& point1, const IntPoint& point2)
219 void GraphicsContext::drawEllipse(const IntRect& rect)
228 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceGradient.h 42 class GraphicsContext;
52 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode);
53 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
69 GraphicsContext* m_savedContext;
RenderSVGResourceSolidColor.h 38 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode);
39 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
RenderSVGResource.h 49 class GraphicsContext;
63 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) = 0;
64 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*) { }
RenderSVGResourceClipper.h 25 #include "GraphicsContext.h"
54 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode);
67 bool applyClippingToContext(RenderObject*, const FloatRect&, const FloatRect&, GraphicsContext*);
68 bool pathOnlyClipping(GraphicsContext*, const FloatRect&);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromium.h 51 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
52 virtual void paintTickmarks(GraphicsContext*, Scrollbar*, const IntRect&);
FramelessScrollView.h 77 virtual void paintContents(GraphicsContext*, const IntRect&);
78 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.h 50 class GraphicsContext;
88 bool mustUseContextShadow(GraphicsContext*);
113 PlatformContext beginShadowLayer(GraphicsContext*, const FloatRect& layerArea);
114 void endShadowLayer(GraphicsContext*);
120 void drawRectShadow(GraphicsContext* context, const IntRect& rect, const IntSize& topLeftRadius = IntSize(), const IntSize& topRightRadius = IntSize(), const IntSize& bottomLeftRadius = IntSize(), const IntSize& bottomRightRadius = IntSize());
134 void adjustBlurDistance(GraphicsContext*);
136 IntRect calculateLayerBoundingRect(GraphicsContext*, const FloatRect& layerArea, const IntRect& clipRect);
139 void drawRectShadowWithoutTiling(GraphicsContext*, const IntRect& shadowRect, const IntSize& topLeftRadius, const IntSize& topRightRadius, const IntSize& bottomLeftRadius, const IntSize& bottomRightRadius, float alpha);
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...]
Tile.h 40 class GraphicsContext;
55 void paint(GraphicsContext*, const IntRect&);
60 static void paintCheckerPattern(GraphicsContext*, const FloatRect&);
GraphicsLayerClient.h 33 class GraphicsContext;
74 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) = 0;
Image.h 71 class GraphicsContext;
80 friend class GraphicsContext;
158 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
164 static void fillWithSolidColor(GraphicsContext*, const FloatRect& dstRect, const Color&, ColorSpace styleColorSpace, CompositeOperator);
168 virtual void drawFrameMatchingSourceSize(GraphicsContext*, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator) { }
170 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator) = 0;
171 void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatPoint& srcPoint, const FloatSize& tileSize, ColorSpace styleColorSpace, CompositeOperator);
172 void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, TileRule hRule, TileRule vRule, ColorSpace styleColorSpace, CompositeOperator);
  /external/webkit/Source/WebCore/platform/graphics/efl/
FontEfl.cpp 30 #include "GraphicsContext.h"
38 void Font::drawComplexText(GraphicsContext*, const TextRun&, const FloatPoint&, int from, int to) const
43 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
ChunkedUpdateDrawingAreaQt.cpp 34 #include <WebCore/GraphicsContext.h>
45 GraphicsContext graphicsContext(&painter);
46 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
48 m_webPage->drawRect(graphicsContext, updateChunk->rect());
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk.h 46 bool paint(Scrollbar*, GraphicsContext*, const IntRect& damageRect);
47 void paintScrollbarBackground(GraphicsContext*, Scrollbar*);
48 void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
49 void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
50 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
51 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect&);
WidgetRenderingContext.h 36 class GraphicsContext;
41 WidgetRenderingContext(GraphicsContext*, const IntRect&);
55 GraphicsContext* m_graphicsContext;
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarTheme.h 47 virtual void paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect);
71 virtual void paintScrollbarBackground(GraphicsContext*, Scrollbar*);
72 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
73 virtual void paintTrackPiece(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
74 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
75 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.h 46 class GraphicsContext;
133 void init(GraphicsContext* dest,
146 GraphicsContext* context() const { return m_drawContext; }
194 GraphicsContext* m_destContext;
221 GraphicsContext* m_drawContext;
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCHeadsUpDisplay.h 67 void drawHudContents(GraphicsContext*, const IntSize& hudSize);
68 void drawFPSCounter(GraphicsContext*, int top, int height);
69 void drawPlatformLayerTree(GraphicsContext*, int top);
  /external/webkit/Source/WebKit2/Shared/
WebGraphicsContext.h 30 #include <WebCore/GraphicsContext.h>
45 static PassRefPtr<WebGraphicsContext> create(WebCore::GraphicsContext* graphicsContext)
47 return adoptRef(new WebGraphicsContext(graphicsContext));
58 explicit WebGraphicsContext(WebCore::GraphicsContext*);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperPlatformLayer.h 25 class GraphicsContext;
71 virtual void paint(GraphicsContext*) = 0;

Completed in 2634 milliseconds

12 3 4 5 6 7 8 91011>>