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

Side by Side Diff: dm/DMBenchTask.cpp

Issue 213093004: Let DM work without a GPU. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 9 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 | « dm/DM.cpp ('k') | dm/DMGpuGMTask.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "DMBenchTask.h" 1 #include "DMBenchTask.h"
2 #include "DMUtil.h" 2 #include "DMUtil.h"
3 #include "SkSurface.h" 3 #include "SkSurface.h"
4 4
5 namespace DM { 5 namespace DM {
6 6
7 static SkString bench_name(const char* name, const char* config) { 7 static SkString bench_name(const char* name, const char* config) {
8 SkString result("bench "); 8 SkString result("bench ");
9 result.appendf("%s_%s", name, config); 9 result.appendf("%s_%s", name, config);
10 return result; 10 return result;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 bool NonRenderingBenchTask::shouldSkip() const { 43 bool NonRenderingBenchTask::shouldSkip() const {
44 return !fBench->isSuitableFor(SkBenchmark::kNonRendering_Backend); 44 return !fBench->isSuitableFor(SkBenchmark::kNonRendering_Backend);
45 } 45 }
46 46
47 bool CpuBenchTask::shouldSkip() const { 47 bool CpuBenchTask::shouldSkip() const {
48 return !fBench->isSuitableFor(SkBenchmark::kRaster_Backend); 48 return !fBench->isSuitableFor(SkBenchmark::kRaster_Backend);
49 } 49 }
50 50
51 bool GpuBenchTask::shouldSkip() const { 51 bool GpuBenchTask::shouldSkip() const {
52 return !fBench->isSuitableFor(SkBenchmark::kGPU_Backend); 52 return kGPUDisabled || !fBench->isSuitableFor(SkBenchmark::kGPU_Backend);
53 } 53 }
54 54
55 static void draw_raster(SkBenchmark* bench, SkColorType colorType) { 55 static void draw_raster(SkBenchmark* bench, SkColorType colorType) {
56 SkBitmap bitmap; 56 SkBitmap bitmap;
57 SetupBitmap(colorType, bench, &bitmap); 57 SetupBitmap(colorType, bench, &bitmap);
58 SkCanvas canvas(bitmap); 58 SkCanvas canvas(bitmap);
59 59
60 bench->preDraw(); 60 bench->preDraw();
61 bench->draw(1, &canvas); 61 bench->draw(1, &canvas);
62 bench->postDraw(); 62 bench->postDraw();
63 } 63 }
64 64
65 void NonRenderingBenchTask::draw() { 65 void NonRenderingBenchTask::draw() {
66 draw_raster(fBench.get(), kPMColor_SkColorType); 66 draw_raster(fBench.get(), kPMColor_SkColorType);
67 } 67 }
68 68
69 void CpuBenchTask::draw() { 69 void CpuBenchTask::draw() {
70 draw_raster(fBench.get(), fColorType); 70 draw_raster(fBench.get(), fColorType);
71 } 71 }
72 72
73 void GpuBenchTask::draw(GrContextFactory* grFactory) { 73 void GpuBenchTask::draw(GrContextFactory* grFactory) {
74 SkImageInfo info = SkImageInfo::Make(fBench->getSize().x(), 74 SkImageInfo info = SkImageInfo::Make(fBench->getSize().x(),
75 fBench->getSize().y(), 75 fBench->getSize().y(),
76 kPMColor_SkColorType, 76 kPMColor_SkColorType,
77 kPremul_SkAlphaType); 77 kPremul_SkAlphaType);
78 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget( 78 SkAutoTUnref<SkSurface> surface(NewGpuSurface(grFactory, fContextType, info, fSampleCount));
79 grFactory->get(fContextType), info, fSampleCount));
80 79
81 fBench->preDraw(); 80 fBench->preDraw();
82 fBench->draw(1, surface->getCanvas()); 81 fBench->draw(1, surface->getCanvas());
83 fBench->postDraw(); 82 fBench->postDraw();
84 } 83 }
85 84
86 } // namespace DM 85 } // namespace DM
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | dm/DMGpuGMTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698