Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Unified Diff: gm/xfermodes3.cpp

Issue 1243103002: make xfermode* portable (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/xfermodes2.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/xfermodes3.cpp
diff --git a/gm/xfermodes3.cpp b/gm/xfermodes3.cpp
index 003b771e1fe53abd5aa31037eaf885680318b461..d4659f081094149142092e00ad3cf30174c8722e 100644
--- a/gm/xfermodes3.cpp
+++ b/gm/xfermodes3.cpp
@@ -37,7 +37,7 @@ protected:
void onDrawBackground(SkCanvas* canvas) override {
SkPaint bgPaint;
- bgPaint.setColor(0xFF70D0E0);
+ bgPaint.setColor(sk_tool_utils::color_to_565(0xFF70D0E0));
canvas->drawPaint(bgPaint);
}
@@ -46,7 +46,7 @@ protected:
SkPaint labelP;
labelP.setAntiAlias(true);
- sk_tool_utils::set_portable_typeface(&labelP);
+ sk_tool_utils::set_portable_typeface_always(&labelP);
static const SkColor kSolidColors[] = {
SK_ColorTRANSPARENT,
@@ -181,10 +181,10 @@ private:
void onOnceBeforeDraw() override {
static const uint32_t kCheckData[] = {
- SkPackARGB32(0xFF, 0x40, 0x40, 0x40),
- SkPackARGB32(0xFF, 0xD0, 0xD0, 0xD0),
- SkPackARGB32(0xFF, 0xD0, 0xD0, 0xD0),
- SkPackARGB32(0xFF, 0x40, 0x40, 0x40)
+ SkPackARGB32(0xFF, 0x42, 0x41, 0x42),
+ SkPackARGB32(0xFF, 0xD6, 0xD3, 0xD6),
+ SkPackARGB32(0xFF, 0xD6, 0xD3, 0xD6),
+ SkPackARGB32(0xFF, 0x42, 0x41, 0x42)
};
SkBitmap bg;
bg.allocN32Pixels(2, 2, true);
« no previous file with comments | « gm/xfermodes2.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698