aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkScan_AAAPath.cpp
diff options
context:
space:
mode:
authorGravatar Yuqian Li <liyuqian@google.com>2016-11-16 15:34:59 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-16 22:03:31 +0000
commitd930752957aaa26077870ebc7fb1c05307f4c27e (patch)
tree5736da6de4af57fc514bffc310f75de34d04f6c7 /src/core/SkScan_AAAPath.cpp
parent8de17f75982efe643c0f34afa685b99c05a5f9d7 (diff)
Turn off all SkDebugfs in SkScan_AAAPath.cpp
TBR=mtklein@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4912 Change-Id: Ia69f2932936e34bc487c9c468bba176de0b2b0df Reviewed-on: https://skia-review.googlesource.com/4912 Reviewed-by: Yuqian Li <liyuqian@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'src/core/SkScan_AAAPath.cpp')
-rw-r--r--src/core/SkScan_AAAPath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkScan_AAAPath.cpp b/src/core/SkScan_AAAPath.cpp
index 2e7526bcc3..a9f3654986 100644
--- a/src/core/SkScan_AAAPath.cpp
+++ b/src/core/SkScan_AAAPath.cpp
@@ -315,7 +315,7 @@ private:
inline bool check(int x, int width) {
#ifdef SK_DEBUG
if (x < 0 || x + width > fWidth) {
- SkDebugf("Ignore x = %d, width = %d\n", x, width);
+ // SkDebugf("Ignore x = %d, width = %d\n", x, width);
}
#endif
return (x >= 0 && x + width <= fWidth);
@@ -709,7 +709,7 @@ static inline void blit_trapezoid_row(AdditiveBlitter* blitter, int y,
if (ul > ur) {
#ifdef SK_DEBUG
- SkDebugf("ul = %f > ur = %f!\n", SkFixedToFloat(ul), SkFixedToFloat(ur));
+ // SkDebugf("ul = %f > ur = %f!\n", SkFixedToFloat(ul), SkFixedToFloat(ur));
#endif
return;
}