| OLD | NEW |
| 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 Loading... |
| 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::kFast_SrcRectConstraint); | 208 SkCanvas::kBleed_DrawBitmapRectFlag); |
| 209 } | 209 } |
| 210 } else { | 210 } else { |
| 211 canvas->drawBitmapRect(fCheckerboard, dst, &p); | 211 canvas->drawBitmapRect(fCheckerboard, NULL, 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 Loading... |
| 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)); ) |
| OLD | NEW |