aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SrcOverTest.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-02-24 17:59:16 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-24 17:59:16 -0800
commit7d57124a2a9ed7b271568fb75b3cfd949fdb313a (patch)
tree34a0d37411771ccceb3dc4537a19c8360e1f5cfb /tests/SrcOverTest.cpp
parent8e9f5e39d774198a5a5d9345bc9f863e855c593b (diff)
Unit Tests: eliminate stray SkDebugf()s.
Diffstat (limited to 'tests/SrcOverTest.cpp')
-rw-r--r--tests/SrcOverTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/SrcOverTest.cpp b/tests/SrcOverTest.cpp
index be64710404..7789fbdd50 100644
--- a/tests/SrcOverTest.cpp
+++ b/tests/SrcOverTest.cpp
@@ -42,8 +42,8 @@ DEF_TEST(SrcOver, reporter) {
opaqueCounter2 += (result2 == 0xFF);
}
#if 0
- SkDebugf("---- opaque test: [%d %d %d]\n",
- opaqueCounter0, opaqueCounter1, opaqueCounter2);
+ INFOF(reporter, "---- opaque test: [%d %d %d]\n",
+ opaqueCounter0, opaqueCounter1, opaqueCounter2);
#endif
// we acknowledge that technique0 does not always return opaque
REPORTER_ASSERT(reporter, opaqueCounter0 == 256);
@@ -67,8 +67,8 @@ DEF_TEST(SrcOver, reporter) {
#if 0
// this shows where r1 (faster) differs from r2 (more exact)
if (r1 != r2) {
- SkDebugf("--- dst=%d i=%d r1=%d r2=%d exact=%g\n",
- dst, i, r1, r2, i + dst - dst*i/255.0f);
+ INFOF(reporter, "--- dst=%d i=%d r1=%d r2=%d exact=%g\n",
+ dst, i, r1, r2, i + dst - dst*i/255.0f);
}
#endif
}