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

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

Issue 463493002: SkCanvas::drawPatch param SkPoint[12] (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
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) { 209 void SkRecorder::drawPatch(const SkPoint cubics[12], const SkColor colors[4],
210 APPEND(DrawPatch, delay_copy(paint), delay_copy(patch)); 210 const SkPoint texCoords[4], SkXfermode* xmode, const SkPaint& paint) {
211 if (NULL == cubics) {
212 return;
213 }
214
215 APPEND(DrawPatch, delay_copy(paint), cubics ? this->copy(cubics, SkPatch::kN umCtrlPts) : NULL,
216 colors ? this->copy(colors, SkPatch::kNumCorners) : NULL,
217 texCoords ? this->copy(texCoords, SkPatch::kNumCorners) : NULL,
218 xmode);
211 } 219 }
212 220
213 void SkRecorder::willSave() { 221 void SkRecorder::willSave() {
214 APPEND(Save); 222 APPEND(Save);
215 INHERITED(willSave); 223 INHERITED(willSave);
216 } 224 }
217 225
218 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds, 226 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds,
219 const SkPaint* paint, 227 const SkPaint* paint,
220 SkCanvas::SaveFlags flags) { 228 SkCanvas::SaveFlags flags) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 266
259 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e dgeStyle) { 267 void SkRecorder::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle e dgeStyle) {
260 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle); 268 APPEND(ClipPath, delay_copy(path), op, edgeStyle == kSoft_ClipEdgeStyle);
261 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is InverseFillType()); 269 INHERITED(updateClipConservativelyUsingBounds, path.getBounds(), op, path.is InverseFillType());
262 } 270 }
263 271
264 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { 272 void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) {
265 APPEND(ClipRegion, delay_copy(deviceRgn), op); 273 APPEND(ClipRegion, delay_copy(deviceRgn), op);
266 INHERITED(onClipRegion, deviceRgn, op); 274 INHERITED(onClipRegion, deviceRgn, op);
267 } 275 }
OLDNEW
« include/core/SkCanvas.h ('K') | « src/core/SkRecorder.h ('k') | src/core/SkRecords.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698