summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/tools/sk_tool_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/tools/sk_tool_utils.h')
-rw-r--r--chromium/third_party/skia/tools/sk_tool_utils.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/chromium/third_party/skia/tools/sk_tool_utils.h b/chromium/third_party/skia/tools/sk_tool_utils.h
new file mode 100644
index 00000000000..48fd716342b
--- /dev/null
+++ b/chromium/third_party/skia/tools/sk_tool_utils.h
@@ -0,0 +1,25 @@
+/*
+ * 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