blob: c87e6f6484fb467a2352bd72736e8b7322e548a0 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.come9d00602009-09-02 21:12:42 +00008#include "SkBenchmark.h"
9#include "SkBitmap.h"
10#include "SkImageDecoder.h"
11#include "SkString.h"
12
13static const char* gConfigName[] = {
14 "ERROR", "a1", "a8", "index8", "565", "4444", "8888"
15};
16
17class DecodeBench : public SkBenchmark {
18 const char* fFilename;
19 SkBitmap::Config fPrefConfig;
20 SkString fName;
tomhudson@google.comca529d32011-10-28 15:34:49 +000021 enum { N = SkBENCHLOOP(10) };
reed@android.come9d00602009-09-02 21:12:42 +000022public:
23 DecodeBench(void* param, SkBitmap::Config c) : SkBenchmark(param) {
24 fFilename = this->findDefine("decode-filename");
25 fPrefConfig = c;
rmistry@google.comfbfcd562012-08-23 18:09:54 +000026
reed@android.come9d00602009-09-02 21:12:42 +000027 const char* fname = NULL;
28 if (fFilename) {
29 fname = strrchr(fFilename, '/');
30 if (fname) {
31 fname += 1; // skip the slash
32 }
33 }
34 fName.printf("decode_%s_%s", gConfigName[c], fname);
robertphillips@google.com433ce5e2012-09-17 10:49:30 +000035 fIsRendering = false;
reed@android.come9d00602009-09-02 21:12:42 +000036 }
37
38protected:
39 virtual const char* onGetName() {
40 return fName.c_str();
41 }
42
sugoi@google.com77472f02013-03-05 18:50:01 +000043 virtual void onDraw(SkCanvas*) {
reed@google.com757cdc42011-05-09 21:59:56 +000044 if (fFilename) {
45 for (int i = 0; i < N; i++) {
46 SkBitmap bm;
47 SkImageDecoder::DecodeFile(fFilename, &bm, fPrefConfig,
48 SkImageDecoder::kDecodePixels_Mode);
49 }
reed@android.come9d00602009-09-02 21:12:42 +000050 }
51 }
52
53private:
54 typedef SkBenchmark INHERITED;
55};
56
57static SkBenchmark* Fact0(void* p) { return new DecodeBench(p, SkBitmap::kARGB_8888_Config); }
58static SkBenchmark* Fact1(void* p) { return new DecodeBench(p, SkBitmap::kRGB_565_Config); }
59static SkBenchmark* Fact2(void* p) { return new DecodeBench(p, SkBitmap::kARGB_4444_Config); }
60
61static BenchRegistry gReg0(Fact0);
62static BenchRegistry gReg1(Fact1);
63static BenchRegistry gReg2(Fact2);