aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkTextBlob.h
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-07-25 07:18:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-25 07:18:12 -0700
commitd0e95a524c20932e0f4e68bab43995188a281395 (patch)
tree7077702ee7d4e3d7deffcbe10f70ba4ff53fe50f /include/core/SkTextBlob.h
parent1d35231e7b5cce8c4f54ea71a8e030be893363fb (diff)
typedef uint16_t SkGlyphID
This goes well with our existing `typedef int32_t SkUnichar`. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2095263003 Review-Url: https://codereview.chromium.org/2095263003
Diffstat (limited to 'include/core/SkTextBlob.h')
-rw-r--r--include/core/SkTextBlob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkTextBlob.h b/include/core/SkTextBlob.h
index e43ff74a85..c211f85086 100644
--- a/include/core/SkTextBlob.h
+++ b/include/core/SkTextBlob.h
@@ -106,7 +106,7 @@ public:
* A run is a sequence of glyphs sharing the same font metrics and positioning mode.
*/
struct RunBuffer {
- uint16_t* glyphs;
+ SkGlyphID* glyphs;
SkScalar* pos;
};