OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 "SkImage.h" | 10 #include "SkImage.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 const char* onGetName() override { return fName.c_str(); } | 31 const char* onGetName() override { return fName.c_str(); } |
32 | 32 |
33 void onDraw(int loops, SkCanvas* canvas) override { | 33 void onDraw(int loops, SkCanvas* canvas) override { |
34 if (!fSurface) { | 34 if (!fSurface) { |
35 GrContext* context = canvas->getGrContext(); | 35 GrContext* context = canvas->getGrContext(); |
36 if (nullptr == context) { | 36 if (nullptr == context) { |
37 return; | 37 return; |
38 } | 38 } |
39 SkImageInfo info = SkImageInfo::Make(fW, fH, kN32_SkColorType, kPrem
ul_SkAlphaType, | 39 SkImageInfo info = SkImageInfo::Make(fW, fH, kN32_SkColorType, kPrem
ul_SkAlphaType, |
40 SkColorSpace::NewNamed(SkColorS
pace::kSRGB_Named)); | 40 kSRGB_SkColorProfileType); |
41 fSurface = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, inf
o); | 41 fSurface = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, inf
o); |
42 } | 42 } |
43 | 43 |
44 // Clear surface once: | 44 // Clear surface once: |
45 fSurface->getCanvas()->clear(SK_ColorBLACK); | 45 fSurface->getCanvas()->clear(SK_ColorBLACK); |
46 | 46 |
47 SkPaint paint; | 47 SkPaint paint; |
48 paint.setFilterQuality(kMedium_SkFilterQuality); | 48 paint.setFilterQuality(kMedium_SkFilterQuality); |
49 | 49 |
50 for (int i = 0; i < loops; i++) { | 50 for (int i = 0; i < loops; i++) { |
(...skipping 18 matching lines...) Expand all Loading... |
69 | 69 |
70 // Build variants that exercise the width and heights being even or odd at each
level, as the | 70 // Build variants that exercise the width and heights being even or odd at each
level, as the |
71 // impl specializes on each of these. | 71 // impl specializes on each of these. |
72 // | 72 // |
73 DEF_BENCH( return new GrMipMapBench(511, 511); ) | 73 DEF_BENCH( return new GrMipMapBench(511, 511); ) |
74 DEF_BENCH( return new GrMipMapBench(512, 511); ) | 74 DEF_BENCH( return new GrMipMapBench(512, 511); ) |
75 DEF_BENCH( return new GrMipMapBench(511, 512); ) | 75 DEF_BENCH( return new GrMipMapBench(511, 512); ) |
76 DEF_BENCH( return new GrMipMapBench(512, 512); ) | 76 DEF_BENCH( return new GrMipMapBench(512, 512); ) |
77 | 77 |
78 #endif | 78 #endif |
OLD | NEW |