HomeSort by relevance Sort by last modified time
    Searched full:graphicscontext (Results 101 - 125 of 580) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/filters/
SourceAlpha.cpp 27 #include "GraphicsContext.h"
67 GraphicsContext* filterContext = resultImage->context();
FETile.cpp 28 #include "GraphicsContext.h"
78 GraphicsContext* tileImageContext = tileImage->context();
87 GraphicsContext* filterContext = resultImage->context();
  /external/webkit/Source/WebCore/platform/graphics/qt/
IconQt.cpp 24 #include "GraphicsContext.h"
59 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperPlatformLayer.h 25 class GraphicsContext;
71 virtual void paint(GraphicsContext*) = 0;
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.h 43 virtual bool paint(Scrollbar*, GraphicsContext*, const IntRect& damageRect);
44 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/wx/
ScrollbarThemeWx.h 38 virtual bool paint(Scrollbar*, GraphicsContext*, const IntRect&);
40 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/wx/wxcode/
non-kerned-drawing.h 40 extern void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMasker.h 25 #include "GraphicsContext.h"
50 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode);
RenderSVGResourcePattern.h 54 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode);
55 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
RenderSVGResourceGradient.cpp 29 #include "GraphicsContext.h"
77 static inline bool createMaskAndSwapContextForTextGradient(GraphicsContext*& context,
78 GraphicsContext*& savedContext,
97 GraphicsContext* maskImageContext = maskImage->context();
110 static inline AffineTransform clipToTextMask(GraphicsContext* context,
141 bool RenderSVGResourceGradient::applyResource(RenderObject* object, RenderStyle* style, GraphicsContext*& context, unsigned short resourceMode)
232 void RenderSVGResourceGradient::postApplyResource(RenderObject* object, GraphicsContext*& context, unsigned short resourceMode, const Path* path)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
ChunkedUpdateDrawingAreaGtk.cpp 35 #include <WebCore/GraphicsContext.h>
48 GraphicsContext gc(cr.get());
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 45 #include "GraphicsContext.h"
95 virtual void strokeStyle(GraphicsContext* c)
132 if (GraphicsContext* c = drawingContext()) {
178 if (GraphicsContext* c = drawingContext()) {
297 GraphicsContext* c = drawingContext();
311 GraphicsContext* c = drawingContext();
325 GraphicsContext* context = drawingContext();
356 GraphicsContext* c = drawingContext();
385 GraphicsContext* c = drawingContext();
402 GraphicsContext* c = drawingContext()
    [all...]
CanvasStyle.h 39 class GraphicsContext;
61 void applyFillColor(GraphicsContext*);
62 void applyStrokeColor(GraphicsContext*);
  /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/wince/
ImageWinCE.cpp 31 #include "GraphicsContext.h"
77 GraphicsContext gc(hdc.get());
91 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator compositeOp)
111 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRectIn, ColorSpace styleColorSpace, CompositeOperator compositeOp)
136 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& tileRect, const AffineTransform& patternTransform,
142 void BitmapImage::drawPattern(GraphicsContext* ctxt, const FloatRect& tileRectIn, const AffineTransform& patternTransform,
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 32 #import "GraphicsContext.h"
64 GraphicsContext graphicsContext(context);
65 graphicsContext.setIsCALayerContext(true);
66 graphicsContext.setIsAcceleratedContext(platformLayer->acceleratesDrawing());
70 graphicsContext.setShouldSmoothFonts(false);
77 layerContents->platformCALayerPaintContents(graphicsContext, clip);
GraphicsContextMac.mm 27 #import "GraphicsContext.h"
60 void GraphicsContext::drawFocusRing(const Path& path, int width, int /*offset*/, const Color& color)
73 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
91 void GraphicsContext::setPlatformCompositeOperation(CompositeOperator op)
115 void GraphicsContext::drawLineForTextChecking(const FloatPoint& point, float width, TextCheckingLineStyle style)
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaUtils.cpp 44 #include "GraphicsContext.h"
81 SkDEBUGF(("GraphicsContext::setCompositeOperation uknown CompositeOperator %d\n", op));
116 SkDEBUGF(("GraphicsContext::setPlatformCompositeOperation unknown CompositeOperator %d\n", op));
255 GraphicsContext* scratchContext()
257 static GraphicsContext* scratch = 0;
263 scratch = new GraphicsContext(pgc);
268 GraphicsContext* scratchContext()
  /external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 28 #include "GraphicsContext.h"
186 void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point)
189 wxGCDC* dc = static_cast<wxGCDC*>(graphicsContext->platformContext());
221 wxDC* dc = graphicsContext->platformContext();
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
non-kerned-drawing.cpp 28 #include "GraphicsContext.h"
72 void drawTextWithSpacing(GraphicsContext* graphicsContext, const SimpleFontData* font, const wxColour& color, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point)
75 wxGCDC* dc = static_cast<wxGCDC*>(graphicsContext->platformContext());
77 wxDC* dc = graphicsContext->platformContext();
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 40 #include "GraphicsContext.h"
709 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
724 graphicsContext->setStrokeColor(color, m_style->colorSpace());
725 graphicsContext->setStrokeThickness(width);
726 graphicsContext->setStrokeStyle(style == DASHED ? DashedStroke : DottedStroke);
729 bool wasAntialiased = graphicsContext->shouldAntialias();
730 graphicsContext->setShouldAntialias(antialias);
735 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2));
739 graphicsContext->drawLine(IntPoint((x1 + x2) / 2, y1), IntPoint((x1 + x2) / 2, y2))
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.h 47 class GraphicsContext;
100 void paint(GraphicsContext*, const IntRect&);
102 GraphicsContext* drawingContext() const;
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextPlatformPrivateCairo.h 31 #include "GraphicsContext.h"
115 // This is a specialized private section for the Cairo GraphicsContext, which knows how
117 // GraphicsContext.
  /external/webkit/Source/WebCore/platform/graphics/chromium/
PlatformCanvas.cpp 30 #include "GraphicsContext.h"
97 m_context = adoptPtr(new GraphicsContext(reinterpret_cast<PlatformGraphicsContext*>(m_skiaContext.get())));
108 m_context = adoptPtr(new GraphicsContext(m_contextCG.get()));

Completed in 217 milliseconds

1 2 3 45 6 7 8 91011>>