From be7f768a357aefb39c42d24b81b24d647bb6ab70 Mon Sep 17 00:00:00 2001 From: caryclark Date: Mon, 15 Jun 2015 05:09:59 -0700 Subject: make gm background colors 565 compatible Change a batch of GM tests to convert their background color so that it is representable in 8888 and 565. Enable portable text in those same tests to minimize platform differences. In a couple of bitmap tests, use portable typefaces instead of choosing 'Times' which may or may not be available on the platform. R=borenet@google.com Review URL: https://codereview.chromium.org/1176243006 --- gm/bmpfilterqualityrepeat.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gm/bmpfilterqualityrepeat.cpp') diff --git a/gm/bmpfilterqualityrepeat.cpp b/gm/bmpfilterqualityrepeat.cpp index 1097141158..edcd6968f5 100644 --- a/gm/bmpfilterqualityrepeat.cpp +++ b/gm/bmpfilterqualityrepeat.cpp @@ -14,7 +14,7 @@ // the bmp filter respects the repeat mode at the tile seams. class BmpFilterQualityRepeat : public skiagm::GM { public: - BmpFilterQualityRepeat() { this->setBGColor(0xFFCCBBAA); } + BmpFilterQualityRepeat() { this->setBGColor(sk_tool_utils::color_to_565(0xFFCCBBAA)); } protected: @@ -51,6 +51,7 @@ protected: for (size_t q = 0; q < SK_ARRAY_COUNT(kQualities); ++q) { SkPaint paint; + sk_tool_utils::set_portable_typeface_always(&paint); paint.setFilterQuality(kQualities[q].fQuality); SkPaint bmpPaint(paint); SkMatrix lm = SkMatrix::I(); -- cgit v1.2.3