scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2012 The Android Open Source Project |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 9 | #include "Benchmark.h" |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 10 | #include "SkCanvas.h" |
| 11 | #include "SkWriter32.h" |
| 12 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 13 | class WriterBench : public Benchmark { |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 14 | public: |
commit-bot@chromium.org | 644629c | 2013-11-21 06:21:58 +0000 | [diff] [blame] | 15 | virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { |
| 16 | return backend == kNonRendering_Backend; |
| 17 | } |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 18 | |
| 19 | protected: |
| 20 | virtual const char* onGetName() SK_OVERRIDE { |
| 21 | return "writer"; |
| 22 | } |
| 23 | |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 24 | virtual void onDraw(const int loops, SkCanvas*) SK_OVERRIDE { |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 25 | static const char gStr[] = "abcdefghimjklmnopqrstuvwxyz"; |
| 26 | static const size_t gLen = strlen(gStr); |
commit-bot@chromium.org | 1938242 | 2014-01-14 20:51:26 +0000 | [diff] [blame] | 27 | SkWriter32 writer; |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 28 | for (int i = 0; i < loops; i++) { |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 29 | for (size_t j = 0; j <= gLen; j++) { |
| 30 | writer.writeString(gStr, j); |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | private: |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 36 | typedef Benchmark INHERITED; |
scroggo@google.com | dd39488 | 2012-07-24 20:47:55 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | //////////////////////////////////////////////////////////////////////////////// |
| 40 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 41 | DEF_BENCH( return new WriterBench(); ) |