robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 8 | #include "Benchmark.h" |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 9 | #include "SkCanvas.h" |
| 10 | |
| 11 | |
| 12 | /** |
| 13 | * This bench mark tests the use case where the user writes the a canvas |
| 14 | * and then reads small chunks from it repeatedly. This can cause trouble |
| 15 | * for the GPU as readbacks are very expensive. |
| 16 | */ |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 17 | class ReadPixBench : public Benchmark { |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 18 | public: |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 19 | ReadPixBench() {} |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 20 | |
| 21 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 22 | const char* onGetName() override { |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 23 | return "readpix"; |
| 24 | } |
| 25 | |
mtklein | a1ebeb2 | 2015-10-01 09:43:39 -0700 | [diff] [blame] | 26 | void onDraw(int loops, SkCanvas* canvas) override { |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 27 | canvas->clear(SK_ColorBLACK); |
| 28 | |
| 29 | SkISize size = canvas->getDeviceSize(); |
| 30 | |
| 31 | int offX = (size.width() - kWindowSize) / kNumStepsX; |
| 32 | int offY = (size.height() - kWindowSize) / kNumStepsY; |
| 33 | |
| 34 | SkPaint paint; |
| 35 | |
| 36 | paint.setColor(SK_ColorBLUE); |
| 37 | |
skia.committer@gmail.com | 73bb3be | 2012-09-05 02:01:29 +0000 | [diff] [blame] | 38 | canvas->drawCircle(SkIntToScalar(size.width()/2), |
| 39 | SkIntToScalar(size.height()/2), |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 40 | SkIntToScalar(size.width()/2), |
| 41 | paint); |
| 42 | |
| 43 | SkBitmap bitmap; |
| 44 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 45 | bitmap.setInfo(SkImageInfo::MakeN32Premul(kWindowSize, kWindowSize)); |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 46 | |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 47 | for (int i = 0; i < loops; i++) { |
mtklein@google.com | c289743 | 2013-09-10 19:23:38 +0000 | [diff] [blame] | 48 | for (int x = 0; x < kNumStepsX; ++x) { |
| 49 | for (int y = 0; y < kNumStepsY; ++y) { |
| 50 | canvas->readPixels(&bitmap, x * offX, y * offY); |
| 51 | } |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | private: |
| 57 | static const int kNumStepsX = 30; |
| 58 | static const int kNumStepsY = 30; |
| 59 | static const int kWindowSize = 5; |
| 60 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 61 | typedef Benchmark INHERITED; |
robertphillips@google.com | 6806bda | 2012-09-04 13:39:01 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | //////////////////////////////////////////////////////////////////////////////// |
| 65 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 66 | DEF_BENCH( return new ReadPixBench(); ) |