aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches/GrDrawPathBatch.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2016-09-12 08:55:38 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-12 08:55:38 -0700
commit7312ff87f64f31d741989a60d993bcaa4bb20523 (patch)
tree47b516a2e9d712289a535186ae3acf41b8b3d60d /src/gpu/batches/GrDrawPathBatch.cpp
parentc2f9ec1f5e4e8e98489cd5ea9356771cf4d8ce13 (diff)
Remove ability to skip coord transform comparison in pipeline comparison.
Diffstat (limited to 'src/gpu/batches/GrDrawPathBatch.cpp')
-rw-r--r--src/gpu/batches/GrDrawPathBatch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/batches/GrDrawPathBatch.cpp b/src/gpu/batches/GrDrawPathBatch.cpp
index ffe012f74b..815fe74636 100644
--- a/src/gpu/batches/GrDrawPathBatch.cpp
+++ b/src/gpu/batches/GrDrawPathBatch.cpp
@@ -69,7 +69,7 @@ bool GrDrawPathRangeBatch::onCombineIfPossible(GrBatch* t, const GrCaps& caps) {
!this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
return false;
}
- if (!GrPipeline::AreEqual(*this->pipeline(), *that->pipeline(), false)) {
+ if (!GrPipeline::AreEqual(*this->pipeline(), *that->pipeline())) {
return false;
}
switch (fDraws.head()->fInstanceData->transformType()) {