aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkRegion.cpp4
-rw-r--r--src/core/SkRegionPriv.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/SkRegion.cpp b/src/core/SkRegion.cpp
index 9ebc0458ff..86ef4f8600 100644
--- a/src/core/SkRegion.cpp
+++ b/src/core/SkRegion.cpp
@@ -137,7 +137,7 @@ void SkRegion::freeRuns() {
if (--fRunHead->fRefCnt == 0) {
//SkASSERT(gRgnAllocCounter > 0);
//SkDEBUGCODE(sk_atomic_dec(&gRgnAllocCounter));
- //SkDEBUGF("************** gRgnAllocCounter::free %d\n", gRgnAllocCounter);
+ //SkDEBUGF(("************** gRgnAllocCounter::free %d\n", gRgnAllocCounter));
sk_free(fRunHead);
}
}
@@ -278,7 +278,7 @@ bool SkRegion::setRuns(RunType runs[], int count) {
SkASSERT(count > 0);
if (isRunCountEmpty(count)) {
- // SkDEBUGF("setRuns: empty\n");
+ // SkDEBUGF(("setRuns: empty\n"));
assert_sentinel(runs[count-1], true);
return this->setEmpty();
}
diff --git a/src/core/SkRegionPriv.h b/src/core/SkRegionPriv.h
index a8201930de..e0e46b2c1d 100644
--- a/src/core/SkRegionPriv.h
+++ b/src/core/SkRegionPriv.h
@@ -66,7 +66,7 @@ public:
static RunHead* Alloc(int count) {
//SkDEBUGCODE(sk_atomic_inc(&gRgnAllocCounter);)
- //SkDEBUGF("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter);
+ //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
if (count < SkRegion::kRectRegionRuns) {
return nullptr;