blob: b3aae801b3a24050877405e77ad225c3363b1cd1 [file] [log] [blame]
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef sk_tool_utils_DEFINED
9#define sk_tool_utils_DEFINED
10
halcanaryb0cce2c2015-01-26 12:49:00 -080011#include "SkColor.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050012#include "SkData.h"
13#include "SkEncodedImageFormat.h"
14#include "SkFontStyle.h"
robertphillips3e5c2b12015-03-23 05:46:51 -070015#include "SkImageEncoder.h"
tfarina20108912014-06-21 10:54:17 -070016#include "SkImageInfo.h"
robertphillips423f6462015-10-19 12:15:55 -070017#include "SkRandom.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050018#include "SkRect.h"
Robert Phillips4150eea2018-02-07 17:08:21 -050019#include "SkRefCnt.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050020#include "SkScalar.h"
Hal Canary1fcc4042016-11-30 17:07:59 -050021#include "SkStream.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050022#include "SkTArray.h"
robertphillips423f6462015-10-19 12:15:55 -070023#include "SkTDArray.h"
Mike Reed3185f902018-10-26 16:33:00 -040024#include "SkTypeface.h"
Ben Wagner97182cc2018-02-15 10:20:04 -050025#include "SkTypes.h"
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000026
Cary Clark992c7b02014-07-31 08:58:44 -040027class SkBitmap;
28class SkCanvas;
Ben Wagner97182cc2018-02-15 10:20:04 -050029class SkFontStyle;
Mike Reed24846602017-12-04 16:06:03 -050030class SkImage;
Cary Clark992c7b02014-07-31 08:58:44 -040031class SkPaint;
joshualitt98d2e2f2015-10-05 07:23:30 -070032class SkPath;
Ben Wagner97182cc2018-02-15 10:20:04 -050033class SkPixmap;
robertphillips276d3282016-08-04 09:03:19 -070034class SkRRect;
halcanaryb0cce2c2015-01-26 12:49:00 -080035class SkShader;
Mike Reed46596ae2018-01-02 15:40:29 -050036class SkSurface;
37class SkSurfaceProps;
joshualitt9e36c1a2015-04-14 12:17:27 -070038class SkTextBlobBuilder;
Ben Wagner97182cc2018-02-15 10:20:04 -050039class SkTypeface;
skia.committer@gmail.comdb0c8752014-03-18 03:02:11 +000040
Cary Clark992c7b02014-07-31 08:58:44 -040041namespace sk_tool_utils {
caryclark5fb6bd42014-06-23 11:25:00 -070042
Mike Reedd4746982018-02-07 16:05:29 -050043 const char* alphatype_name(SkAlphaType);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000044 const char* colortype_name(SkColorType);
caryclark37213552015-07-24 11:08:01 -070045
46 /**
47 * Map opaque colors from 8888 to 565.
48 */
caryclark65cdba62015-06-15 06:51:08 -070049 SkColor color_to_565(SkColor color);
caryclark37213552015-07-24 11:08:01 -070050
51 /**
52 * Return a color emoji typeface if available.
53 */
bungeman13b9c952016-05-12 10:09:30 -070054 sk_sp<SkTypeface> emoji_typeface();
caryclark37213552015-07-24 11:08:01 -070055
56 /**
57 * If the platform supports color emoji, return sample text the emoji can render.
58 */
caryclarkc3dcb672015-07-21 12:27:36 -070059 const char* emoji_sample_text();
caryclark37213552015-07-24 11:08:01 -070060
61 /**
Mike Kleinb251b722017-11-13 11:03:16 -050062 * Returns a string describing the platform font manager, if we're using one, otherwise "".
caryclark37213552015-07-24 11:08:01 -070063 */
Mike Kleinb251b722017-11-13 11:03:16 -050064 const char* platform_font_manager();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000065
66 /**
caryclark1818acb2015-07-24 12:09:25 -070067 * Sets the paint to use a platform-independent text renderer
caryclark5fb6bd42014-06-23 11:25:00 -070068 */
halcanary96fcdcc2015-08-27 07:41:13 -070069 void set_portable_typeface(SkPaint* paint, const char* name = nullptr,
mbocee6a9912016-05-31 11:42:36 -070070 SkFontStyle style = SkFontStyle());
caryclark37213552015-07-24 11:08:01 -070071
72 /**
caryclark37213552015-07-24 11:08:01 -070073 * Returns a platform-independent text renderer.
74 */
mbocee6a9912016-05-31 11:42:36 -070075 sk_sp<SkTypeface> create_portable_typeface(const char* name, SkFontStyle style);
caryclark37213552015-07-24 11:08:01 -070076
Mike Reed3185f902018-10-26 16:33:00 -040077 static inline sk_sp<SkTypeface> create_portable_typeface() {
78 return create_portable_typeface(nullptr, SkFontStyle());
79 }
80
caryclark5fb6bd42014-06-23 11:25:00 -070081 /**
Mike Reed4c790bd2018-02-08 14:10:40 -050082 * Call writePixels() by using the pixels from bitmap, but with an info that claims
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000083 * the pixels are colorType + alphaType
84 */
85 void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
Mike Reed4c790bd2018-02-08 14:10:40 -050086 void write_pixels(SkSurface*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000087
Mike Reed5a625e02017-08-08 15:48:54 -040088 /**
Brian Osman1b151982018-09-20 12:47:39 -040089 * Returns true iff all of the pixels between the two images are identical.
Mike Reed5a625e02017-08-08 15:48:54 -040090 *
91 * If the configs differ, return false.
Mike Reed5a625e02017-08-08 15:48:54 -040092 */
Brian Osman1b151982018-09-20 12:47:39 -040093 bool equal_pixels(const SkPixmap&, const SkPixmap&);
94 bool equal_pixels(const SkBitmap&, const SkBitmap&);
95 bool equal_pixels(const SkImage* a, const SkImage* b);
Mike Reed5a625e02017-08-08 15:48:54 -040096
halcanaryb0cce2c2015-01-26 12:49:00 -080097 /** Returns a newly created CheckerboardShader. */
reed8a21c9f2016-03-08 18:50:00 -080098 sk_sp<SkShader> create_checkerboard_shader(SkColor c1, SkColor c2, int size);
halcanaryb0cce2c2015-01-26 12:49:00 -080099
100 /** Draw a checkerboard pattern in the current canvas, restricted to
halcanaryf77365f2015-01-27 08:38:35 -0800101 the current clip, using SkXfermode::kSrc_Mode. */
halcanaryb0cce2c2015-01-26 12:49:00 -0800102 void draw_checkerboard(SkCanvas* canvas,
103 SkColor color1,
104 SkColor color2,
robertphillips943a4622015-09-03 13:32:33 -0700105 int checkSize);
106
107 /** Make it easier to create a bitmap-based checkerboard */
108 SkBitmap create_checkerboard_bitmap(int w, int h,
109 SkColor c1, SkColor c2,
110 int checkSize);
halcanaryb0cce2c2015-01-26 12:49:00 -0800111
112 /** A default checkerboard. */
113 inline void draw_checkerboard(SkCanvas* canvas) {
114 sk_tool_utils::draw_checkerboard(canvas, 0xFF999999, 0xFF666666, 8);
115 }
116
robertphillips943a4622015-09-03 13:32:33 -0700117 SkBitmap create_string_bitmap(int w, int h, SkColor c, int x, int y,
118 int textSize, const char* str);
119
Cary Clarka24712e2018-09-05 18:41:40 +0000120 // If the canvas does't make a surface (e.g. recording), make a raster surface
121 sk_sp<SkSurface> makeSurface(SkCanvas*, const SkImageInfo&, const SkSurfaceProps* = nullptr);
122
joshualitt9e36c1a2015-04-14 12:17:27 -0700123 // A helper for inserting a drawtext call into a SkTextBlobBuilder
Robert Phillips4c72b262017-08-15 13:28:42 -0400124 void add_to_text_blob_w_len(SkTextBlobBuilder* builder, const char* text, size_t len,
125 const SkPaint& origPaint, SkScalar x, SkScalar y);
126
127 void add_to_text_blob(SkTextBlobBuilder* builder, const char* text,
128 const SkPaint& origPaint, SkScalar x, SkScalar y);
joshualitt9e36c1a2015-04-14 12:17:27 -0700129
Chris Dalton7c02cc72017-11-06 14:10:54 -0700130 // Constructs a star by walking a 'numPts'-sided regular polygon with even/odd fill:
131 //
132 // moveTo(pts[0]);
133 // lineTo(pts[step % numPts]);
134 // ...
135 // lineTo(pts[(step * (N - 1)) % numPts]);
136 //
137 // numPts=5, step=2 will produce a classic five-point star.
138 //
139 // numPts and step must be co-prime.
140 SkPath make_star(const SkRect& bounds, int numPts = 5, int step = 2);
141
Robert Phillipsa8cdbd72018-07-17 12:30:40 -0400142 void create_hemi_normal_map(SkBitmap* bm, const SkIRect& dst);
143
144 void create_frustum_normal_map(SkBitmap* bm, const SkIRect& dst);
145
146 void create_tetra_normal_map(SkBitmap* bm, const SkIRect& dst);
147
joshualitt98d2e2f2015-10-05 07:23:30 -0700148 void make_big_path(SkPath& path);
robertphillips9c4909b2015-10-19 06:39:17 -0700149
robertphillips423f6462015-10-19 12:15:55 -0700150 // A helper object to test the topological sorting code (TopoSortBench.cpp & TopoSortTest.cpp)
Robert Phillips4150eea2018-02-07 17:08:21 -0500151 class TopoTestNode : public SkRefCnt {
robertphillips423f6462015-10-19 12:15:55 -0700152 public:
153 TopoTestNode(int id) : fID(id), fOutputPos(-1), fTempMark(false) { }
154
155 void dependsOn(TopoTestNode* src) {
156 *fDependencies.append() = src;
157 }
158
159 int id() const { return fID; }
160 void reset() { fOutputPos = -1; }
161
162 int outputPos() const { return fOutputPos; }
163
164 // check that the topological sort is valid for this node
165 bool check() {
166 if (-1 == fOutputPos) {
167 return false;
168 }
169
170 for (int i = 0; i < fDependencies.count(); ++i) {
171 if (-1 == fDependencies[i]->outputPos()) {
172 return false;
173 }
174 // This node should've been output after all the nodes on which it depends
175 if (fOutputPos < fDependencies[i]->outputPos()) {
176 return false;
177 }
178 }
179
180 return true;
181 }
182
183 // The following 7 methods are needed by the topological sort
184 static void SetTempMark(TopoTestNode* node) { node->fTempMark = true; }
185 static void ResetTempMark(TopoTestNode* node) { node->fTempMark = false; }
186 static bool IsTempMarked(TopoTestNode* node) { return node->fTempMark; }
halcanary9d524f22016-03-29 09:03:52 -0700187 static void Output(TopoTestNode* node, int outputPos) {
robertphillips423f6462015-10-19 12:15:55 -0700188 SkASSERT(-1 != outputPos);
halcanary9d524f22016-03-29 09:03:52 -0700189 node->fOutputPos = outputPos;
robertphillips423f6462015-10-19 12:15:55 -0700190 }
191 static bool WasOutput(TopoTestNode* node) { return (-1 != node->fOutputPos); }
192 static int NumDependencies(TopoTestNode* node) { return node->fDependencies.count(); }
halcanary9d524f22016-03-29 09:03:52 -0700193 static TopoTestNode* Dependency(TopoTestNode* node, int index) {
robertphillips423f6462015-10-19 12:15:55 -0700194 return node->fDependencies[index];
195 }
196
197 // Helper functions for TopoSortBench & TopoSortTest
Robert Phillips4150eea2018-02-07 17:08:21 -0500198 static void AllocNodes(SkTArray<sk_sp<sk_tool_utils::TopoTestNode>>* graph, int num) {
199 graph->reserve(num);
robertphillips423f6462015-10-19 12:15:55 -0700200
201 for (int i = 0; i < num; ++i) {
Robert Phillips4150eea2018-02-07 17:08:21 -0500202 graph->push_back(sk_sp<TopoTestNode>(new TopoTestNode(i)));
robertphillips423f6462015-10-19 12:15:55 -0700203 }
204 }
205
Robert Phillips4150eea2018-02-07 17:08:21 -0500206#ifdef SK_DEBUG
207 static void Print(const SkTArray<TopoTestNode*>& graph) {
robertphillips423f6462015-10-19 12:15:55 -0700208 for (int i = 0; i < graph.count(); ++i) {
209 SkDebugf("%d, ", graph[i]->id());
210 }
211 SkDebugf("\n");
212 }
Robert Phillips4150eea2018-02-07 17:08:21 -0500213#endif
robertphillips423f6462015-10-19 12:15:55 -0700214
215 // randomize the array
Robert Phillips4150eea2018-02-07 17:08:21 -0500216 static void Shuffle(SkTArray<sk_sp<TopoTestNode>>* graph, SkRandom* rand) {
robertphillips423f6462015-10-19 12:15:55 -0700217 for (int i = graph->count()-1; i > 0; --i) {
218 int swap = rand->nextU() % (i+1);
219
Robert Phillips4150eea2018-02-07 17:08:21 -0500220 (*graph)[i].swap((*graph)[swap]);
robertphillips423f6462015-10-19 12:15:55 -0700221 }
222 }
223
224 private:
225 int fID;
226 int fOutputPos;
227 bool fTempMark;
228
229 SkTDArray<TopoTestNode*> fDependencies;
230 };
231
Hal Canarydb683012016-11-23 08:55:18 -0700232 template <typename T>
233 inline bool EncodeImageToFile(const char* path, const T& src, SkEncodedImageFormat f, int q) {
234 SkFILEWStream file(path);
235 return file.isValid() && SkEncodeImage(&file, src, f, q);
236 }
237
Matt Sarett68b8e3d2017-04-28 11:15:22 -0400238 bool copy_to(SkBitmap* dst, SkColorType dstCT, const SkBitmap& src);
Matt Sarett4897fb82017-01-18 11:49:33 -0500239 void copy_to_g8(SkBitmap* dst, const SkBitmap& src);
tfarina20108912014-06-21 10:54:17 -0700240} // namespace sk_tool_utils
241
242#endif // sk_tool_utils_DEFINED