aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2018-05-01 09:52:48 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-01 14:29:44 +0000
commit8afbecbcc05412fadc66cc9d29955064145b8ba5 (patch)
treecd6c0afa83453eb7b011c5ff61942486758a5788
parentaa03bd93b7c18a00f28f7746776d3da43531e656 (diff)
remove obsolete color defines
The uses in Skia, Chrome, and Google3 have already been removed. If I missed one or more, please let me know (and feel free to revert). TBR=reed@google.com,brianosman@google.com Bug: skia:6898 Change-Id: I9d15b1a06f5abfc3a0fc6f3f1b4d348916c3d362 Reviewed-on: https://skia-review.googlesource.com/124840 Reviewed-by: Cary Clark <caryclark@skia.org> Commit-Queue: Cary Clark <caryclark@skia.org> Auto-Submit: Cary Clark <caryclark@skia.org>
-rw-r--r--include/core/SkColor.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/core/SkColor.h b/include/core/SkColor.h
index c9420d66e7..4f7592baee 100644
--- a/include/core/SkColor.h
+++ b/include/core/SkColor.h
@@ -32,9 +32,6 @@ static constexpr inline SkColor SkColorSetARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU
return SkASSERT(a <= 255 && r <= 255 && g <= 255 && b <= 255),
(a << 24) | (r << 16) | (g << 8) | (b << 0);
}
-// Legacy aliases.
-#define SkColorSetARGBInline SkColorSetARGB
-#define SkColorSetARGBMacro SkColorSetARGB
/** Return a SkColor value from 8 bit component values, with an implied value
of 0xFF for alpha (fully opaque)