remove (unused) debugging global

git-svn-id: http://skia.googlecode.com/svn/trunk@6428 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2012-11-15 13:19:17 +00:00
parent b947625800
commit 0f5891caf6

View File

@ -219,9 +219,6 @@ static bool update_edge(SkEdge* edge, int last_y) {
static void walk_convex_edges(SkEdge* prevHead, SkPath::FillType,
SkBlitter* blitter, int start_y, int stop_y,
PrePostProc proc) {
static int gCalls;
gCalls++;
validate_sort(prevHead->fNext);
SkEdge* leftE = prevHead->fNext;
@ -238,10 +235,7 @@ static void walk_convex_edges(SkEdge* prevHead, SkPath::FillType,
#endif
SkASSERT(local_top >= start_y);
int gLoops = 0;
for (;;) {
gLoops++;
SkASSERT(leftE->fFirstY <= stop_y);
SkASSERT(riteE->fFirstY <= stop_y);