| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 const SkScalar y = SkIntToScalar(dim.fHeight) / 2; | 232 const SkScalar y = SkIntToScalar(dim.fHeight) / 2; |
| 233 | 233 |
| 234 canvas->translate(x, y); | 234 canvas->translate(x, y); |
| 235 // just enough so we can't take the sprite case | 235 // just enough so we can't take the sprite case |
| 236 canvas->scale(SK_Scalar1 * 99/100, SK_Scalar1 * 99/100); | 236 canvas->scale(SK_Scalar1 * 99/100, SK_Scalar1 * 99/100); |
| 237 canvas->translate(-x, -y); | 237 canvas->translate(-x, -y); |
| 238 } | 238 } |
| 239 if (fFlags & kRotate_Flag) { | 239 if (fFlags & kRotate_Flag) { |
| 240 const SkScalar x = SkIntToScalar(dim.fWidth) / 2; | 240 const SkScalar x = SkIntToScalar(dim.fWidth) / 2; |
| 241 const SkScalar y = SkIntToScalar(dim.fHeight) / 2; | 241 const SkScalar y = SkIntToScalar(dim.fHeight) / 2; |
| 242 | 242 canvas->rotate(SkIntToScalar(35), x, y); |
| 243 canvas->translate(x, y); | |
| 244 canvas->rotate(SkIntToScalar(35)); | |
| 245 canvas->translate(-x, -y); | |
| 246 } | 243 } |
| 247 INHERITED::onDraw(loops, canvas); | 244 INHERITED::onDraw(loops, canvas); |
| 248 } | 245 } |
| 249 | 246 |
| 250 void setupPaint(SkPaint* paint) override { | 247 void setupPaint(SkPaint* paint) override { |
| 251 this->INHERITED::setupPaint(paint); | 248 this->INHERITED::setupPaint(paint); |
| 252 | 249 |
| 253 int index = 0; | 250 int index = 0; |
| 254 if (fFlags & kBilerp_Flag) { | 251 if (fFlags & kBilerp_Flag) { |
| 255 index |= 1; | 252 index |= 1; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kOpaque_SkAlphaType, t
rue, false, kScale_Flag | kRotate_Flag | kBilerp_Flag); ) | 378 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kOpaque_SkAlphaType, t
rue, false, kScale_Flag | kRotate_Flag | kBilerp_Flag); ) |
| 382 | 379 |
| 383 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kPremul_SkAlphaType, f
alse, false, kScale_Flag | kBilerp_Flag | kBicubic_Flag); ) | 380 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kPremul_SkAlphaType, f
alse, false, kScale_Flag | kBilerp_Flag | kBicubic_Flag); ) |
| 384 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kPremul_SkAlphaType, f
alse, false, kScale_Flag | kRotate_Flag | kBilerp_Flag | kBicubic_Flag); ) | 381 DEF_BENCH( return new FilterBitmapBench(kN32_SkColorType, kPremul_SkAlphaType, f
alse, false, kScale_Flag | kRotate_Flag | kBilerp_Flag | kBicubic_Flag); ) |
| 385 | 382 |
| 386 // source alpha tests -> S32A_Opaque_BlitRow32_{arm,neon} | 383 // source alpha tests -> S32A_Opaque_BlitRow32_{arm,neon} |
| 387 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kOpaque_Sou
rceAlpha, kN32_SkColorType); ) | 384 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kOpaque_Sou
rceAlpha, kN32_SkColorType); ) |
| 388 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kTransparen
t_SourceAlpha, kN32_SkColorType); ) | 385 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kTransparen
t_SourceAlpha, kN32_SkColorType); ) |
| 389 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kTwoStripes
_SourceAlpha, kN32_SkColorType); ) | 386 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kTwoStripes
_SourceAlpha, kN32_SkColorType); ) |
| 390 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kThreeStrip
es_SourceAlpha, kN32_SkColorType); ) | 387 DEF_BENCH( return new SourceAlphaBitmapBench(SourceAlphaBitmapBench::kThreeStrip
es_SourceAlpha, kN32_SkColorType); ) |
| OLD | NEW |