Searched refs:GraphicsContext (Results 1 - 25 of 236) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DOpaqueRegionSkia.h44 class GraphicsContext;
46 // This class is an encapsulation of functionality for GraphicsContext, and its methods are mirrored
56 void popCanvasLayer(const GraphicsContext*);
65 void didDrawRect(const GraphicsContext*, const SkRect&, const SkPaint&, const SkBitmap* sourceBitmap);
66 void didDrawPath(const GraphicsContext*, const SkPath&, const SkPaint&);
67 void didDrawPoints(const GraphicsContext*, SkCanvas::PointMode, int numPoints, const SkPoint[], const SkPaint&);
68 void didDrawBounded(const GraphicsContext*, const SkRect&, const SkPaint&);
69 void didDrawUnbounded(const GraphicsContext*, const SkPaint&, DrawType);
88 void didDraw(const GraphicsContext*, const SkRect&, const SkPaint&, const SkBitmap* sourceBitmap, bool fillsBounds, DrawType);
89 void applyOpaqueRegionFromLayer(const GraphicsContext*, cons
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DLocalCurrentGraphicsContext.h28 class GraphicsContext;
35 LocalCurrentGraphicsContext(GraphicsContext* graphicsContext);
39 GraphicsContext* m_savedGraphicsContext;
48 ContextContainer(GraphicsContext*);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceClipper.h53 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) OVERRIDE;
54 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*, const RenderSVGShape*) OVERRIDE;
59 bool applyStatefulResource(RenderObject*, GraphicsContext*&, ClipperContext&);
60 void postApplyStatefulResource(RenderObject*, GraphicsContext*&, ClipperContext&);
65 bool applyClippingToContext(RenderObject*, const FloatRect&, const FloatRect&, GraphicsContext*, ClipperContext&);
77 bool tryPathOnlyClipping(GraphicsContext*, const AffineTransform&, const FloatRect&);
78 void drawClipMaskContent(GraphicsContext*, const FloatRect& targetBoundingBox);
79 PassRefPtr<DisplayList> asDisplayList(GraphicsContext*, const AffineTransform&);
H A DSVGInlineTextBox.h68 bool acquirePaintingResource(GraphicsContext*&, float scalingFactor, RenderObject*,
70 void releasePaintingResource(GraphicsContext*&, const Path*, RenderSVGResourceModeFlags);
72 bool prepareGraphicsContextForTextPainting(GraphicsContext*&, float scalingFactor, TextRun&,
74 void restoreGraphicsContextAfterTextPainting(GraphicsContext*&, TextRun&, RenderSVGResourceModeFlags);
76 void paintDecoration(GraphicsContext*, TextDecoration, const SVGTextFragment&);
77 void paintDecorationWithStyle(GraphicsContext*, TextDecoration, const SVGTextFragment&,
79 void paintTextWithShadows(GraphicsContext*, RenderStyle*, TextRun&, const SVGTextFragment&,
81 void paintText(GraphicsContext*, RenderStyle*, RenderStyle* selectionStyle, const SVGTextFragment&,
84 virtual void paintDocumentMarker(GraphicsContext*, const FloatPoint&, DocumentMarker*, RenderStyle*, const Font&, bool) OVERRIDE FINAL;
85 virtual void paintTextMatchMarker(GraphicsContext*, cons
[all...]
H A DRenderSVGResourceMasker.h36 class GraphicsContext;
47 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) OVERRIDE;
48 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*, const RenderSVGShape*) OVERRIDE;
59 void drawMaskForRenderer(GraphicsContext*, const FloatRect& targetBoundingBox);
60 PassRefPtr<DisplayList> asDisplayList(GraphicsContext*, const AffineTransform&);
H A DRenderSVGResourceGradient.h42 class GraphicsContext;
51 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) OVERRIDE FINAL;
52 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*, const RenderSVGShape*) OVERRIDE FINAL;
H A DRenderSVGEllipse.h44 virtual void fillShape(GraphicsContext*) const OVERRIDE;
45 virtual void strokeShape(GraphicsContext*) const OVERRIDE;
H A DRenderSVGRect.h46 virtual void fillShape(GraphicsContext*) const OVERRIDE;
47 virtual void strokeShape(GraphicsContext*) const OVERRIDE;
H A DRenderSVGResourceSolidColor.h37 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) OVERRIDE;
38 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*, const RenderSVGShape*) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextCullSaver.h4 #include "platform/graphics/GraphicsContext.h"
13 GraphicsContextCullSaver(GraphicsContext& context)
19 GraphicsContextCullSaver(GraphicsContext& context, const FloatRect& rect)
40 GraphicsContext& m_context;
H A DGraphicsContextStateSaver.h33 #include "platform/graphics/GraphicsContext.h"
40 GraphicsContextStateSaver(GraphicsContext& context, bool saveAndRestore = true)
68 GraphicsContext* context() const { return &m_context; }
72 GraphicsContext& m_context;
H A DOpaqueRectTrackingContentLayerDelegate.cpp31 #include "platform/graphics/GraphicsContext.h"
59 GraphicsContext context(canvas,
60 contextStatus == blink::WebContentLayerClient::GraphicsContextEnabled ? GraphicsContext::NothingDisabled : GraphicsContext::FullyDisabled);
H A DGraphicsContext.cpp28 #include "platform/graphics/GraphicsContext.h"
92 struct GraphicsContext::CanvasSaveState {
100 struct GraphicsContext::RecordingState {
113 GraphicsContext::GraphicsContext(SkCanvas* canvas, DisabledMode disableContextOrPainting) function in class:WebCore::GraphicsContext
143 GraphicsContext::~GraphicsContext()
157 void GraphicsContext::save()
168 void GraphicsContext::restore()
174 WTF_LOG_ERROR("ERROR void GraphicsContext
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarThemeAura.h43 virtual void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
44 virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
45 virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
H A DScrollbarThemeMock.cpp30 #include "platform/graphics/GraphicsContext.h"
52 void ScrollbarThemeMock::paintTrackBackground(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& trackRect)
57 void ScrollbarThemeMock::paintThumb(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& thumbRect)
H A DScrollbarThemeNonMacCommon.h49 virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
50 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
H A DScrollbarTheme.h35 class GraphicsContext;
48 virtual bool paint(ScrollbarThemeClient*, GraphicsContext*, const IntRect& damageRect);
81 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
83 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) { }
84 virtual void paintOverhangBackground(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&);
85 virtual void paintOverhangShadows(GraphicsContext*, const IntSize&, const IntRect&, const IntRect&, const IntRect&) { }
113 virtual void paintScrollbarBackground(GraphicsContext*, ScrollbarThemeClient*) { }
114 virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) { }
115 virtual void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) { }
116 virtual void paintButton(GraphicsContext*, ScrollbarThemeClien
[all...]
H A DScrollbarThemeMacCommon.h49 virtual void paintOverhangBackground(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
50 virtual void paintOverhangShadows(GraphicsContext*, const IntSize& scrollOffset, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
51 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
65 void paintGivenTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, const Vector<IntRect>&);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DSkiaImageFilterBuilder.h40 class GraphicsContext;
45 explicit SkiaImageFilterBuilder(GraphicsContext*);
57 GraphicsContext* context() { return m_context; }
61 GraphicsContext* m_context;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGraphicsContextAnnotator.h42 class GraphicsContext;
63 GraphicsContext* m_context;
H A DFilterEffectRenderer.h44 class GraphicsContext;
61 GraphicsContext* beginFilterEffect(GraphicsContext* oldContext);
62 GraphicsContext* applyFilterEffect();
66 GraphicsContext* m_savedGraphicsContext;
89 GraphicsContext* inputContext();
H A DRenderScrollbarTheme.h43 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect) OVERRIDE;
68 virtual void paintScrollbarBackground(GraphicsContext*, ScrollbarThemeClient*) OVERRIDE;
69 virtual void paintTrackBackground(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
70 virtual void paintTrackPiece(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
71 virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntRect&, ScrollbarPart) OVERRIDE;
72 virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
73 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const IntRect&) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebScrollbarThemePainter.cpp30 #include "platform/graphics/GraphicsContext.h"
51 GraphicsContext context(canvas);
58 GraphicsContext context(canvas);
65 GraphicsContext context(canvas);
72 GraphicsContext context(canvas);
79 GraphicsContext context(canvas);
86 GraphicsContext context(canvas);
93 GraphicsContext context(canvas);
100 GraphicsContext context(canvas);
107 GraphicsContext contex
[all...]
H A DPageOverlayList.h37 class GraphicsContext;
60 void paintWebFrame(WebCore::GraphicsContext&);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.h35 class GraphicsContext;
65 void spoolPage(GraphicsContext& ctx, int pageNumber, float width);
79 static void spoolAllPagesWithBoundaries(LocalFrame*, GraphicsContext&, const FloatSize& pageSizeInPixels);
82 void outputLinkedDestinations(GraphicsContext&, Node*, const IntRect& pageRect);

Completed in 290 milliseconds

12345678910