aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/fonts/SkRandomScalerContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fonts/SkRandomScalerContext.cpp')
-rw-r--r--tools/fonts/SkRandomScalerContext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/fonts/SkRandomScalerContext.cpp b/tools/fonts/SkRandomScalerContext.cpp
index 24dcb02feb..a8a8821a45 100644
--- a/tools/fonts/SkRandomScalerContext.cpp
+++ b/tools/fonts/SkRandomScalerContext.cpp
@@ -12,6 +12,7 @@
#include "SkMakeUnique.h"
#include "SkPath.h"
#include "SkRandomScalerContext.h"
+#include "SkRectPriv.h"
class SkDescriptor;
@@ -107,7 +108,7 @@ void SkRandomScalerContext::generateMetrics(SkGlyph* glyph) {
// just use devPath
const SkIRect ir = devPath.getBounds().roundOut();
- if (ir.isEmpty() || !ir.is16Bit()) {
+ if (ir.isEmpty() || !SkRectPriv::Is16Bit(ir)) {
glyph->fLeft = 0;
glyph->fTop = 0;
glyph->fWidth = 0;