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

Side by Side Diff: bench/GameBench.cpp

Issue 1240753003: Revert[2] of guard to remove DrawBitmapRectFlags (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 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 | « bench/BitmapRectBench.cpp ('k') | gm/bitmaprect.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 2012 Google Inc. 2 * Copyright 2012 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 "Benchmark.h" 8 #include "Benchmark.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkPaint.h" 10 #include "SkPaint.h"
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 SkPoint uvs[4] = { 197 SkPoint uvs[4] = {
198 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fBottom) }, 198 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fBottom) },
199 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fTop) }, 199 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fTop) },
200 { SkIntToScalar(src.fRight), SkIntToScalar(src.fTop) }, 200 { SkIntToScalar(src.fRight), SkIntToScalar(src.fTop) },
201 { SkIntToScalar(src.fRight), SkIntToScalar(src.fBottom) }, 201 { SkIntToScalar(src.fRight), SkIntToScalar(src.fBottom) },
202 }; 202 };
203 canvas->drawVertices(SkCanvas::kTriangles_VertexMode, 203 canvas->drawVertices(SkCanvas::kTriangles_VertexMode,
204 4, verts, uvs, NULL, NULL, 204 4, verts, uvs, NULL, NULL,
205 indices, 6, p2); 205 indices, 6, p2);
206 } else { 206 } else {
207 canvas->drawBitmapRect(fAtlas, &src, dst, &p, 207 canvas->drawBitmapRect(fAtlas, src, dst, &p,
208 SkCanvas::kBleed_DrawBitmapRectFlag); 208 SkCanvas::kFast_SrcRectConstraint);
209 } 209 }
210 } else { 210 } else {
211 canvas->drawBitmapRect(fCheckerboard, NULL, dst, &p); 211 canvas->drawBitmapRect(fCheckerboard, dst, &p);
212 } 212 }
213 } 213 }
214 } 214 }
215 215
216 private: 216 private:
217 static const int kCheckerboardWidth = 64; 217 static const int kCheckerboardWidth = 64;
218 static const int kCheckerboardHeight = 128; 218 static const int kCheckerboardHeight = 128;
219 219
220 static const int kAtlasCellWidth = 48; 220 static const int kAtlasCellWidth = 48;
221 static const int kAtlasCellHeight = 36; 221 static const int kAtlasCellHeight = 36;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type, 325 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type,
326 GameBench::kFull_Clear, true)); ) 326 GameBench::kFull_Clear, true)); )
327 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kRotate_Type, 327 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kRotate_Type,
328 GameBench::kFull_Clear)); ) 328 GameBench::kFull_Clear)); )
329 329
330 // Atlased 330 // Atlased
331 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type, 331 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type,
332 GameBench::kFull_Clear, false, true) ); ) 332 GameBench::kFull_Clear, false, true) ); )
333 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type, 333 DEF_BENCH( return SkNEW_ARGS(GameBench, (GameBench::kTranslate_Type,
334 GameBench::kFull_Clear, false, true, true)); ) 334 GameBench::kFull_Clear, false, true, true)); )
OLDNEW
« no previous file with comments | « bench/BitmapRectBench.cpp ('k') | gm/bitmaprect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698