aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches/GrDrawAtlasBatch.cpp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-08-10 08:02:58 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-10 08:02:58 -0700
commitd22f37cda70a338adb00cee07b4052a60d77c98f (patch)
treeef2ec15bba486eb35cbcf2148091eeefcdf4659d /src/gpu/batches/GrDrawAtlasBatch.cpp
parentc5b7df48b212fbabcc5df87b18376818bd91c1c2 (diff)
Wire up testcreate function for GrDrawAtlasBatch
Diffstat (limited to 'src/gpu/batches/GrDrawAtlasBatch.cpp')
-rw-r--r--src/gpu/batches/GrDrawAtlasBatch.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpu/batches/GrDrawAtlasBatch.cpp b/src/gpu/batches/GrDrawAtlasBatch.cpp
index 4291542102..3a71fcbc1b 100644
--- a/src/gpu/batches/GrDrawAtlasBatch.cpp
+++ b/src/gpu/batches/GrDrawAtlasBatch.cpp
@@ -19,7 +19,8 @@ void GrDrawAtlasBatch::initBatchTracker(const GrPipelineInfo& init) {
// setup batch properties
fColorIgnored = !init.readsColor();
fColor = fGeoData[0].fColor;
- SkASSERT(init.readsLocalCoords());
+ // We'd like to assert this, but we can't because of GLPrograms test
+ //SkASSERT(init.readsLocalCoords());
fCoverageIgnored = !init.readsCoverage();
}