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

Side by Side Diff: src/core/SkRecorder.h

Issue 1744103002: move annotations to canvas virtual (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « src/core/SkRecordDraw.cpp ('k') | src/core/SkRecorder.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkRecorder_DEFINED 8 #ifndef SkRecorder_DEFINED
9 #define SkRecorder_DEFINED 9 #define SkRecorder_DEFINED
10 10
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 const SkPaint&) override; 113 const SkPaint&) override;
114 void onDrawAtlas(const SkImage*, const SkRSXform[], const SkRect[], const Sk Color[], 114 void onDrawAtlas(const SkImage*, const SkRSXform[], const SkRect[], const Sk Color[],
115 int count, SkXfermode::Mode, const SkRect* cull, const SkPa int*) override; 115 int count, SkXfermode::Mode, const SkRect* cull, const SkPa int*) override;
116 116
117 void onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle ) override; 117 void onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle ) override;
118 void onClipRRect(const SkRRect& rrect, SkRegion::Op op, ClipEdgeStyle edgeSt yle) override; 118 void onClipRRect(const SkRRect& rrect, SkRegion::Op op, ClipEdgeStyle edgeSt yle) override;
119 void onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle edgeStyle ) override; 119 void onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle edgeStyle ) override;
120 void onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) override; 120 void onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) override;
121 121
122 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) overri de; 122 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) overri de;
123 void onDrawAnnotation(const SkRect&, const char[], SkData*) override;
123 124
124 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override { return nullptr; } 125 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override { return nullptr; }
125 126
126 void flushMiniRecorder(); 127 void flushMiniRecorder();
127 128
128 private: 129 private:
129 template <typename T> 130 template <typename T>
130 T* copy(const T*); 131 T* copy(const T*);
131 132
132 template <typename T> 133 template <typename T>
133 T* copy(const T[], size_t count); 134 T* copy(const T[], size_t count);
134 135
135 SkIRect devBounds() const { 136 SkIRect devBounds() const {
136 SkIRect devBounds; 137 SkIRect devBounds;
137 this->getClipDeviceBounds(&devBounds); 138 this->getClipDeviceBounds(&devBounds);
138 return devBounds; 139 return devBounds;
139 } 140 }
140 141
141 DrawPictureMode fDrawPictureMode; 142 DrawPictureMode fDrawPictureMode;
142 size_t fApproxBytesUsedBySubPictures; 143 size_t fApproxBytesUsedBySubPictures;
143 SkRecord* fRecord; 144 SkRecord* fRecord;
144 SkAutoTDelete<SkDrawableList> fDrawableList; 145 SkAutoTDelete<SkDrawableList> fDrawableList;
145 146
146 SkMiniRecorder* fMiniRecorder; 147 SkMiniRecorder* fMiniRecorder;
147 }; 148 };
148 149
149 #endif//SkRecorder_DEFINED 150 #endif//SkRecorder_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkRecordDraw.cpp ('k') | src/core/SkRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698