aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/MipMapBench.cpp
blob: 1f41e817db4e9d2389ed88690aa738091152a8d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "Benchmark.h"
#include "SkBitmap.h"
#include "SkMipMap.h"

class MipMapBench: public Benchmark {
    SkBitmap fBitmap;
    SkString fName;
    const int fW, fH;
    SkSourceGammaTreatment fTreatment;

public:
    MipMapBench(int w, int h, SkSourceGammaTreatment treatment)
        : fW(w), fH(h), fTreatment(treatment)
    {
        fName.printf("mipmap_build_%dx%d_%d_gamma", w, h, static_cast<int>(treatment));
    }

protected:
    bool isSuitableFor(Backend backend) override {
        return kNonRendering_Backend == backend;
    }

    const char* onGetName() override { return fName.c_str(); }

    void onDelayedSetup() override {
        SkImageInfo info = SkImageInfo::MakeS32(fW, fH, kPremul_SkAlphaType);
        fBitmap.allocPixels(info);
        fBitmap.eraseColor(SK_ColorWHITE);  // so we don't read uninitialized memory
    }

    void onDraw(int loops, SkCanvas*) override {
        for (int i = 0; i < loops * 4; i++) {
            SkMipMap::Build(fBitmap, fTreatment, nullptr)->unref();
        }
    }

private:
    typedef Benchmark INHERITED;
};

// Build variants that exercise the width and heights being even or odd at each level, as the
// impl specializes on each of these.
//
DEF_BENCH( return new MipMapBench(511, 511, SkSourceGammaTreatment::kIgnore); )
DEF_BENCH( return new MipMapBench(512, 511, SkSourceGammaTreatment::kIgnore); )
DEF_BENCH( return new MipMapBench(511, 512, SkSourceGammaTreatment::kIgnore); )
DEF_BENCH( return new MipMapBench(512, 512, SkSourceGammaTreatment::kIgnore); )
DEF_BENCH( return new MipMapBench(512, 512, SkSourceGammaTreatment::kRespect); )