blob: 353c1478d8b5a8c3019e0ad8fc9e1669a1b21be8 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkPaint_DEFINED
9#define SkPaint_DEFINED
10
reed374772b2016-10-05 17:33:02 -070011#include "SkBlendMode.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000012#include "SkColor.h"
reedf803da12015-01-23 05:58:07 -080013#include "SkFilterQuality.h"
reed@google.comed43dff2013-06-04 16:56:27 +000014#include "SkMatrix.h"
reed@android.coma0f5d152009-06-22 17:38:10 +000015#include "SkXfermode.h"
16
joshualitt2b6acb42015-04-01 11:30:27 -070017class SkAutoDescriptor;
reed@android.com8a1c16f2008-12-17 15:59:43 +000018class SkAutoGlyphCache;
19class SkColorFilter;
joshualittfd450792015-03-13 08:38:43 -070020class SkData;
reed@android.com8a1c16f2008-12-17 15:59:43 +000021class SkDescriptor;
senorblanco0abdf762015-08-20 11:10:41 -070022class SkDrawLooper;
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000023class SkReadBuffer;
24class SkWriteBuffer;
herbb69d0e02015-02-25 06:47:06 -080025class SkGlyph;
reed@android.com8a1c16f2008-12-17 15:59:43 +000026struct SkRect;
27class SkGlyphCache;
reed@google.com15356a62011-11-03 19:29:08 +000028class SkImageFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +000029class SkMaskFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +000030class SkPath;
31class SkPathEffect;
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000032struct SkPoint;
reed@android.com8a1c16f2008-12-17 15:59:43 +000033class SkRasterizer;
reeda9322c22016-04-12 06:47:05 -070034struct SkScalerContextEffects;
reed@android.com8a1c16f2008-12-17 15:59:43 +000035class SkShader;
robertphillipsfcf78292015-06-19 11:49:52 -070036class SkSurfaceProps;
fmalitaeae6a912016-07-28 09:47:24 -070037class SkTextBlob;
reed@android.com8a1c16f2008-12-17 15:59:43 +000038class SkTypeface;
reed@android.com8a1c16f2008-12-17 15:59:43 +000039
humper@google.comb0889472013-07-09 21:37:14 +000040#define kBicubicFilterBitmap_Flag kHighQualityFilterBitmap_Flag
41
reed@android.com8a1c16f2008-12-17 15:59:43 +000042/** \class SkPaint
43
44 The SkPaint class holds the style and color information about how to draw
45 geometries, text and bitmaps.
46*/
ctguil@chromium.org7ffb1b22011-03-15 21:27:08 +000047class SK_API SkPaint {
reed@android.com8a1c16f2008-12-17 15:59:43 +000048public:
49 SkPaint();
50 SkPaint(const SkPaint& paint);
bungemanccce0e02016-02-07 14:37:23 -080051 SkPaint(SkPaint&& paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +000052 ~SkPaint();
53
54 SkPaint& operator=(const SkPaint&);
bungemanccce0e02016-02-07 14:37:23 -080055 SkPaint& operator=(SkPaint&&);
reed@android.com8a1c16f2008-12-17 15:59:43 +000056
mtkleinbc97ef42014-08-25 10:10:47 -070057 /** operator== may give false negatives: two paints that draw equivalently
58 may return false. It will never give false positives: two paints that
59 are not equivalent always return false.
60 */
robertphillips@google.comb2657412013-08-07 22:36:29 +000061 SK_API friend bool operator==(const SkPaint& a, const SkPaint& b);
62 friend bool operator!=(const SkPaint& a, const SkPaint& b) {
63 return !(a == b);
64 }
65
mtkleinfb1fe4f2014-10-07 09:26:10 -070066 /** getHash() is a shallow hash, with the same limitations as operator==.
67 * If operator== returns true for two paints, getHash() returns the same value for each.
68 */
69 uint32_t getHash() const;
70
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000071 void flatten(SkWriteBuffer&) const;
72 void unflatten(SkReadBuffer&);
reed@android.com8a1c16f2008-12-17 15:59:43 +000073
74 /** Restores the paint to its initial settings.
75 */
76 void reset();
77
agl@chromium.org309485b2009-07-21 17:41:32 +000078 /** Specifies the level of hinting to be performed. These names are taken
79 from the Gnome/Cairo names for the same. They are translated into
80 Freetype concepts the same as in cairo-ft-font.c:
81 kNo_Hinting -> FT_LOAD_NO_HINTING
82 kSlight_Hinting -> FT_LOAD_TARGET_LIGHT
83 kNormal_Hinting -> <default, no option>
84 kFull_Hinting -> <same as kNormalHinting, unless we are rendering
85 subpixel glyphs, in which case TARGET_LCD or
86 TARGET_LCD_V is used>
87 */
88 enum Hinting {
89 kNo_Hinting = 0,
90 kSlight_Hinting = 1,
91 kNormal_Hinting = 2, //!< this is the default
tomhudson@google.com1f902872012-06-01 13:15:47 +000092 kFull_Hinting = 3
agl@chromium.org309485b2009-07-21 17:41:32 +000093 };
94
reed@google.com9d07fec2011-03-16 20:02:59 +000095 Hinting getHinting() const {
reedf59eab22014-07-14 14:39:15 -070096 return static_cast<Hinting>(fBitfields.fHinting);
agl@chromium.org309485b2009-07-21 17:41:32 +000097 }
98
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +000099 void setHinting(Hinting hintingLevel);
agl@chromium.org309485b2009-07-21 17:41:32 +0000100
reed@android.com8a1c16f2008-12-17 15:59:43 +0000101 /** Specifies the bit values that are stored in the paint's flags.
102 */
103 enum Flags {
104 kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105 kDither_Flag = 0x04, //!< mask to enable dithering
106 kUnderlineText_Flag = 0x08, //!< mask to enable underline text
107 kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text
108 kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text
109 kLinearText_Flag = 0x40, //!< mask to enable linear-text
agl@chromium.org309485b2009-07-21 17:41:32 +0000110 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning
reed@android.com8a1c16f2008-12-17 15:59:43 +0000111 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text
agl@chromium.org309485b2009-07-21 17:41:32 +0000112 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000113 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000114 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter
reed@google.com830a23e2011-11-10 15:20:49 +0000115 kVerticalText_Flag = 0x1000,
reed@google.com8351aab2012-01-18 17:06:35 +0000116 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it
agl@chromium.org309485b2009-07-21 17:41:32 +0000117 // when adding extra flags, note that the fFlags member is specified
118 // with a bit-width and you'll have to expand it.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000119
humper@google.com387db0a2013-07-09 14:13:04 +0000120 kAllFlags = 0xFFFF
reed@android.com8a1c16f2008-12-17 15:59:43 +0000121 };
122
123 /** Return the paint's flags. Use the Flag enum to test flag values.
124 @return the paint's flags (see enums ending in _Flag for bit masks)
125 */
reedf59eab22014-07-14 14:39:15 -0700126 uint32_t getFlags() const { return fBitfields.fFlags; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000127
128 /** Set the paint's flags. Use the Flag enum to specific flag values.
129 @param flags The new flag bits for the paint (see Flags enum)
130 */
131 void setFlags(uint32_t flags);
132
133 /** Helper for getFlags(), returning true if kAntiAlias_Flag bit is set
134 @return true if the antialias bit is set in the paint's flags.
135 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000136 bool isAntiAlias() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000137 return SkToBool(this->getFlags() & kAntiAlias_Flag);
138 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000139
reed@android.com8a1c16f2008-12-17 15:59:43 +0000140 /** Helper for setFlags(), setting or clearing the kAntiAlias_Flag bit
141 @param aa true to enable antialiasing, false to disable it
142 */
143 void setAntiAlias(bool aa);
reed@google.com9d07fec2011-03-16 20:02:59 +0000144
reed@android.com8a1c16f2008-12-17 15:59:43 +0000145 /** Helper for getFlags(), returning true if kDither_Flag bit is set
146 @return true if the dithering bit is set in the paint's flags.
147 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000148 bool isDither() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149 return SkToBool(this->getFlags() & kDither_Flag);
150 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000151
reed@android.com8a1c16f2008-12-17 15:59:43 +0000152 /** Helper for setFlags(), setting or clearing the kDither_Flag bit
153 @param dither true to enable dithering, false to disable it
154 */
155 void setDither(bool dither);
reed@google.com9d07fec2011-03-16 20:02:59 +0000156
reed@android.com8a1c16f2008-12-17 15:59:43 +0000157 /** Helper for getFlags(), returning true if kLinearText_Flag bit is set
158 @return true if the lineartext bit is set in the paint's flags
159 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000160 bool isLinearText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000161 return SkToBool(this->getFlags() & kLinearText_Flag);
162 }
163
164 /** Helper for setFlags(), setting or clearing the kLinearText_Flag bit
165 @param linearText true to set the linearText bit in the paint's flags,
166 false to clear it.
167 */
168 void setLinearText(bool linearText);
169
170 /** Helper for getFlags(), returning true if kSubpixelText_Flag bit is set
171 @return true if the lineartext bit is set in the paint's flags
172 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000173 bool isSubpixelText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000174 return SkToBool(this->getFlags() & kSubpixelText_Flag);
175 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000176
reed@google.com84b437e2011-08-01 12:45:35 +0000177 /**
178 * Helper for setFlags(), setting or clearing the kSubpixelText_Flag.
179 * @param subpixelText true to set the subpixelText bit in the paint's
180 * flags, false to clear it.
181 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000182 void setSubpixelText(bool subpixelText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000183
reed@google.com9d07fec2011-03-16 20:02:59 +0000184 bool isLCDRenderText() const {
agl@chromium.org309485b2009-07-21 17:41:32 +0000185 return SkToBool(this->getFlags() & kLCDRenderText_Flag);
186 }
187
reed@google.com84b437e2011-08-01 12:45:35 +0000188 /**
189 * Helper for setFlags(), setting or clearing the kLCDRenderText_Flag.
190 * Note: antialiasing must also be on for lcd rendering
191 * @param lcdText true to set the LCDRenderText bit in the paint's flags,
192 * false to clear it.
193 */
194 void setLCDRenderText(bool lcdText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000195
reed@google.com9d07fec2011-03-16 20:02:59 +0000196 bool isEmbeddedBitmapText() const {
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000197 return SkToBool(this->getFlags() & kEmbeddedBitmapText_Flag);
198 }
199
200 /** Helper for setFlags(), setting or clearing the kEmbeddedBitmapText_Flag bit
201 @param useEmbeddedBitmapText true to set the kEmbeddedBitmapText bit in the paint's flags,
202 false to clear it.
203 */
204 void setEmbeddedBitmapText(bool useEmbeddedBitmapText);
205
reed@google.com9d07fec2011-03-16 20:02:59 +0000206 bool isAutohinted() const {
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000207 return SkToBool(this->getFlags() & kAutoHinting_Flag);
208 }
209
210 /** Helper for setFlags(), setting or clearing the kAutoHinting_Flag bit
211 @param useAutohinter true to set the kEmbeddedBitmapText bit in the
212 paint's flags,
213 false to clear it.
214 */
215 void setAutohinted(bool useAutohinter);
216
reed@google.com830a23e2011-11-10 15:20:49 +0000217 bool isVerticalText() const {
218 return SkToBool(this->getFlags() & kVerticalText_Flag);
219 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000220
reed@google.com830a23e2011-11-10 15:20:49 +0000221 /**
222 * Helper for setting or clearing the kVerticalText_Flag bit in
223 * setFlags(...).
224 *
225 * If this bit is set, then advances are treated as Y values rather than
226 * X values, and drawText will places its glyphs vertically rather than
227 * horizontally.
228 */
229 void setVerticalText(bool);
230
reed@android.com8a1c16f2008-12-17 15:59:43 +0000231 /** Helper for getFlags(), returning true if kUnderlineText_Flag bit is set
232 @return true if the underlineText bit is set in the paint's flags.
233 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000234 bool isUnderlineText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000235 return SkToBool(this->getFlags() & kUnderlineText_Flag);
236 }
237
238 /** Helper for setFlags(), setting or clearing the kUnderlineText_Flag bit
239 @param underlineText true to set the underlineText bit in the paint's
240 flags, false to clear it.
241 */
242 void setUnderlineText(bool underlineText);
243
244 /** Helper for getFlags(), returns true if kStrikeThruText_Flag bit is set
245 @return true if the strikeThruText bit is set in the paint's flags.
246 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000247 bool isStrikeThruText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000248 return SkToBool(this->getFlags() & kStrikeThruText_Flag);
249 }
250
251 /** Helper for setFlags(), setting or clearing the kStrikeThruText_Flag bit
252 @param strikeThruText true to set the strikeThruText bit in the
253 paint's flags, false to clear it.
254 */
255 void setStrikeThruText(bool strikeThruText);
256
257 /** Helper for getFlags(), returns true if kFakeBoldText_Flag bit is set
258 @return true if the kFakeBoldText_Flag bit is set in the paint's flags.
259 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000260 bool isFakeBoldText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000261 return SkToBool(this->getFlags() & kFakeBoldText_Flag);
262 }
263
264 /** Helper for setFlags(), setting or clearing the kFakeBoldText_Flag bit
265 @param fakeBoldText true to set the kFakeBoldText_Flag bit in the paint's
266 flags, false to clear it.
267 */
268 void setFakeBoldText(bool fakeBoldText);
269
270 /** Helper for getFlags(), returns true if kDevKernText_Flag bit is set
271 @return true if the kernText bit is set in the paint's flags.
272 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000273 bool isDevKernText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000274 return SkToBool(this->getFlags() & kDevKernText_Flag);
275 }
276
277 /** Helper for setFlags(), setting or clearing the kKernText_Flag bit
278 @param kernText true to set the kKernText_Flag bit in the paint's
279 flags, false to clear it.
280 */
281 void setDevKernText(bool devKernText);
282
reedf803da12015-01-23 05:58:07 -0800283 /**
284 * Return the filter level. This affects the quality (and performance) of
285 * drawing scaled images.
286 */
287 SkFilterQuality getFilterQuality() const {
288 return (SkFilterQuality)fBitfields.fFilterQuality;
289 }
mtkleinfe81e2d2015-09-09 07:35:42 -0700290
reedf803da12015-01-23 05:58:07 -0800291 /**
292 * Set the filter quality. This affects the quality (and performance) of
293 * drawing scaled images.
294 */
295 void setFilterQuality(SkFilterQuality quality);
reed@google.comc9683152013-07-18 13:47:01 +0000296
reed@android.com8a1c16f2008-12-17 15:59:43 +0000297 /** Styles apply to rect, oval, path, and text.
298 Bitmaps are always drawn in "fill", and lines are always drawn in
299 "stroke".
reed@google.com9d07fec2011-03-16 20:02:59 +0000300
reed@android.comed881c22009-09-15 14:10:42 +0000301 Note: strokeandfill implicitly draws the result with
302 SkPath::kWinding_FillType, so if the original path is even-odd, the
303 results may not appear the same as if it was drawn twice, filled and
304 then stroked.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000305 */
306 enum Style {
reed@android.comed881c22009-09-15 14:10:42 +0000307 kFill_Style, //!< fill the geometry
308 kStroke_Style, //!< stroke the geometry
309 kStrokeAndFill_Style, //!< fill and stroke the geometry
mike@reedtribe.orgaac2fb82013-02-04 05:17:10 +0000310 };
311 enum {
312 kStyleCount = kStrokeAndFill_Style + 1
reed@android.com8a1c16f2008-12-17 15:59:43 +0000313 };
314
315 /** Return the paint's style, used for controlling how primitives'
316 geometries are interpreted (except for drawBitmap, which always assumes
317 kFill_Style).
318 @return the paint's Style
319 */
reedf59eab22014-07-14 14:39:15 -0700320 Style getStyle() const { return (Style)fBitfields.fStyle; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000321
322 /** Set the paint's style, used for controlling how primitives'
323 geometries are interpreted (except for drawBitmap, which always assumes
324 Fill).
325 @param style The new style to set in the paint
326 */
327 void setStyle(Style style);
328
329 /** Return the paint's color. Note that the color is a 32bit value
330 containing alpha as well as r,g,b. This 32bit value is not
331 premultiplied, meaning that its alpha can be any value, regardless of
332 the values of r,g,b.
333 @return the paint's color (and alpha).
334 */
335 SkColor getColor() const { return fColor; }
336
337 /** Set the paint's color. Note that the color is a 32bit value containing
338 alpha as well as r,g,b. This 32bit value is not premultiplied, meaning
339 that its alpha can be any value, regardless of the values of r,g,b.
340 @param color The new color (including alpha) to set in the paint.
341 */
342 void setColor(SkColor color);
343
344 /** Helper to getColor() that just returns the color's alpha value.
345 @return the alpha component of the paint's color.
346 */
347 uint8_t getAlpha() const { return SkToU8(SkColorGetA(fColor)); }
reed@google.com9d07fec2011-03-16 20:02:59 +0000348
reed@android.com8a1c16f2008-12-17 15:59:43 +0000349 /** Helper to setColor(), that only assigns the color's alpha value,
350 leaving its r,g,b values unchanged.
351 @param a set the alpha component (0..255) of the paint's color.
352 */
353 void setAlpha(U8CPU a);
354
355 /** Helper to setColor(), that takes a,r,g,b and constructs the color value
356 using SkColorSetARGB()
357 @param a The new alpha component (0..255) of the paint's color.
358 @param r The new red component (0..255) of the paint's color.
359 @param g The new green component (0..255) of the paint's color.
360 @param b The new blue component (0..255) of the paint's color.
361 */
362 void setARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
363
reed@google.com9d07fec2011-03-16 20:02:59 +0000364 /** Return the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000365 <p />
366 A value of 0 strokes in hairline mode.
367 Hairlines always draw 1-pixel wide, regardless of the matrix.
368 @return the paint's stroke width, used whenever the paint's style is
369 Stroke or StrokeAndFill.
370 */
371 SkScalar getStrokeWidth() const { return fWidth; }
372
reed@google.com9d07fec2011-03-16 20:02:59 +0000373 /** Set the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000374 Pass 0 to stroke in hairline mode.
375 Hairlines always draw 1-pixel wide, regardless of the matrix.
376 @param width set the paint's stroke width, used whenever the paint's
377 style is Stroke or StrokeAndFill.
378 */
379 void setStrokeWidth(SkScalar width);
380
381 /** Return the paint's stroke miter value. This is used to control the
382 behavior of miter joins when the joins angle is sharp.
383 @return the paint's miter limit, used whenever the paint's style is
384 Stroke or StrokeAndFill.
385 */
386 SkScalar getStrokeMiter() const { return fMiterLimit; }
387
388 /** Set the paint's stroke miter value. This is used to control the
389 behavior of miter joins when the joins angle is sharp. This value must
390 be >= 0.
391 @param miter set the miter limit on the paint, used whenever the
392 paint's style is Stroke or StrokeAndFill.
393 */
394 void setStrokeMiter(SkScalar miter);
395
396 /** Cap enum specifies the settings for the paint's strokecap. This is the
397 treatment that is applied to the beginning and end of each non-closed
398 contour (e.g. lines).
caryclark5cb00a92015-08-26 09:04:55 -0700399
400 If the cap is round or square, the caps are drawn when the contour has
401 a zero length. Zero length contours can be created by following moveTo
402 with a lineTo at the same point, or a moveTo followed by a close.
403
404 A dash with an on interval of zero also creates a zero length contour.
405
406 The zero length contour draws the square cap without rotation, since
407 the no direction can be inferred.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000408 */
409 enum Cap {
410 kButt_Cap, //!< begin/end contours with no extension
411 kRound_Cap, //!< begin/end contours with a semi-circle extension
412 kSquare_Cap, //!< begin/end contours with a half square extension
413
bsalomona7d85ba2016-07-06 11:54:59 -0700414 kLast_Cap = kSquare_Cap,
reed@android.com8a1c16f2008-12-17 15:59:43 +0000415 kDefault_Cap = kButt_Cap
416 };
bsalomona7d85ba2016-07-06 11:54:59 -0700417 static constexpr int kCapCount = kLast_Cap + 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000418
419 /** Join enum specifies the settings for the paint's strokejoin. This is
420 the treatment that is applied to corners in paths and rectangles.
421 */
422 enum Join {
423 kMiter_Join, //!< connect path segments with a sharp join
424 kRound_Join, //!< connect path segments with a round join
425 kBevel_Join, //!< connect path segments with a flat bevel join
426
bsalomona7d85ba2016-07-06 11:54:59 -0700427 kLast_Join = kBevel_Join,
reed@android.com8a1c16f2008-12-17 15:59:43 +0000428 kDefault_Join = kMiter_Join
429 };
bsalomona7d85ba2016-07-06 11:54:59 -0700430 static constexpr int kJoinCount = kLast_Join + 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000431
432 /** Return the paint's stroke cap type, controlling how the start and end
433 of stroked lines and paths are treated.
434 @return the line cap style for the paint, used whenever the paint's
435 style is Stroke or StrokeAndFill.
436 */
reedf59eab22014-07-14 14:39:15 -0700437 Cap getStrokeCap() const { return (Cap)fBitfields.fCapType; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000438
439 /** Set the paint's stroke cap type.
440 @param cap set the paint's line cap style, used whenever the paint's
441 style is Stroke or StrokeAndFill.
442 */
443 void setStrokeCap(Cap cap);
444
445 /** Return the paint's stroke join type.
446 @return the paint's line join style, used whenever the paint's style is
447 Stroke or StrokeAndFill.
448 */
reedf59eab22014-07-14 14:39:15 -0700449 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000450
451 /** Set the paint's stroke join type.
452 @param join set the paint's line join style, used whenever the paint's
453 style is Stroke or StrokeAndFill.
454 */
455 void setStrokeJoin(Join join);
456
reed@google.com4bbdeac2013-01-24 21:03:11 +0000457 /**
458 * Applies any/all effects (patheffect, stroking) to src, returning the
459 * result in dst. The result is that drawing src with this paint will be
460 * the same as drawing dst with a default paint (at least from the
461 * geometric perspective).
462 *
463 * @param src input path
464 * @param dst output path (may be the same as src)
465 * @param cullRect If not null, the dst path may be culled to this rect.
reed05d90442015-02-12 13:35:52 -0800466 * @param resScale If > 1, increase precision, else if (0 < res < 1) reduce precision
467 * in favor of speed/size.
reed@google.com4bbdeac2013-01-24 21:03:11 +0000468 * @return true if the path should be filled, or false if it should be
469 * drawn with a hairline (width == 0)
470 */
reed05d90442015-02-12 13:35:52 -0800471 bool getFillPath(const SkPath& src, SkPath* dst, const SkRect* cullRect,
472 SkScalar resScale = 1) const;
473
474 bool getFillPath(const SkPath& src, SkPath* dst) const {
475 return this->getFillPath(src, dst, NULL, 1);
476 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000477
reed@android.com8a1c16f2008-12-17 15:59:43 +0000478 /** Get the paint's shader object.
479 <p />
480 The shader's reference count is not affected.
481 @return the paint's shader (or NULL)
482 */
reeda5ab9ec2016-03-06 18:10:48 -0800483 SkShader* getShader() const { return fShader.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000484
485 /** Set or clear the shader object.
reed@google.com880dc472012-05-11 14:47:03 +0000486 * Shaders specify the source color(s) for what is being drawn. If a paint
487 * has no shader, then the paint's color is used. If the paint has a
488 * shader, then the shader's color(s) are use instead, but they are
489 * modulated by the paint's alpha. This makes it easy to create a shader
490 * once (e.g. bitmap tiling or gradient) and then change its transparency
491 * w/o having to modify the original shader... only the paint's alpha needs
492 * to be modified.
commit-bot@chromium.orge5957f62014-03-18 16:28:12 +0000493 *
494 * There is an exception to this only-respect-paint's-alpha rule: If the shader only generates
495 * alpha (e.g. SkShader::CreateBitmapShader(bitmap, ...) where bitmap's colortype is kAlpha_8)
496 * then the shader will use the paint's entire color to "colorize" its output (modulating the
497 * bitmap's alpha with the paint's color+alpha).
498 *
reed@google.com880dc472012-05-11 14:47:03 +0000499 * Pass NULL to clear any previous shader.
500 * As a convenience, the parameter passed is also returned.
501 * If a previous shader exists, its reference count is decremented.
502 * If shader is not NULL, its reference count is incremented.
503 * @param shader May be NULL. The shader to be installed in the paint
reed@google.com880dc472012-05-11 14:47:03 +0000504 */
reeda5ab9ec2016-03-06 18:10:48 -0800505 void setShader(sk_sp<SkShader>);
reed@google.com9d07fec2011-03-16 20:02:59 +0000506
reed@android.com8a1c16f2008-12-17 15:59:43 +0000507 /** Get the paint's colorfilter. If there is a colorfilter, its reference
508 count is not changed.
509 @return the paint's colorfilter (or NULL)
510 */
reeda5ab9ec2016-03-06 18:10:48 -0800511 SkColorFilter* getColorFilter() const { return fColorFilter.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000512
Mike Reed958788a2016-10-20 16:40:26 -0400513 /** Set or clear the paint's colorfilter.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000514 <p />
515 If the paint already has a filter, its reference count is decremented.
516 If filter is not NULL, its reference count is incremented.
517 @param filter May be NULL. The filter to be installed in the paint
reed@android.com8a1c16f2008-12-17 15:59:43 +0000518 */
reeda5ab9ec2016-03-06 18:10:48 -0800519 void setColorFilter(sk_sp<SkColorFilter>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000520
reed374772b2016-10-05 17:33:02 -0700521 SkBlendMode getBlendMode() const { return (SkBlendMode)fBlendMode; }
522 bool isSrcOver() const { return (SkBlendMode)fBlendMode == SkBlendMode::kSrcOver; }
523 void setBlendMode(SkBlendMode mode) { fBlendMode = (unsigned)mode; }
reed@android.coma0f5d152009-06-22 17:38:10 +0000524
reed@android.com8a1c16f2008-12-17 15:59:43 +0000525 /** Get the paint's patheffect object.
526 <p />
527 The patheffect reference count is not affected.
528 @return the paint's patheffect (or NULL)
529 */
reeda5ab9ec2016-03-06 18:10:48 -0800530 SkPathEffect* getPathEffect() const { return fPathEffect.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000531
532 /** Set or clear the patheffect object.
533 <p />
534 Pass NULL to clear any previous patheffect.
535 As a convenience, the parameter passed is also returned.
536 If a previous patheffect exists, its reference count is decremented.
537 If patheffect is not NULL, its reference count is incremented.
538 @param effect May be NULL. The new patheffect to be installed in the
539 paint
540 @return effect
541 */
reeda5ab9ec2016-03-06 18:10:48 -0800542 void setPathEffect(sk_sp<SkPathEffect>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000543
544 /** Get the paint's maskfilter object.
545 <p />
546 The maskfilter reference count is not affected.
547 @return the paint's maskfilter (or NULL)
548 */
reeda5ab9ec2016-03-06 18:10:48 -0800549 SkMaskFilter* getMaskFilter() const { return fMaskFilter.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000550
551 /** Set or clear the maskfilter object.
552 <p />
553 Pass NULL to clear any previous maskfilter.
554 As a convenience, the parameter passed is also returned.
555 If a previous maskfilter exists, its reference count is decremented.
556 If maskfilter is not NULL, its reference count is incremented.
557 @param maskfilter May be NULL. The new maskfilter to be installed in
558 the paint
559 @return maskfilter
560 */
reeda5ab9ec2016-03-06 18:10:48 -0800561 void setMaskFilter(sk_sp<SkMaskFilter>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000562
563 // These attributes are for text/fonts
564
565 /** Get the paint's typeface object.
566 <p />
567 The typeface object identifies which font to use when drawing or
568 measuring text. The typeface reference count is not affected.
569 @return the paint's typeface (or NULL)
570 */
reeda5ab9ec2016-03-06 18:10:48 -0800571 SkTypeface* getTypeface() const { return fTypeface.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000572
573 /** Set or clear the typeface object.
574 <p />
575 Pass NULL to clear any previous typeface.
576 As a convenience, the parameter passed is also returned.
577 If a previous typeface exists, its reference count is decremented.
578 If typeface is not NULL, its reference count is incremented.
579 @param typeface May be NULL. The new typeface to be installed in the
580 paint
581 @return typeface
582 */
scroggo9a9a7b22016-05-12 06:22:30 -0700583 void setTypeface(sk_sp<SkTypeface>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000584
585 /** Get the paint's rasterizer (or NULL).
586 <p />
587 The raster controls how paths/text are turned into alpha masks.
588 @return the paint's rasterizer (or NULL)
589 */
reeda5ab9ec2016-03-06 18:10:48 -0800590 SkRasterizer* getRasterizer() const { return fRasterizer.get(); }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000591
592 /** Set or clear the rasterizer object.
593 <p />
594 Pass NULL to clear any previous rasterizer.
595 As a convenience, the parameter passed is also returned.
596 If a previous rasterizer exists in the paint, its reference count is
597 decremented. If rasterizer is not NULL, its reference count is
598 incremented.
599 @param rasterizer May be NULL. The new rasterizer to be installed in
600 the paint.
601 @return rasterizer
602 */
reeda5ab9ec2016-03-06 18:10:48 -0800603 void setRasterizer(sk_sp<SkRasterizer>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000604
reeda5ab9ec2016-03-06 18:10:48 -0800605 SkImageFilter* getImageFilter() const { return fImageFilter.get(); }
reed@google.com15356a62011-11-03 19:29:08 +0000606 SkImageFilter* setImageFilter(SkImageFilter*);
reeda5ab9ec2016-03-06 18:10:48 -0800607 void setImageFilter(sk_sp<SkImageFilter>);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000608
reed@google.comb0a34d82012-07-11 19:57:55 +0000609 /**
reed@google.com9d07fec2011-03-16 20:02:59 +0000610 * Return the paint's SkDrawLooper (if any). Does not affect the looper's
611 * reference count.
612 */
reed46f2d0a2016-09-11 05:40:31 -0700613 SkDrawLooper* getDrawLooper() const { return fDrawLooper.get(); }
614 SkDrawLooper* getLooper() const { return fDrawLooper.get(); }
reed@google.com9d07fec2011-03-16 20:02:59 +0000615 /**
616 * Set or clear the looper object.
617 * <p />
618 * Pass NULL to clear any previous looper.
reed@google.com9d07fec2011-03-16 20:02:59 +0000619 * If a previous looper exists in the paint, its reference count is
620 * decremented. If looper is not NULL, its reference count is
621 * incremented.
622 * @param looper May be NULL. The new looper to be installed in the paint.
reed@google.com9d07fec2011-03-16 20:02:59 +0000623 */
reed46f2d0a2016-09-11 05:40:31 -0700624 void setDrawLooper(sk_sp<SkDrawLooper>);
Mike Reed09d94352016-10-31 15:11:04 -0400625
reeda5ab9ec2016-03-06 18:10:48 -0800626 void setLooper(sk_sp<SkDrawLooper>);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000627
628 enum Align {
629 kLeft_Align,
630 kCenter_Align,
631 kRight_Align,
mike@reedtribe.orgddc813b2013-06-08 12:58:19 +0000632 };
633 enum {
634 kAlignCount = 3
reed@android.com8a1c16f2008-12-17 15:59:43 +0000635 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000636
reed@android.com8a1c16f2008-12-17 15:59:43 +0000637 /** Return the paint's Align value for drawing text.
638 @return the paint's Align value for drawing text.
639 */
reedf59eab22014-07-14 14:39:15 -0700640 Align getTextAlign() const { return (Align)fBitfields.fTextAlign; }
reed@google.com9d07fec2011-03-16 20:02:59 +0000641
reed@android.com8a1c16f2008-12-17 15:59:43 +0000642 /** Set the paint's text alignment.
643 @param align set the paint's Align value for drawing text.
644 */
645 void setTextAlign(Align align);
646
647 /** Return the paint's text size.
648 @return the paint's text size.
649 */
650 SkScalar getTextSize() const { return fTextSize; }
651
652 /** Set the paint's text size. This value must be > 0
653 @param textSize set the paint's text size.
654 */
655 void setTextSize(SkScalar textSize);
656
657 /** Return the paint's horizontal scale factor for text. The default value
658 is 1.0.
659 @return the paint's scale factor in X for drawing/measuring text
660 */
661 SkScalar getTextScaleX() const { return fTextScaleX; }
662
663 /** Set the paint's horizontal scale factor for text. The default value
664 is 1.0. Values > 1.0 will stretch the text wider. Values < 1.0 will
665 stretch the text narrower.
666 @param scaleX set the paint's scale factor in X for drawing/measuring
667 text.
668 */
669 void setTextScaleX(SkScalar scaleX);
670
671 /** Return the paint's horizontal skew factor for text. The default value
672 is 0.
673 @return the paint's skew factor in X for drawing text.
674 */
675 SkScalar getTextSkewX() const { return fTextSkewX; }
676
677 /** Set the paint's horizontal skew factor for text. The default value
678 is 0. For approximating oblique text, use values around -0.25.
679 @param skewX set the paint's skew factor in X for drawing text.
680 */
681 void setTextSkewX(SkScalar skewX);
682
683 /** Describes how to interpret the text parameters that are passed to paint
684 methods like measureText() and getTextWidths().
685 */
686 enum TextEncoding {
687 kUTF8_TextEncoding, //!< the text parameters are UTF8
688 kUTF16_TextEncoding, //!< the text parameters are UTF16
robertphillips@google.com69705572012-03-21 19:46:50 +0000689 kUTF32_TextEncoding, //!< the text parameters are UTF32
reed@android.com8a1c16f2008-12-17 15:59:43 +0000690 kGlyphID_TextEncoding //!< the text parameters are glyph indices
691 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000692
reedf59eab22014-07-14 14:39:15 -0700693 TextEncoding getTextEncoding() const {
694 return (TextEncoding)fBitfields.fTextEncoding;
695 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000696
697 void setTextEncoding(TextEncoding encoding);
698
699 struct FontMetrics {
commit-bot@chromium.org0bc406d2014-03-01 20:12:26 +0000700 /** Flags which indicate the confidence level of various metrics.
701 A set flag indicates that the metric may be trusted.
702 */
703 enum FontMetricsFlags {
704 kUnderlineThinknessIsValid_Flag = 1 << 0,
705 kUnderlinePositionIsValid_Flag = 1 << 1,
706 };
707
708 uint32_t fFlags; //!< Bit field to identify which values are unknown
reed@android.com8a1c16f2008-12-17 15:59:43 +0000709 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
710 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
711 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
712 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
713 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
commit-bot@chromium.org0bc406d2014-03-01 20:12:26 +0000714 SkScalar fAvgCharWidth; //!< the average character width (>= 0)
715 SkScalar fMaxCharWidth; //!< the max character width (>= 0)
agl@chromium.orgcc3096b2009-04-22 22:09:04 +0000716 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
717 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
bungeman@google.comcbe1b542013-12-16 17:02:39 +0000718 SkScalar fXHeight; //!< The height of an 'x' in px, or 0 if no 'x' in face
719 SkScalar fCapHeight; //!< The cap height (> 0), or 0 if cannot be determined.
commit-bot@chromium.org0bc406d2014-03-01 20:12:26 +0000720 SkScalar fUnderlineThickness; //!< underline thickness, or 0 if cannot be determined
721
722 /** Underline Position - position of the top of the Underline stroke
723 relative to the baseline, this can have following values
724 - Negative - means underline should be drawn above baseline.
725 - Positive - means below baseline.
726 - Zero - mean underline should be drawn on baseline.
727 */
728 SkScalar fUnderlinePosition; //!< underline position, or 0 if cannot be determined
729
730 /** If the fontmetrics has a valid underlinethickness, return true, and set the
731 thickness param to that value. If it doesn't return false and ignore the
732 thickness param.
733 */
734 bool hasUnderlineThickness(SkScalar* thickness) const {
735 if (SkToBool(fFlags & kUnderlineThinknessIsValid_Flag)) {
736 *thickness = fUnderlineThickness;
737 return true;
738 }
739 return false;
740 }
741
742 /** If the fontmetrics has a valid underlineposition, return true, and set the
743 thickness param to that value. If it doesn't return false and ignore the
744 thickness param.
745 */
746 bool hasUnderlinePosition(SkScalar* position) const {
747 if (SkToBool(fFlags & kUnderlinePositionIsValid_Flag)) {
748 *position = fUnderlinePosition;
749 return true;
750 }
751 return false;
752 }
753
reed@android.com8a1c16f2008-12-17 15:59:43 +0000754 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000755
reed@android.com8a1c16f2008-12-17 15:59:43 +0000756 /** Return the recommend spacing between lines (which will be
757 fDescent - fAscent + fLeading).
758 If metrics is not null, return in it the font metrics for the
reed@google.com9d07fec2011-03-16 20:02:59 +0000759 typeface/pointsize/etc. currently set in the paint.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000760 @param metrics If not null, returns the font metrics for the
761 current typeface/pointsize/etc setting in this
762 paint.
763 @param scale If not 0, return width as if the canvas were scaled
764 by this value
765 @param return the recommended spacing between lines
766 */
767 SkScalar getFontMetrics(FontMetrics* metrics, SkScalar scale = 0) const;
reed@google.com9d07fec2011-03-16 20:02:59 +0000768
reed@android.com8a1c16f2008-12-17 15:59:43 +0000769 /** Return the recommend line spacing. This will be
770 fDescent - fAscent + fLeading
771 */
772 SkScalar getFontSpacing() const { return this->getFontMetrics(NULL, 0); }
773
774 /** Convert the specified text into glyph IDs, returning the number of
775 glyphs ID written. If glyphs is NULL, it is ignore and only the count
776 is returned.
777 */
778 int textToGlyphs(const void* text, size_t byteLength,
halcanaryd0e95a52016-07-25 07:18:12 -0700779 SkGlyphID glyphs[]) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000780
reed@android.coma5dcaf62010-02-05 17:12:32 +0000781 /** Return true if all of the specified text has a corresponding non-zero
782 glyph ID. If any of the code-points in the text are not supported in
783 the typeface (i.e. the glyph ID would be zero), then return false.
784
785 If the text encoding for the paint is kGlyph_TextEncoding, then this
786 returns true if all of the specified glyph IDs are non-zero.
787 */
788 bool containsText(const void* text, size_t byteLength) const;
789
reed@android.com9d3a9852010-01-08 14:07:42 +0000790 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped
791 to zero. Note: this does not look at the text-encoding setting in the
792 paint, only at the typeface.
793 */
halcanaryd0e95a52016-07-25 07:18:12 -0700794 void glyphsToUnichars(const SkGlyphID glyphs[], int count, SkUnichar text[]) const;
reed@android.com9d3a9852010-01-08 14:07:42 +0000795
reed@android.com8a1c16f2008-12-17 15:59:43 +0000796 /** Return the number of drawable units in the specified text buffer.
797 This looks at the current TextEncoding field of the paint. If you also
798 want to have the text converted into glyph IDs, call textToGlyphs
799 instead.
800 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000801 int countText(const void* text, size_t byteLength) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000802 return this->textToGlyphs(text, byteLength, NULL);
803 }
804
reed@google.com44da42e2011-11-10 20:04:47 +0000805 /** Return the width of the text. This will return the vertical measure
806 * if isVerticalText() is true, in which case the returned value should
807 * be treated has a height instead of a width.
808 *
809 * @param text The text to be measured
810 * @param length Number of bytes of text to measure
811 * @param bounds If not NULL, returns the bounds of the text,
812 * relative to (0, 0).
reed@google.com44da42e2011-11-10 20:04:47 +0000813 * @return The advance width of the text
814 */
reed99ae8812014-08-26 11:30:01 -0700815 SkScalar measureText(const void* text, size_t length, SkRect* bounds) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000816
reed@google.com44da42e2011-11-10 20:04:47 +0000817 /** Return the width of the text. This will return the vertical measure
818 * if isVerticalText() is true, in which case the returned value should
819 * be treated has a height instead of a width.
820 *
821 * @param text Address of the text
822 * @param length Number of bytes of text to measure
reed@google.com97ecd1d2012-05-15 19:25:17 +0000823 * @return The advance width of the text
reed@google.com44da42e2011-11-10 20:04:47 +0000824 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000825 SkScalar measureText(const void* text, size_t length) const {
reed99ae8812014-08-26 11:30:01 -0700826 return this->measureText(text, length, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000827 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000828
reed@google.com44da42e2011-11-10 20:04:47 +0000829 /** Return the number of bytes of text that were measured. If
830 * isVerticalText() is true, then the vertical advances are used for
831 * the measurement.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000832 *
reed@google.com44da42e2011-11-10 20:04:47 +0000833 * @param text The text to be measured
834 * @param length Number of bytes of text to measure
835 * @param maxWidth Maximum width. Only the subset of text whose accumulated
836 * widths are <= maxWidth are measured.
837 * @param measuredWidth Optional. If non-null, this returns the actual
838 * width of the measured text.
reed@google.com44da42e2011-11-10 20:04:47 +0000839 * @return The number of bytes of text that were measured. Will be
840 * <= length.
841 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000842 size_t breakText(const void* text, size_t length, SkScalar maxWidth,
reed9e96aa02014-10-03 12:44:37 -0700843 SkScalar* measuredWidth = NULL) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000844
reed@google.com44da42e2011-11-10 20:04:47 +0000845 /** Return the advances for the text. These will be vertical advances if
846 * isVerticalText() returns true.
847 *
848 * @param text the text
849 * @param byteLength number of bytes to of text
850 * @param widths If not null, returns the array of advances for
851 * the glyphs. If not NULL, must be at least a large
852 * as the number of unichars in the specified text.
853 * @param bounds If not null, returns the bounds for each of
854 * character, relative to (0, 0)
855 * @return the number of unichars in the specified text.
856 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000857 int getTextWidths(const void* text, size_t byteLength, SkScalar widths[],
858 SkRect bounds[] = NULL) const;
859
860 /** Return the path (outline) for the specified text.
caryclark0449bcf2016-02-09 13:25:45 -0800861 * Note: just like SkCanvas::drawText, this will respect the Align setting
862 * in the paint.
863 *
864 * @param text the text
865 * @param length number of bytes of text
866 * @param x The x-coordinate of the origin of the text.
867 * @param y The y-coordinate of the origin of the text.
868 * @param path The outline of the text.
869 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000870 void getTextPath(const void* text, size_t length, SkScalar x, SkScalar y,
871 SkPath* path) const;
872
caryclark0449bcf2016-02-09 13:25:45 -0800873 /** Return the path (outline) for the specified text.
874 * Note: just like SkCanvas::drawText, this will respect the Align setting
875 * in the paint.
876 *
877 * @param text the text
878 * @param length number of bytes of text
879 * @param pos array of positions, used to position each character
880 * @param path The outline of the text.
881 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000882 void getPosTextPath(const void* text, size_t length,
reed@google.comca0062e2012-07-20 11:20:32 +0000883 const SkPoint pos[], SkPath* path) const;
884
caryclark0449bcf2016-02-09 13:25:45 -0800885 /** Return the number of intervals that intersect the intercept along the axis of the advance.
886 * The return count is zero or a multiple of two, and is at most the number of glyphs * 2 in
887 * the string. The caller may pass nullptr for intervals to determine the size of the interval
888 * array, or may conservatively pre-allocate an array with length * 2 entries. The computed
889 * intervals are cached by glyph to improve performance for multiple calls.
890 * This permits constructing an underline that skips the descenders.
891 *
892 * @param text the text
893 * @param length number of bytes of text
894 * @param x The x-coordinate of the origin of the text.
895 * @param y The y-coordinate of the origin of the text.
896 * @param bounds The lower and upper line parallel to the advance.
897 * @param array If not null, the found intersections.
898 *
899 * @return The number of intersections, which may be zero.
900 */
901 int getTextIntercepts(const void* text, size_t length, SkScalar x, SkScalar y,
902 const SkScalar bounds[2], SkScalar* intervals) const;
903
904 /** Return the number of intervals that intersect the intercept along the axis of the advance.
905 * The return count is zero or a multiple of two, and is at most the number of glyphs * 2 in
906 * string. The caller may pass nullptr for intervals to determine the size of the interval
907 * array, or may conservatively pre-allocate an array with length * 2 entries. The computed
908 * intervals are cached by glyph to improve performance for multiple calls.
909 * This permits constructing an underline that skips the descenders.
910 *
911 * @param text the text
912 * @param length number of bytes of text
913 * @param pos array of positions, used to position each character
914 * @param bounds The lower and upper line parallel to the advance.
915 * @param array If not null, the glyph bounds contained by the advance parallel lines.
916 *
917 * @return The number of intersections, which may be zero.
918 */
919 int getPosTextIntercepts(const void* text, size_t length, const SkPoint pos[],
920 const SkScalar bounds[2], SkScalar* intervals) const;
921
fmalitaeae6a912016-07-28 09:47:24 -0700922 /** Return the number of intervals that intersect the intercept along the axis of the advance.
923 * The return count is zero or a multiple of two, and is at most the number of glyphs * 2 in
924 * string. The caller may pass nullptr for intervals to determine the size of the interval
925 * array, or may conservatively pre-allocate an array with length * 2 entries. The computed
926 * intervals are cached by glyph to improve performance for multiple calls.
927 * This permits constructing an underline that skips the descenders.
928 *
929 * @param text The text.
930 * @param length Number of bytes of text.
931 * @param xpos Array of x-positions, used to position each character.
932 * @param constY The shared Y coordinate for all of the positions.
933 * @param bounds The lower and upper line parallel to the advance.
934 * @param array If not null, the glyph bounds contained by the advance parallel lines.
935 *
936 * @return The number of intersections, which may be zero.
937 */
938 int getPosTextHIntercepts(const void* text, size_t length, const SkScalar xpos[],
939 SkScalar constY, const SkScalar bounds[2], SkScalar* intervals) const;
940
941 /** Return the number of intervals that intersect the intercept along the axis of the advance.
942 * The return count is zero or a multiple of two, and is at most the number of glyphs * 2 in
943 * text blob. The caller may pass nullptr for intervals to determine the size of the interval
944 * array. The computed intervals are cached by glyph to improve performance for multiple calls.
945 * This permits constructing an underline that skips the descenders.
946 *
947 * @param blob The text blob.
948 * @param bounds The lower and upper line parallel to the advance.
949 * @param array If not null, the glyph bounds contained by the advance parallel lines.
950 *
951 * @return The number of intersections, which may be zero.
952 */
953 int getTextBlobIntercepts(const SkTextBlob* blob, const SkScalar bounds[2],
954 SkScalar* intervals) const;
955
reed8893e5f2014-12-15 13:27:26 -0800956 /**
957 * Return a rectangle that represents the union of the bounds of all
958 * of the glyphs, but each one positioned at (0,0). This may be conservatively large, and
959 * will not take into account any hinting, but will respect any text-scale-x or text-skew-x
960 * on this paint.
961 */
962 SkRect getFontBounds() const;
963
reed@google.com632e1a22011-10-06 12:37:00 +0000964 // returns true if the paint's settings (e.g. xfermode + alpha) resolve to
965 // mean that we need not draw at all (e.g. SrcOver + 0-alpha)
966 bool nothingToDraw() const;
967
reed@google.coma584aed2012-05-16 14:06:02 +0000968 ///////////////////////////////////////////////////////////////////////////
reed@google.comd5f20792012-05-16 14:15:02 +0000969 // would prefer to make these private...
970
reed@google.coma584aed2012-05-16 14:06:02 +0000971 /** Returns true if the current paint settings allow for fast computation of
972 bounds (i.e. there is nothing complex like a patheffect that would make
973 the bounds computation expensive.
974 */
senorblanco0abdf762015-08-20 11:10:41 -0700975 bool canComputeFastBounds() const;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000976
reed@google.coma584aed2012-05-16 14:06:02 +0000977 /** Only call this if canComputeFastBounds() returned true. This takes a
978 raw rectangle (the raw bounds of a shape), and adjusts it for stylistic
979 effects in the paint (e.g. stroking). If needed, it uses the storage
980 rect parameter. It returns the adjusted bounds that can then be used
981 for quickReject tests.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000982
reed@google.coma584aed2012-05-16 14:06:02 +0000983 The returned rect will either be orig or storage, thus the caller
984 should not rely on storage being set to the result, but should always
985 use the retured value. It is legal for orig and storage to be the same
986 rect.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000987
reed@google.coma584aed2012-05-16 14:06:02 +0000988 e.g.
989 if (paint.canComputeFastBounds()) {
990 SkRect r, storage;
991 path.computeBounds(&r, SkPath::kFast_BoundsType);
992 const SkRect& fastR = paint.computeFastBounds(r, &storage);
993 if (canvas->quickReject(fastR, ...)) {
994 // don't draw the path
995 }
996 }
997 */
998 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const {
999 SkPaint::Style style = this->getStyle();
1000 // ultra fast-case: filling with no effects that affect geometry
1001 if (kFill_Style == style) {
1002 uintptr_t effects = reinterpret_cast<uintptr_t>(this->getLooper());
1003 effects |= reinterpret_cast<uintptr_t>(this->getMaskFilter());
1004 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect());
senorblanco@chromium.org336d1d72014-01-27 21:03:17 +00001005 effects |= reinterpret_cast<uintptr_t>(this->getImageFilter());
reed@google.coma584aed2012-05-16 14:06:02 +00001006 if (!effects) {
1007 return orig;
1008 }
1009 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001010
reed@google.coma584aed2012-05-16 14:06:02 +00001011 return this->doComputeFastBounds(orig, storage, style);
1012 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001013
reed@google.coma584aed2012-05-16 14:06:02 +00001014 const SkRect& computeFastStrokeBounds(const SkRect& orig,
1015 SkRect* storage) const {
reed@google.com73a02582012-05-16 19:21:12 +00001016 return this->doComputeFastBounds(orig, storage, kStroke_Style);
reed@google.coma584aed2012-05-16 14:06:02 +00001017 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001018
reed@google.coma584aed2012-05-16 14:06:02 +00001019 // Take the style explicitly, so the caller can force us to be stroked
1020 // without having to make a copy of the paint just to change that field.
1021 const SkRect& doComputeFastBounds(const SkRect& orig, SkRect* storage,
1022 Style) const;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001023
reed@google.comed43dff2013-06-04 16:56:27 +00001024 /**
1025 * Return a matrix that applies the paint's text values: size, scale, skew
1026 */
1027 static SkMatrix* SetTextMatrix(SkMatrix* matrix, SkScalar size,
1028 SkScalar scaleX, SkScalar skewX) {
1029 matrix->setScale(size * scaleX, size);
1030 if (skewX) {
1031 matrix->postSkew(skewX, 0);
1032 }
1033 return matrix;
1034 }
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +00001035
reed@google.comed43dff2013-06-04 16:56:27 +00001036 SkMatrix* setTextMatrix(SkMatrix* matrix) const {
1037 return SetTextMatrix(matrix, fTextSize, fTextScaleX, fTextSkewX);
1038 }
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +00001039
benjaminwagnerd936f632016-02-23 10:44:31 -08001040 typedef const SkGlyph& (*GlyphCacheProc)(SkGlyphCache*, const char**);
1041
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +00001042 SK_TO_STRING_NONVIRT()
robertphillips@google.com791f12e2013-02-14 13:53:53 +00001043
reed@google.comd5f20792012-05-16 14:15:02 +00001044private:
reeda5ab9ec2016-03-06 18:10:48 -08001045 sk_sp<SkTypeface> fTypeface;
1046 sk_sp<SkPathEffect> fPathEffect;
1047 sk_sp<SkShader> fShader;
reeda5ab9ec2016-03-06 18:10:48 -08001048 sk_sp<SkMaskFilter> fMaskFilter;
1049 sk_sp<SkColorFilter> fColorFilter;
1050 sk_sp<SkRasterizer> fRasterizer;
reed46f2d0a2016-09-11 05:40:31 -07001051 sk_sp<SkDrawLooper> fDrawLooper;
reeda5ab9ec2016-03-06 18:10:48 -08001052 sk_sp<SkImageFilter> fImageFilter;
reed@google.comd5f20792012-05-16 14:15:02 +00001053
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +00001054 SkScalar fTextSize;
1055 SkScalar fTextScaleX;
1056 SkScalar fTextSkewX;
reed@google.comd5f20792012-05-16 14:15:02 +00001057 SkColor fColor;
1058 SkScalar fWidth;
1059 SkScalar fMiterLimit;
reed374772b2016-10-05 17:33:02 -07001060 uint32_t fBlendMode; // just need 5-6 bits for SkXfermode::Mode
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +00001061 union {
1062 struct {
1063 // all of these bitfields should add up to 32
1064 unsigned fFlags : 16;
1065 unsigned fTextAlign : 2;
1066 unsigned fCapType : 2;
1067 unsigned fJoinType : 2;
1068 unsigned fStyle : 2;
1069 unsigned fTextEncoding : 2; // 3 values
1070 unsigned fHinting : 2;
reedf803da12015-01-23 05:58:07 -08001071 unsigned fFilterQuality : 2;
commit-bot@chromium.org85faf502014-04-16 12:58:02 +00001072 //unsigned fFreeBits : 2;
reedf59eab22014-07-14 14:39:15 -07001073 } fBitfields;
1074 uint32_t fBitfieldsUInt;
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +00001075 };
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +00001076
robertphillipse34f17d2016-07-19 07:59:22 -07001077 static GlyphCacheProc GetGlyphCacheProc(TextEncoding encoding,
1078 bool isDevKern,
1079 bool needFullMetrics);
reed@google.comd5f20792012-05-16 14:15:02 +00001080
1081 SkScalar measure_text(SkGlyphCache*, const char* text, size_t length,
1082 int* count, SkRect* bounds) const;
1083
brianosmana1e8f8d2016-04-08 06:47:54 -07001084 enum ScalerContextFlags : uint32_t {
1085 kNone_ScalerContextFlags = 0,
1086
1087 kFakeGamma_ScalerContextFlag = 1 << 0,
1088 kBoostContrast_ScalerContextFlag = 1 << 1,
1089
1090 kFakeGammaAndBoostContrast_ScalerContextFlags =
1091 kFakeGamma_ScalerContextFlag | kBoostContrast_ScalerContextFlag,
bungemanf6d1e602016-02-22 13:20:28 -08001092 };
1093
joshualittfd450792015-03-13 08:38:43 -07001094 /*
1095 * Allocs an SkDescriptor on the heap and return it to the caller as a refcnted
1096 * SkData. Caller is responsible for managing the lifetime of this object.
1097 */
reeda9322c22016-04-12 06:47:05 -07001098 void getScalerContextDescriptor(SkScalerContextEffects*, SkAutoDescriptor*,
1099 const SkSurfaceProps& surfaceProps,
brianosmana1e8f8d2016-04-08 06:47:54 -07001100 uint32_t scalerContextFlags, const SkMatrix*) const;
joshualittfd450792015-03-13 08:38:43 -07001101
brianosmana1e8f8d2016-04-08 06:47:54 -07001102 SkGlyphCache* detachCache(const SkSurfaceProps* surfaceProps, uint32_t scalerContextFlags,
bungemanf6d1e602016-02-22 13:20:28 -08001103 const SkMatrix*) const;
reed@google.comd5f20792012-05-16 14:15:02 +00001104
brianosmana1e8f8d2016-04-08 06:47:54 -07001105 void descriptorProc(const SkSurfaceProps* surfaceProps, uint32_t scalerContextFlags,
bungemanf6d1e602016-02-22 13:20:28 -08001106 const SkMatrix* deviceMatrix,
reeda9322c22016-04-12 06:47:05 -07001107 void (*proc)(SkTypeface*, const SkScalerContextEffects&,
1108 const SkDescriptor*, void*),
bungemanf6d1e602016-02-22 13:20:28 -08001109 void* context) const;
reed@android.comd252db02009-04-01 18:31:44 +00001110
joshualitt9e36c1a2015-04-14 12:17:27 -07001111 /*
1112 * The luminance color is used to determine which Gamma Canonical color to map to. This is
1113 * really only used by backends which want to cache glyph masks, and need some way to know if
1114 * they need to generate new masks based off a given color.
1115 */
1116 SkColor computeLuminanceColor() const;
1117
reed@android.com8a1c16f2008-12-17 15:59:43 +00001118 enum {
reed@google.comed43dff2013-06-04 16:56:27 +00001119 /* This is the size we use when we ask for a glyph's path. We then
1120 * post-transform it as we draw to match the request.
1121 * This is done to try to re-use cache entries for the path.
1122 *
1123 * This value is somewhat arbitrary. In theory, it could be 1, since
1124 * we store paths as floats. However, we get the path from the font
1125 * scaler, and it may represent its paths as fixed-point (or 26.6),
1126 * so we shouldn't ask for something too big (might overflow 16.16)
1127 * or too small (underflow 26.6).
1128 *
1129 * This value could track kMaxSizeForGlyphCache, assuming the above
1130 * constraints, but since we ask for unhinted paths, the two values
1131 * need not match per-se.
1132 */
1133 kCanonicalTextSizeForPaths = 64,
1134
1135 /*
1136 * Above this size (taking into account CTM and textSize), we never use
1137 * the cache for bits or metrics (we might overflow), so we just ask
1138 * for a caononical size and post-transform that.
1139 */
1140 kMaxSizeForGlyphCache = 256,
reed@android.com8a1c16f2008-12-17 15:59:43 +00001141 };
reed@google.comed43dff2013-06-04 16:56:27 +00001142
1143 static bool TooBigToUseCache(const SkMatrix& ctm, const SkMatrix& textM);
1144
reed@google.comed43dff2013-06-04 16:56:27 +00001145 // Set flags/hinting/textSize up to use for drawing text as paths.
1146 // Returns scale factor to restore the original textSize, since will will
1147 // have change it to kCanonicalTextSizeForPaths.
1148 SkScalar setupForAsPaths();
1149
1150 static SkScalar MaxCacheSize2() {
1151 static const SkScalar kMaxSize = SkIntToScalar(kMaxSizeForGlyphCache);
1152 static const SkScalar kMag2Max = kMaxSize * kMaxSize;
1153 return kMag2Max;
1154 }
1155
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001156 friend class SkAutoGlyphCache;
jvanverth2d2a68c2014-06-10 06:42:56 -07001157 friend class SkAutoGlyphCacheNoGamma;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001158 friend class SkCanvas;
1159 friend class SkDraw;
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001160 friend class SkPDFDevice;
joshualitte76b4bb2015-12-28 07:23:58 -08001161 friend class GrAtlasTextBlob;
joshualittdbd35932015-04-02 09:19:04 -07001162 friend class GrAtlasTextContext;
kkinnunenc6cb56f2014-06-24 00:12:27 -07001163 friend class GrStencilAndCoverTextContext;
cdalton855d83f2014-09-18 13:51:53 -07001164 friend class GrPathRendering;
joshualitt0a42e682015-12-10 13:20:58 -08001165 friend class GrTextUtils;
cdalton855d83f2014-09-18 13:51:53 -07001166 friend class GrGLPathRendering;
joshualitt9e36c1a2015-04-14 12:17:27 -07001167 friend class SkScalerContext;
caryclark0449bcf2016-02-09 13:25:45 -08001168 friend class SkTextBaseIter;
reed@google.comed43dff2013-06-04 16:56:27 +00001169 friend class SkCanonicalizePaint;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001170};
1171
reed@android.com8a1c16f2008-12-17 15:59:43 +00001172#endif