aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/src/GrGpu.cpp
diff options
context:
space:
mode:
authorGravatar thakis@chromium.org <thakis@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 04:03:17 +0000
committerGravatar thakis@chromium.org <thakis@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 04:03:17 +0000
commit441d7da5364649857fa5941a6380d3a8b5dfce73 (patch)
tree45e1268394defb8f3eff9db60edb4778922c8433 /gpu/src/GrGpu.cpp
parent120bdffcf074ae06a3489e9d61d4dc28d61e1bbc (diff)
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
Diffstat (limited to 'gpu/src/GrGpu.cpp')
-rw-r--r--gpu/src/GrGpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/src/GrGpu.cpp b/gpu/src/GrGpu.cpp
index 4fe7ccc30d..4f260c7967 100644
--- a/gpu/src/GrGpu.cpp
+++ b/gpu/src/GrGpu.cpp
@@ -527,7 +527,7 @@ bool GrGpu::setupClipAndFlushState(GrPrimitiveType type) {
}
} else {
SET_RANDOM_COLOR
- this->drawSimpleRect(bounds, 0, NULL);
+ this->drawSimpleRect(bounds, NULL, 0);
}
}
}