aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-13 08:08:25 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-13 08:08:25 -0700
commit1c735488cbec9abdb25c9a12e0c11af9c302a776 (patch)
treee55fc2b07702ae3d9ee8403c97fcdfd21ec02a68 /tests
parent5e6ba21f0722fea6b2f95b9d166d7601ffab18bf (diff)
Start to propagate constness of GrPipelineBuilder up the stack
Diffstat (limited to 'tests')
-rw-r--r--tests/GLProgramsTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp
index 7eb5315166..d21ae5d4cd 100644
--- a/tests/GLProgramsTest.cpp
+++ b/tests/GLProgramsTest.cpp
@@ -251,7 +251,7 @@ bool GrDrawTarget::programUnitTest(GrContext* context, int maxStages) {
set_random_state(&pipelineBuilder, &random);
set_random_stencil(&pipelineBuilder, &random);
- this->drawBatch(&pipelineBuilder, batch);
+ this->drawBatch(pipelineBuilder, batch);
}
// Flush everything, test passes if flush is successful(ie, no asserts are hit, no crashes)