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

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

Issue 429343004: Stopped skipping tests in dm of SkPatch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Moved DRAW_PATCH DrawType to the last position 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
« no previous file with comments | « src/core/SkRecorder.h ('k') | src/core/SkRecords.h » ('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 #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
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::drawPatch(const SkPatch& patch, const SkPaint& paint) {
210 APPEND(DrawPatch, delay_copy(paint), delay_copy(patch));
211 }
212
209 void SkRecorder::willSave() { 213 void SkRecorder::willSave() {
210 APPEND(Save); 214 APPEND(Save);
211 INHERITED(willSave); 215 INHERITED(willSave);
212 } 216 }
213 217
214 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds, 218 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds,
215 const SkPaint* paint, 219 const SkPaint* paint,
216 SkCanvas::SaveFlags flags) { 220 SkCanvas::SaveFlags flags) {
217 APPEND(SaveLayer, this->copy(bounds), this->copy(paint), flags); 221 APPEND(SaveLayer, this->copy(bounds), this->copy(paint), flags);
218 INHERITED(willSaveLayer, bounds, paint, flags); 222 INHERITED(willSaveLayer, bounds, paint, flags);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 258
255 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e dgeStyle) { 259 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e dgeStyle) {
256 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle); 260 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle);
257 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is InverseFillType()); 261 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is InverseFillType());
258 } 262 }
259 263
260 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { 264 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) {
261 APPEND(ClipRegion, delay_copy(deviceRgn), op); 265 APPEND(ClipRegion, delay_copy(deviceRgn), op);
262 INHERITED(onClipRegion, deviceRgn, op); 266 INHERITED(onClipRegion, deviceRgn, op);
263 } 267 }
OLDNEW
« no previous file with comments | « src/core/SkRecorder.h ('k') | src/core/SkRecords.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698