remove leftover printf

git-svn-id: http://skia.googlecode.com/svn/trunk@9552 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-06-12 21:07:55 +00:00
parent b8b3d90284
commit 01efe139af

View File

@ -257,7 +257,6 @@ int SkEdgeBuilder::build(const SkPath& path, const SkIRect* iclip,
pow2 = SkMin32(pow2, MAX_POW2);
int quadCount = conic.chopIntoQuadsPOW2(storage, pow2);
SkASSERT(quadCount <= MAX_QUADS);
SkDebugf("--- quadCount = %d\n", quadCount);
for (int i = 0; i < quadCount; ++i) {
handle_quad(this, &storage[i * 2]);
}