HomeSort by relevance Sort by last modified time
    Searched full:graphicscontext (Results 1 - 25 of 400) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 29 #include "GraphicsContext.h"
65 GraphicsContext::GraphicsContext(PlatformGraphicsContext* context)
72 GraphicsContext::~GraphicsContext()
78 PlatformGraphicsContext* GraphicsContext::platformContext() const
83 void GraphicsContext::savePlatformState()
88 void GraphicsContext::restorePlatformState()
94 void GraphicsContext::drawRect(const IntRect& rect)
105 void GraphicsContext::drawLine(const IntPoint& point1, const IntPoint& point2
    [all...]
FontHaiku.cpp 34 #include "GraphicsContext.h"
68 void Font::drawGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* font,
71 Color color = graphicsContext->fillColor();
72 BView* view = graphicsContext->platformContext();
75 graphicsContext->setCompositeOperation(CompositeSourceOver);
90 void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point,
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 21 #include "GraphicsContext.h"
51 GraphicsContext::GraphicsContext(SurfaceOpenVG* surface)
58 GraphicsContext::~GraphicsContext()
64 PlatformGraphicsContext* GraphicsContext::platformContext() const
72 TransformationMatrix GraphicsContext::getCTM() const
80 void GraphicsContext::savePlatformState()
88 void GraphicsContext::restorePlatformState()
96 void GraphicsContext::drawRect(const IntRect& rect
    [all...]
  /external/webkit/WebCore/platform/mac/
LocalCurrentGraphicsContext.mm 23 #include "GraphicsContext.h"
28 LocalCurrentGraphicsContext::LocalCurrentGraphicsContext(GraphicsContext* graphicsContext)
30 m_savedGraphicsContext = graphicsContext;
31 graphicsContext->save();
33 if (graphicsContext->platformContext() == [[NSGraphicsContext currentContext] graphicsPort]) {
39 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:graphicsContext->platformContext() flipped:YES];
LocalCurrentGraphicsContext.h 30 class GraphicsContext;
36 LocalCurrentGraphicsContext(GraphicsContext* graphicsContext);
40 GraphicsContext* m_savedGraphicsContext;
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 27 #include "GraphicsContext.h"
115 GraphicsContext::GraphicsContext(PlatformGraphicsContext* context)
132 GraphicsContext::~GraphicsContext()
138 PlatformGraphicsContext* GraphicsContext::platformContext() const
143 void GraphicsContext::savePlatformState()
170 void GraphicsContext::restorePlatformState()
198 void GraphicsContext::drawRect(const IntRect& rect)
208 void GraphicsContext::drawLine(const IntPoint& point1, const IntPoint& point2
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.cpp 27 #include "GraphicsContext.h"
76 GraphicsContextPrivate* GraphicsContext::createGraphicsContextPrivate()
81 void GraphicsContext::destroyGraphicsContextPrivate(GraphicsContextPrivate* deleteMe)
86 void GraphicsContext::save()
96 void GraphicsContext::restore()
102 LOG_ERROR("ERROR void GraphicsContext::restore() stack is empty");
111 void GraphicsContext::setStrokeThickness(float thickness)
117 void GraphicsContext::setStrokeStyle(const StrokeStyle& style)
123 void GraphicsContext::setStrokeColor(const Color& color, ColorSpace colorSpace)
132 void GraphicsContext::setShadow(const IntSize& size, int blur, const Color& color, ColorSpace colorSpace
    [all...]
GeneratedImage.cpp 30 #include "GraphicsContext.h"
37 void GeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp)
50 void GeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform,
63 GraphicsContext* graphicsContext = imageBuffer->context();
64 graphicsContext->fillRect(FloatRect(FloatPoint(), adjustedSize), *m_generator.get());
  /external/webkit/WebCore/platform/
ScrollbarThemeComposite.h 35 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
46 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
60 virtual void paintScrollbarBackground(GraphicsContext*, Scrollbar*) {}
61 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&) {}
62 virtual void paintTrackPiece(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart) {}
63 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart) {}
64 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&) {}
65 virtual void paintTickmarks(GraphicsContext*, Scrollbar*, const IntRect&) {}
  /external/webkit/WebCore/svg/graphics/
SVGPaintServer.h 55 class GraphicsContext;
70 virtual void draw(GraphicsContext*&, const RenderObject*, SVGPaintTargetType) const;
71 virtual void teardown(GraphicsContext*&, const RenderObject*, SVGPaintTargetType, bool isPaintingText = false) const;
72 virtual void renderPath(GraphicsContext*&, const RenderObject*, SVGPaintTargetType) const;
74 virtual bool setup(GraphicsContext*&, const RenderObject*, const RenderStyle*, SVGPaintTargetType, bool isPaintingText = false) const = 0;
76 bool setup(GraphicsContext*&, const RenderObject*, SVGPaintTargetType, bool isPaintingText = false) const;
90 void applyStrokeStyleToContext(GraphicsContext*, const RenderStyle*, const RenderObject*);
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 27 #include "GraphicsContext.h"
82 GraphicsContext* mCG; // back-ptr to our parent
166 GraphicsContextPlatformPrivate(GraphicsContext* cg, PlatformGraphicsContext* pgc)
347 GraphicsContext* GraphicsContext::createOffscreenContext(int width, int height)
358 GraphicsContext* ctx = new GraphicsContext(pgc);
365 GraphicsContext::GraphicsContext(PlatformGraphicsContext *gc)
372 GraphicsContext::~GraphicsContext(
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 31 #include "GraphicsContext.h"
76 static inline void setPlatformFill(GraphicsContext* context, cairo_t* cr, GraphicsContextPrivate* gcp)
91 static inline void setPlatformStroke(GraphicsContext* context, cairo_t* cr, GraphicsContextPrivate* gcp)
138 void GraphicsContext::calculateShadowBufferDimensions(IntSize& shadowBufferSize, FloatRect& shadowRect, float& kernelSize, const FloatRect& sourceRect, const IntSize& shadowSize, int shadowBlur)
153 static inline void drawPathShadow(GraphicsContext* context, GraphicsContextPrivate* gcp, bool fillShadow, bool strokeShadow)
175 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
196 GraphicsContext::GraphicsContext(PlatformGraphicsContext* cr)
205 GraphicsContext::~GraphicsContext()
    [all...]
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 29 #include "GraphicsContext.h"
52 void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point)
54 graphicsContext->save();
56 wxGCDC* dc = static_cast<wxGCDC*>(graphicsContext->platformContext());
59 graphicsContext->setFillColor(graphicsContext->fillColor(), DeviceColorSpace);
81 graphicsContext->fillColor().getRGBA(red, green, blue, alpha);
115 graphicsContext->restore();
  /external/webkit/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&);
RenderScrollbarTheme.cpp 109 void RenderScrollbarTheme::paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect)
115 void RenderScrollbarTheme::paintScrollbarBackground(GraphicsContext* context, Scrollbar* scrollbar)
120 void RenderScrollbarTheme::paintTrackBackground(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect)
125 void RenderScrollbarTheme::paintTrackPiece(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part)
130 void RenderScrollbarTheme::paintButton(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part)
135 void RenderScrollbarTheme::paintThumb(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect)
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 37 #include "GraphicsContext.h"
256 GraphicsContext::GraphicsContext(PlatformGraphicsContext* context)
268 GraphicsContext::~GraphicsContext()
277 PlatformGraphicsContext* GraphicsContext::platformContext() const
282 AffineTransform GraphicsContext::getCTM() const
289 void GraphicsContext::savePlatformState()
294 void GraphicsContext::restorePlatformState()
305 void GraphicsContext::drawRect(const IntRect& rect
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 32 #include "GraphicsContext.h"
222 GraphicsContext::GraphicsContext(PlatformGraphicsContext* gc)
229 GraphicsContext::~GraphicsContext()
235 PlatformGraphicsContext* GraphicsContext::platformContext() const
243 void GraphicsContext::savePlatformState()
252 void GraphicsContext::restorePlatformState()
261 void GraphicsContext::beginTransparencyLayer(float opacity)
277 void GraphicsContext::endTransparencyLayer(
    [all...]
  /external/webkit/WebCore/platform/win/
ScrollbarThemeWin.h 55 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
56 virtual void paintTrackPiece(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
57 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
58 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 29 #include "GraphicsContext.h"
145 GraphicsContext::GraphicsContext(CGContextRef cgContext)
157 GraphicsContext::~GraphicsContext()
163 CGContextRef GraphicsContext::platformContext() const
170 void GraphicsContext::savePlatformState()
178 void GraphicsContext::restorePlatformState()
188 void GraphicsContext::drawRect(const IntRect& rect)
217 void GraphicsContext::drawLine(const IntPoint& point1, const IntPoint& point2
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 32 #include "GraphicsContext.h"
130 static void drawGDIGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* font, const GlyphBuffer& glyphBuffer,
133 Color fillColor = graphicsContext->fillColor();
136 int drawingMode = graphicsContext->textDrawingMode();
141 drawIntoBitmap = fillColor.alpha() != 255 || graphicsContext->inTransparencyLayer();
146 graphicsContext->getShadow(size, blur, color);
160 OwnPtr<GraphicsContext::WindowsBitmap> bitmap;
163 hdc = graphicsContext->getWindowsContext(textRect, true, false);
170 bitmap.set(graphicsContext->createWindowsBitmap(textRect.size()))
    [all...]
GraphicsContextWin.cpp 27 #include "GraphicsContext.h"
56 bool GraphicsContext::inTransparencyLayer() const { return m_data->m_transparencyCount; }
58 void GraphicsContext::setShouldIncludeChildWindows(bool include)
63 bool GraphicsContext::shouldIncludeChildWindows() const
68 GraphicsContext::WindowsBitmap::WindowsBitmap(HDC hdc, IntSize size)
89 GraphicsContext::WindowsBitmap::~WindowsBitmap()
98 GraphicsContext::WindowsBitmap* GraphicsContext::createWindowsBitmap(IntSize size)
103 HDC GraphicsContext::getWindowsContext(const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
203 GraphicsContext* contextForImage(SVGResourceImage*
    [all...]
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromium.h 51 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect&);
53 virtual void paintTrackBackground(GraphicsContext*, Scrollbar*, const IntRect&);
54 virtual void paintTickmarks(GraphicsContext*, Scrollbar*, const IntRect&);
ScrollbarThemeChromiumLinux.h 42 virtual void paintTrackPiece(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
43 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
44 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
ScrollbarThemeChromiumWin.h 44 virtual void paintTrackPiece(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
45 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
46 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);
  /external/webkit/WebCore/platform/haiku/
ScrollbarThemeHaiku.h 49 virtual void paintScrollbarBackground(GraphicsContext*, Scrollbar*);
50 virtual void paintButton(GraphicsContext*, Scrollbar*, const IntRect&, ScrollbarPart);
51 virtual void paintThumb(GraphicsContext*, Scrollbar*, const IntRect&);

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>