Correct argument order for drawSimpleRect()

Patch by Ryan Sleevi <rsleevi@chromium.org>
Review URL: http://codereview.appspot.com/4568055/

git-svn-id: http://skia.googlecode.com/svn/trunk@1523 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
thakis@chromium.org 2011-06-07 04:03:17 +00:00
parent 120bdffcf0
commit 441d7da536

View File

@ -527,7 +527,7 @@ bool GrGpu::setupClipAndFlushState(GrPrimitiveType type) {
}
} else {
SET_RANDOM_COLOR
this->drawSimpleRect(bounds, 0, NULL);
this->drawSimpleRect(bounds, NULL, 0);
}
}
}