7111d463ce
This reverts commit 9a90bd16dc6756395c422adf0f24560d033ed9ea. BUG=skia: R=bsalomon@google.com Review URL: https://codereview.chromium.org/211293002 git-svn-id: http://skia.googlecode.com/svn/trunk@13939 2bbb7eff-a529-9590-31e7-b0007b416f81
26 lines
583 B
C++
26 lines
583 B
C++
/*
|
|
* 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 {
|
|
|
|
const char* colortype_name(SkColorType);
|
|
|
|
/**
|
|
* 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
|