OLD | NEW |
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 #include "SkRecorder.h" | 8 #include "SkRecorder.h" |
9 #include "SkPicture.h" | 9 #include "SkPicture.h" |
10 | 10 |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 vmode, | 199 vmode, |
200 vertexCount, | 200 vertexCount, |
201 this->copy(vertices, vertexCount), | 201 this->copy(vertices, vertexCount), |
202 texs ? this->copy(texs, vertexCount) : NULL, | 202 texs ? this->copy(texs, vertexCount) : NULL, |
203 colors ? this->copy(colors, vertexCount) : NULL, | 203 colors ? this->copy(colors, vertexCount) : NULL, |
204 xmode, | 204 xmode, |
205 this->copy(indices, indexCount), | 205 this->copy(indices, indexCount), |
206 indexCount); | 206 indexCount); |
207 } | 207 } |
208 | 208 |
209 void SkRecorder::willSave(SkCanvas::SaveFlags flags) { | 209 void SkRecorder::willSave() { |
210 APPEND(Save, flags); | 210 APPEND(Save); |
211 INHERITED(willSave, flags); | 211 INHERITED(willSave); |
212 } | 212 } |
213 | 213 |
214 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds, | 214 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds, |
215 const SkPaint* paint, | 215 const SkPaint* paint, |
216 SkCanvas::SaveFlags flags)
{ | 216 SkCanvas::SaveFlags flags)
{ |
217 APPEND(SaveLayer, this->copy(bounds), this->copy(paint), flags); | 217 APPEND(SaveLayer, this->copy(bounds), this->copy(paint), flags); |
218 INHERITED(willSaveLayer, bounds, paint, flags); | 218 INHERITED(willSaveLayer, bounds, paint, flags); |
219 return SkCanvas::kNoLayer_SaveLayerStrategy; | 219 return SkCanvas::kNoLayer_SaveLayerStrategy; |
220 } | 220 } |
221 | 221 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 254 |
255 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e
dgeStyle) { | 255 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e
dgeStyle) { |
256 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle); | 256 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle); |
257 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is
InverseFillType()); | 257 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is
InverseFillType()); |
258 } | 258 } |
259 | 259 |
260 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { | 260 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { |
261 APPEND(ClipRegion, delay_copy(deviceRgn), op); | 261 APPEND(ClipRegion, delay_copy(deviceRgn), op); |
262 INHERITED(onClipRegion, deviceRgn, op); | 262 INHERITED(onClipRegion, deviceRgn, op); |
263 } | 263 } |
OLD | NEW |