aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/sk_tool_utils.h
blob: 7747a12096c40eaccf1cb903d7da73c30ad2a79f (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
/*
 * Copyright 2014 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef sk_tool_utils_DEFINED
#define sk_tool_utils_DEFINED

#include "SkCanvas.h"
#include "SkBitmap.h"

namespace sk_tool_utils {

    /**
     *  Return the colorType and alphaType that correspond to the specified Config8888
     */
    void config8888_to_imagetypes(SkCanvas::Config8888, SkColorType*, SkAlphaType*);

    /**
     *  Call canvas->writePixels() by using the pixels from bitmap, but with an info that claims
     *  the pixels are colorType + alphaType
     */
    void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
}

#endif