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

Unified Diff: tests/ColorPrivTest.cpp

Issue 100923003: Refactor FourByteInterps. Add 64-bit Fast version. Add tests. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years 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 | « include/core/SkColorPriv.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/ColorPrivTest.cpp
diff --git a/tests/ColorPrivTest.cpp b/tests/ColorPrivTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..ddcde5dc01e490e4f6dcb0d6bc22e272a5c87f20
--- /dev/null
+++ b/tests/ColorPrivTest.cpp
@@ -0,0 +1,44 @@
+#include "Test.h"
+#include "TestClassDef.h"
+
+#include "SkColorPriv.h"
+
+#define ASSERT(expr) REPORTER_ASSERT(r, expr)
+
+DEF_TEST(Splay, r) {
+ const SkPMColor color = 0xA1B2C3D4;
+
+ uint32_t ag, rb;
+ SkSplay(color, &ag, &rb);
+ ASSERT(ag == 0x00A100C3);
+ ASSERT(rb == 0x00B200D4);
+ ASSERT(SkUnsplay(ag << 8, rb << 8) == color);
+
+ const uint64_t agrb = SkSplay(color);
+ ASSERT(agrb == 0x00A100C300B200D4);
+ ASSERT(SkUnsplay(agrb<<8) == color);
+}
+
+DEF_TEST(FourByteInterp, r) {
+ const SkPMColor src = 0xAB998877, dst = 0x66334455;
+ for (unsigned scale = 0; scale <= 256; scale++) {
+ ASSERT(SkFourByteInterp256(src, dst, scale) == SkFastFourByteInterp256(src, dst, scale));
+ }
+
+ for (unsigned scale = 0; scale < 256; scale++) {
+ // SkFourByteInterp and SkFastFourByteInterp convert from [0, 255] to [0, 256] differently.
+ // In particular, slow may end up a little too high (weirdly, fast is more accurate).
+ const SkPMColor slow = SkFourByteInterp(src, dst, scale);
+ const SkPMColor fast = SkFastFourByteInterp(src, dst, scale);
+
+ const int deltaA = SkGetPackedA32(slow) - SkGetPackedA32(fast);
+ const int deltaR = SkGetPackedR32(slow) - SkGetPackedR32(fast);
+ const int deltaG = SkGetPackedG32(slow) - SkGetPackedG32(fast);
+ const int deltaB = SkGetPackedB32(slow) - SkGetPackedB32(fast);
+
+ ASSERT(deltaA == 0 || deltaA == 1);
+ ASSERT(deltaR == 0 || deltaR == 1);
+ ASSERT(deltaG == 0 || deltaG == 1);
+ ASSERT(deltaB == 0 || deltaB == 1);
+ }
+}
« no previous file with comments | « include/core/SkColorPriv.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698