blob: 27fcc00f17351b6cb7f89f916375e6acb0a9bcb6 [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"
Ben Wagner97182cc2018-02-15 10:20:04 -050024#include "SkTypes.h"
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000025
Cary Clark992c7b02014-07-31 08:58:44 -040026class SkBitmap;
27class SkCanvas;
Ben Wagner97182cc2018-02-15 10:20:04 -050028class SkFontStyle;
Mike Reed24846602017-12-04 16:06:03 -050029class SkImage;
Cary Clark992c7b02014-07-31 08:58:44 -040030class SkPaint;
joshualitt98d2e2f2015-10-05 07:23:30 -070031class SkPath;
Ben Wagner97182cc2018-02-15 10:20:04 -050032class SkPixmap;
robertphillips276d3282016-08-04 09:03:19 -070033class SkRRect;
halcanaryb0cce2c2015-01-26 12:49:00 -080034class SkShader;
Mike Reed46596ae2018-01-02 15:40:29 -050035class SkSurface;
36class SkSurfaceProps;
joshualitt9e36c1a2015-04-14 12:17:27 -070037class SkTextBlobBuilder;
Ben Wagner97182cc2018-02-15 10:20:04 -050038class SkTypeface;
skia.committer@gmail.comdb0c8752014-03-18 03:02:11 +000039
Cary Clark992c7b02014-07-31 08:58:44 -040040namespace sk_tool_utils {
caryclark5fb6bd42014-06-23 11:25:00 -070041
Mike Reedd4746982018-02-07 16:05:29 -050042 const char* alphatype_name(SkAlphaType);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000043 const char* colortype_name(SkColorType);
caryclark37213552015-07-24 11:08:01 -070044
45 /**
46 * Map opaque colors from 8888 to 565.
47 */
caryclark65cdba62015-06-15 06:51:08 -070048 SkColor color_to_565(SkColor color);
caryclark37213552015-07-24 11:08:01 -070049
50 /**
51 * Return a color emoji typeface if available.
52 */
bungeman13b9c952016-05-12 10:09:30 -070053 sk_sp<SkTypeface> emoji_typeface();
caryclark37213552015-07-24 11:08:01 -070054
55 /**
56 * If the platform supports color emoji, return sample text the emoji can render.
57 */
caryclarkc3dcb672015-07-21 12:27:36 -070058 const char* emoji_sample_text();
caryclark37213552015-07-24 11:08:01 -070059
60 /**
Mike Kleinb251b722017-11-13 11:03:16 -050061 * Returns a string describing the platform font manager, if we're using one, otherwise "".
caryclark37213552015-07-24 11:08:01 -070062 */
Mike Kleinb251b722017-11-13 11:03:16 -050063 const char* platform_font_manager();
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000064
65 /**
caryclark1818acb2015-07-24 12:09:25 -070066 * Sets the paint to use a platform-independent text renderer
caryclark5fb6bd42014-06-23 11:25:00 -070067 */
halcanary96fcdcc2015-08-27 07:41:13 -070068 void set_portable_typeface(SkPaint* paint, const char* name = nullptr,
mbocee6a9912016-05-31 11:42:36 -070069 SkFontStyle style = SkFontStyle());
caryclark37213552015-07-24 11:08:01 -070070
71 /**
caryclark37213552015-07-24 11:08:01 -070072 * Returns a platform-independent text renderer.
73 */
mbocee6a9912016-05-31 11:42:36 -070074 sk_sp<SkTypeface> create_portable_typeface(const char* name, SkFontStyle style);
caryclark37213552015-07-24 11:08:01 -070075
caryclark5fb6bd42014-06-23 11:25:00 -070076 /**
Mike Reed4c790bd2018-02-08 14:10:40 -050077 * Call writePixels() by using the pixels from bitmap, but with an info that claims
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000078 * the pixels are colorType + alphaType
79 */
80 void write_pixels(SkCanvas*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
Mike Reed4c790bd2018-02-08 14:10:40 -050081 void write_pixels(SkSurface*, const SkBitmap&, int x, int y, SkColorType, SkAlphaType);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000082
Mike Reed5a625e02017-08-08 15:48:54 -040083 /**
84 * Returns true iff all of the pixels between the two images differ by <= the maxDiff value
85 * per component.
86 *
87 * If the configs differ, return false.
88 *
89 * If the colorType is half-float, then maxDiff is interpreted as 0..255 --> 0..1
90 */
Mike Reed24846602017-12-04 16:06:03 -050091 bool equal_pixels(const SkPixmap&, const SkPixmap&, unsigned maxDiff = 0,
92 bool respectColorSpaces = false);
93 bool equal_pixels(const SkBitmap&, const SkBitmap&, unsigned maxDiff = 0,
94 bool respectColorSpaces = false);
Mike Reed60691a52017-12-05 15:11:24 -050095 bool equal_pixels(const SkImage* a, const SkImage* b, unsigned maxDiff = 0,
Mike Reed24846602017-12-04 16:06:03 -050096 bool respectColorSpaces = false);
Mike Reed5a625e02017-08-08 15:48:54 -040097
halcanaryb0cce2c2015-01-26 12:49:00 -080098 /** Returns a newly created CheckerboardShader. */
reed8a21c9f2016-03-08 18:50:00 -080099 sk_sp<SkShader> create_checkerboard_shader(SkColor c1, SkColor c2, int size);
halcanaryb0cce2c2015-01-26 12:49:00 -0800100
101 /** Draw a checkerboard pattern in the current canvas, restricted to
halcanaryf77365f2015-01-27 08:38:35 -0800102 the current clip, using SkXfermode::kSrc_Mode. */
halcanaryb0cce2c2015-01-26 12:49:00 -0800103 void draw_checkerboard(SkCanvas* canvas,
104 SkColor color1,
105 SkColor color2,
robertphillips943a4622015-09-03 13:32:33 -0700106 int checkSize);
107
108 /** Make it easier to create a bitmap-based checkerboard */
109 SkBitmap create_checkerboard_bitmap(int w, int h,
110 SkColor c1, SkColor c2,
111 int checkSize);
halcanaryb0cce2c2015-01-26 12:49:00 -0800112
113 /** A default checkerboard. */
114 inline void draw_checkerboard(SkCanvas* canvas) {
115 sk_tool_utils::draw_checkerboard(canvas, 0xFF999999, 0xFF666666, 8);
116 }
117
robertphillips943a4622015-09-03 13:32:33 -0700118 SkBitmap create_string_bitmap(int w, int h, SkColor c, int x, int y,
119 int textSize, const char* str);
120
Mike Reed46596ae2018-01-02 15:40:29 -0500121 // If the canvas does't make a surface (e.g. recording), make a raster surface
122 sk_sp<SkSurface> makeSurface(SkCanvas*, const SkImageInfo&, const SkSurfaceProps* = nullptr);
123
joshualitt9e36c1a2015-04-14 12:17:27 -0700124 // A helper for inserting a drawtext call into a SkTextBlobBuilder
Robert Phillips4c72b262017-08-15 13:28:42 -0400125 void add_to_text_blob_w_len(SkTextBlobBuilder* builder, const char* text, size_t len,
126 const SkPaint& origPaint, SkScalar x, SkScalar y);
127
128 void add_to_text_blob(SkTextBlobBuilder* builder, const char* text,
129 const SkPaint& origPaint, SkScalar x, SkScalar y);
joshualitt9e36c1a2015-04-14 12:17:27 -0700130
Chris Dalton7c02cc72017-11-06 14:10:54 -0700131 // Constructs a star by walking a 'numPts'-sided regular polygon with even/odd fill:
132 //
133 // moveTo(pts[0]);
134 // lineTo(pts[step % numPts]);
135 // ...
136 // lineTo(pts[(step * (N - 1)) % numPts]);
137 //
138 // numPts=5, step=2 will produce a classic five-point star.
139 //
140 // numPts and step must be co-prime.
141 SkPath make_star(const SkRect& bounds, int numPts = 5, int step = 2);
142
Robert Phillipsa8cdbd72018-07-17 12:30:40 -0400143 void create_hemi_normal_map(SkBitmap* bm, const SkIRect& dst);
144
145 void create_frustum_normal_map(SkBitmap* bm, const SkIRect& dst);
146
147 void create_tetra_normal_map(SkBitmap* bm, const SkIRect& dst);
148
joshualitt98d2e2f2015-10-05 07:23:30 -0700149 void make_big_path(SkPath& path);
robertphillips9c4909b2015-10-19 06:39:17 -0700150
151 // Return a blurred version of 'src'. This doesn't use a separable filter
152 // so it is slow!
153 SkBitmap slow_blur(const SkBitmap& src, float sigma);
154
robertphillips276d3282016-08-04 09:03:19 -0700155 SkRect compute_central_occluder(const SkRRect& rr);
robertphillips401c1962016-08-04 12:35:46 -0700156 SkRect compute_widest_occluder(const SkRRect& rr);
157 SkRect compute_tallest_occluder(const SkRRect& rr);
robertphillips276d3282016-08-04 09:03:19 -0700158
robertphillips423f6462015-10-19 12:15:55 -0700159 // A helper object to test the topological sorting code (TopoSortBench.cpp & TopoSortTest.cpp)
Robert Phillips4150eea2018-02-07 17:08:21 -0500160 class TopoTestNode : public SkRefCnt {
robertphillips423f6462015-10-19 12:15:55 -0700161 public:
162 TopoTestNode(int id) : fID(id), fOutputPos(-1), fTempMark(false) { }
163
164 void dependsOn(TopoTestNode* src) {
165 *fDependencies.append() = src;
166 }
167
168 int id() const { return fID; }
169 void reset() { fOutputPos = -1; }
170
171 int outputPos() const { return fOutputPos; }
172
173 // check that the topological sort is valid for this node
174 bool check() {
175 if (-1 == fOutputPos) {
176 return false;
177 }
178
179 for (int i = 0; i < fDependencies.count(); ++i) {
180 if (-1 == fDependencies[i]->outputPos()) {
181 return false;
182 }
183 // This node should've been output after all the nodes on which it depends
184 if (fOutputPos < fDependencies[i]->outputPos()) {
185 return false;
186 }
187 }
188
189 return true;
190 }
191
192 // The following 7 methods are needed by the topological sort
193 static void SetTempMark(TopoTestNode* node) { node->fTempMark = true; }
194 static void ResetTempMark(TopoTestNode* node) { node->fTempMark = false; }
195 static bool IsTempMarked(TopoTestNode* node) { return node->fTempMark; }
halcanary9d524f22016-03-29 09:03:52 -0700196 static void Output(TopoTestNode* node, int outputPos) {
robertphillips423f6462015-10-19 12:15:55 -0700197 SkASSERT(-1 != outputPos);
halcanary9d524f22016-03-29 09:03:52 -0700198 node->fOutputPos = outputPos;
robertphillips423f6462015-10-19 12:15:55 -0700199 }
200 static bool WasOutput(TopoTestNode* node) { return (-1 != node->fOutputPos); }
201 static int NumDependencies(TopoTestNode* node) { return node->fDependencies.count(); }
halcanary9d524f22016-03-29 09:03:52 -0700202 static TopoTestNode* Dependency(TopoTestNode* node, int index) {
robertphillips423f6462015-10-19 12:15:55 -0700203 return node->fDependencies[index];
204 }
205
206 // Helper functions for TopoSortBench & TopoSortTest
Robert Phillips4150eea2018-02-07 17:08:21 -0500207 static void AllocNodes(SkTArray<sk_sp<sk_tool_utils::TopoTestNode>>* graph, int num) {
208 graph->reserve(num);
robertphillips423f6462015-10-19 12:15:55 -0700209
210 for (int i = 0; i < num; ++i) {
Robert Phillips4150eea2018-02-07 17:08:21 -0500211 graph->push_back(sk_sp<TopoTestNode>(new TopoTestNode(i)));
robertphillips423f6462015-10-19 12:15:55 -0700212 }
213 }
214
Robert Phillips4150eea2018-02-07 17:08:21 -0500215#ifdef SK_DEBUG
216 static void Print(const SkTArray<TopoTestNode*>& graph) {
robertphillips423f6462015-10-19 12:15:55 -0700217 for (int i = 0; i < graph.count(); ++i) {
218 SkDebugf("%d, ", graph[i]->id());
219 }
220 SkDebugf("\n");
221 }
Robert Phillips4150eea2018-02-07 17:08:21 -0500222#endif
robertphillips423f6462015-10-19 12:15:55 -0700223
224 // randomize the array
Robert Phillips4150eea2018-02-07 17:08:21 -0500225 static void Shuffle(SkTArray<sk_sp<TopoTestNode>>* graph, SkRandom* rand) {
robertphillips423f6462015-10-19 12:15:55 -0700226 for (int i = graph->count()-1; i > 0; --i) {
227 int swap = rand->nextU() % (i+1);
228
Robert Phillips4150eea2018-02-07 17:08:21 -0500229 (*graph)[i].swap((*graph)[swap]);
robertphillips423f6462015-10-19 12:15:55 -0700230 }
231 }
232
233 private:
234 int fID;
235 int fOutputPos;
236 bool fTempMark;
237
238 SkTDArray<TopoTestNode*> fDependencies;
239 };
240
Hal Canarydb683012016-11-23 08:55:18 -0700241 template <typename T>
242 inline bool EncodeImageToFile(const char* path, const T& src, SkEncodedImageFormat f, int q) {
243 SkFILEWStream file(path);
244 return file.isValid() && SkEncodeImage(&file, src, f, q);
245 }
246
247 template <typename T>
248 inline sk_sp<SkData> EncodeImageToData(const T& src, SkEncodedImageFormat f, int q) {
249 SkDynamicMemoryWStream buf;
250 return SkEncodeImage(&buf, src , f, q) ? buf.detachAsData() : nullptr;
251 }
252
Matt Sarett68b8e3d2017-04-28 11:15:22 -0400253 bool copy_to(SkBitmap* dst, SkColorType dstCT, const SkBitmap& src);
Matt Sarett4897fb82017-01-18 11:49:33 -0500254 void copy_to_g8(SkBitmap* dst, const SkBitmap& src);
tfarina20108912014-06-21 10:54:17 -0700255} // namespace sk_tool_utils
256
257#endif // sk_tool_utils_DEFINED