diff options
author | 2017-11-29 13:15:45 -0500 | |
---|---|---|
committer | 2017-11-29 13:15:45 -0500 | |
commit | a39b77416ce203ae37f1202f9686b81e789aaa9e (patch) | |
tree | 84f7eaa91cf8e054d325711e14978b15a41d1506 /libs/hwui/SkiaCanvas.cpp | |
parent | 3c1d0caedb01cbd8404f2ca224f40f1c97b7bebf (diff) |
Fix text encoding in some macrobench tests
Fix crash in macrobench tests, caused by incorrect text encoding.
Test: Ran macrobench tests
Change-Id: I3522004f70c7037299fb92157ac8633ebb170131
Diffstat (limited to 'libs/hwui/SkiaCanvas.cpp')
-rw-r--r-- | libs/hwui/SkiaCanvas.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/hwui/SkiaCanvas.cpp b/libs/hwui/SkiaCanvas.cpp index 508869a0cbdd..eb0d161d71d1 100644 --- a/libs/hwui/SkiaCanvas.cpp +++ b/libs/hwui/SkiaCanvas.cpp @@ -738,6 +738,7 @@ void SkiaCanvas::drawGlyphs(ReadGlyphFunc glyphFunc, int count, const SkPaint& p // care of all alignment. SkPaint paintCopy(paint); paintCopy.setTextAlign(SkPaint::kLeft_Align); + SkASSERT(paintCopy.getTextEncoding() == SkPaint::kGlyphID_TextEncoding); SkRect bounds = SkRect::MakeLTRB(boundsLeft + x, boundsTop + y, boundsRight + x, boundsBottom + y); |