aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/subset/SubsetBenchPriv.h
blob: 02f7040a227fa2b4b5d2a0f4164a8dcfbb68e4b3 (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
/*
 * Copyright 2015 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SubsetBenchPriv_DEFINED
#define SubsetBenchPriv_DEFINED

#include "SkCodec.h"
#include "SkData.h"
#include "SkImageGenerator.h"

/*
 * Convert the color type to a string
 */
static const char* get_color_name(SkColorType colorType) {
    switch(colorType) {
        case kN32_SkColorType:
            return "N32";
        case kRGB_565_SkColorType:
            return "565";
        case kGray_8_SkColorType:
            return "Gray8";
        case kIndex_8_SkColorType:
            return "Index8";
        case kAlpha_8_SkColorType:
            return "Alpha8";
        default:
            return "Unknown";
    }
}

/*
 * If we plan to decode to kIndex8, we must create a color table and pass it to the
 * bitmap when we allocate pixels.  Otherwise, we simply allocate pixels using the
 * decode info.
 */
static inline void alloc_pixels(SkBitmap* bitmap, const SkImageInfo& info, SkPMColor* colors,
        int colorCount) {
    if (kIndex_8_SkColorType == info.colorType()) {
        SkAutoTUnref<SkColorTable> colorTable(new SkColorTable(colors, colorCount));
        bitmap->allocPixels(info, nullptr, colorTable);
    } else {
        bitmap->allocPixels(info);
    }
}

#endif // SubsetBenchPriv_DEFINED