Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: Source/platform/graphics/RegionTracker.h

Issue 413313002: Treat calls to CanvasRenderingContext2D.clearRect as operations that clear the canvas (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: regionTrackingEnabled Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012, Google Inc. All rights reserved. 2 * Copyright (c) 2012, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 10 matching lines...) Expand all
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef OpaqueRegionSkia_h 31 #ifndef RegionTracker_h
32 #define OpaqueRegionSkia_h 32 #define RegionTracker_h
33 33
34 #include "platform/PlatformExport.h" 34 #include "platform/PlatformExport.h"
35 #include "platform/geometry/IntRect.h" 35 #include "platform/geometry/IntRect.h"
36 36 #include "third_party/skia/include/core/SkBitmap.h"
37 #include "SkBitmap.h" 37 #include "third_party/skia/include/core/SkCanvas.h"
38 #include "SkCanvas.h" 38 #include "third_party/skia/include/core/SkPaint.h"
39 #include "SkPaint.h" 39 #include "third_party/skia/include/core/SkPoint.h"
40 #include "SkPoint.h" 40 #include "third_party/skia/include/core/SkRect.h"
41 #include "SkRect.h"
42 41
43 namespace blink { 42 namespace blink {
44 class GraphicsContext; 43 class GraphicsContext;
45 44
45 enum RegionTrackingMode {
46 TrackOpaqueRegion,
47 TRackOverwriteRegion
48 };
49
46 // This class is an encapsulation of functionality for GraphicsContext, and its methods are mirrored 50 // This class is an encapsulation of functionality for GraphicsContext, and its methods are mirrored
47 // there for the outside world. It tracks paints and computes what area will be opaque. 51 // there for the outside world. It tracks paints and computes what area will be opaque.
48 class PLATFORM_EXPORT OpaqueRegionSkia FINAL { 52 class PLATFORM_EXPORT RegionTracker FINAL {
49 public: 53 public:
50 OpaqueRegionSkia(); 54 RegionTracker();
51 55
52 // The resulting opaque region as a single rect. 56 // The resulting opaque region as a single rect.
53 IntRect asRect() const; 57 IntRect asRect() const;
54 58
55 void pushCanvasLayer(const SkPaint*); 59 void pushCanvasLayer(const SkPaint*);
56 void popCanvasLayer(const GraphicsContext*); 60 void popCanvasLayer(const GraphicsContext*);
57 61
58 void setImageMask(const SkRect& imageOpaqueRect); 62 void setImageMask(const SkRect& imageOpaqueRect);
59 63
64 enum RegionType {
65 Opaque,
66 Overwrite
67 };
68
69 // Set this to true to track regions that occlude the destination instead of only regions that produce opaque pixels.
70 void setTrackedRegionType(RegionType type) { m_trackedRegionType = type; }
71
60 enum DrawType { 72 enum DrawType {
61 FillOnly, 73 FillOnly,
62 FillOrStroke 74 FillOrStroke
63 }; 75 };
64 76
65 void didDrawRect(const GraphicsContext*, const SkRect&, const SkPaint&, cons t SkBitmap* sourceBitmap); 77 void didDrawRect(const GraphicsContext*, const SkRect&, const SkPaint&, cons t SkBitmap* sourceBitmap);
66 void didDrawPath(const GraphicsContext*, const SkPath&, const SkPaint&); 78 void didDrawPath(const GraphicsContext*, const SkPath&, const SkPaint&);
67 void didDrawPoints(const GraphicsContext*, SkCanvas::PointMode, int numPoint s, const SkPoint[], const SkPaint&); 79 void didDrawPoints(const GraphicsContext*, SkCanvas::PointMode, int numPoint s, const SkPoint[], const SkPaint&);
68 void didDrawBounded(const GraphicsContext*, const SkRect&, const SkPaint&); 80 void didDrawBounded(const GraphicsContext*, const SkRect&, const SkPaint&);
69 void didDrawUnbounded(const GraphicsContext*, const SkPaint&, DrawType); 81 void didDrawUnbounded(const GraphicsContext*, const SkPaint&, DrawType);
(...skipping 19 matching lines...) Expand all
89 private: 101 private:
90 void didDraw(const GraphicsContext*, const SkRect&, const SkPaint&, const Sk Bitmap* sourceBitmap, bool fillsBounds, DrawType); 102 void didDraw(const GraphicsContext*, const SkRect&, const SkPaint&, const Sk Bitmap* sourceBitmap, bool fillsBounds, DrawType);
91 void applyOpaqueRegionFromLayer(const GraphicsContext*, const SkRect& layerO paqueRect, const SkPaint&); 103 void applyOpaqueRegionFromLayer(const GraphicsContext*, const SkRect& layerO paqueRect, const SkPaint&);
92 void markRectAsOpaque(const SkRect&); 104 void markRectAsOpaque(const SkRect&);
93 void markRectAsNonOpaque(const SkRect&); 105 void markRectAsNonOpaque(const SkRect&);
94 void markAllAsNonOpaque(); 106 void markAllAsNonOpaque();
95 107
96 SkRect& currentTrackingOpaqueRect(); 108 SkRect& currentTrackingOpaqueRect();
97 109
98 SkRect m_opaqueRect; 110 SkRect m_opaqueRect;
111 RegionType m_trackedRegionType;
99 112
100 Vector<CanvasLayerState, 3> m_canvasLayerStack; 113 Vector<CanvasLayerState, 3> m_canvasLayerStack;
101 }; 114 };
102 115
103 } 116 }
104 #endif // OpaqueRegionSkia_h 117 #endif // RegionTracker_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp ('k') | Source/platform/graphics/RegionTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698