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: src/pipe/SkGPipePriv.h

Issue 1261433009: Refugee from Dead Machine 11: Add SkCanvas::drawLitAtlas call Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update Created 4 years, 7 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/effects/SkPoint3.cpp ('k') | src/pipe/SkGPipeRead.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 10
(...skipping 22 matching lines...) Expand all
33 enum DrawOps { 33 enum DrawOps {
34 kSkip_DrawOp, // skip an addition N bytes (N == data) 34 kSkip_DrawOp, // skip an addition N bytes (N == data)
35 35
36 // these match Canvas apis 36 // these match Canvas apis
37 kClipPath_DrawOp, 37 kClipPath_DrawOp,
38 kClipRegion_DrawOp, 38 kClipRegion_DrawOp,
39 kClipRect_DrawOp, 39 kClipRect_DrawOp,
40 kClipRRect_DrawOp, 40 kClipRRect_DrawOp,
41 kConcat_DrawOp, 41 kConcat_DrawOp,
42 kDrawAtlas_DrawOp, 42 kDrawAtlas_DrawOp,
43 kDrawLitAtlas_DrawOp,
43 kDrawBitmap_DrawOp, 44 kDrawBitmap_DrawOp,
44 kDrawBitmapNine_DrawOp, 45 kDrawBitmapNine_DrawOp,
45 kDrawBitmapRect_DrawOp, 46 kDrawBitmapRect_DrawOp,
46 kDrawDRRect_DrawOp, 47 kDrawDRRect_DrawOp,
47 kDrawImage_DrawOp, 48 kDrawImage_DrawOp,
48 kDrawImageRect_DrawOp, 49 kDrawImageRect_DrawOp,
49 kDrawImageNine_DrawOp, 50 kDrawImageNine_DrawOp,
50 kDrawOval_DrawOp, 51 kDrawOval_DrawOp,
51 kDrawPaint_DrawOp, 52 kDrawPaint_DrawOp,
52 kDrawPatch_DrawOp, 53 kDrawPatch_DrawOp,
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK)); 306 SkASSERT(0 == (op & ~PAINTOPS_OP_MASK));
306 SkASSERT(0 == (flags & ~PAINTOPS_FLAG_MASK)); 307 SkASSERT(0 == (flags & ~PAINTOPS_FLAG_MASK));
307 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK)); 308 SkASSERT(0 == (data & ~PAINTOPS_DATA_MASK));
308 309
309 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) | 310 return (op << (PAINTOPS_FLAG_BITS + PAINTOPS_DATA_BITS)) |
310 (flags << PAINTOPS_DATA_BITS) | 311 (flags << PAINTOPS_DATA_BITS) |
311 data; 312 data;
312 } 313 }
313 314
314 #endif 315 #endif
OLDNEW
« no previous file with comments | « src/effects/SkPoint3.cpp ('k') | src/pipe/SkGPipeRead.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698