diff options
author | jvanverth <jvanverth@google.com> | 2016-09-19 11:25:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-19 11:25:57 -0700 |
commit | 613664b1bc645de31253c335c4f17e26ca40378f (patch) | |
tree | 56fa7dbdb566ca9e0b4a2dcea1809fdd6d598b1c /src | |
parent | 4b5179b74c49498e5b2b7d94319476672170b61d (diff) |
Remove unnecessary assert in GrBatchAtlas.
BUG=skia:5770
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2354653002
Review-Url: https://codereview.chromium.org/2354653002
Diffstat (limited to 'src')
-rw-r--r-- | src/gpu/GrBatchAtlas.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gpu/GrBatchAtlas.cpp b/src/gpu/GrBatchAtlas.cpp index 8cc6f61811..e0828a4e6a 100644 --- a/src/gpu/GrBatchAtlas.cpp +++ b/src/gpu/GrBatchAtlas.cpp @@ -220,8 +220,6 @@ bool GrBatchAtlas::addToAtlas(AtlasID* id, GrDrawBatch::Target* target, return false; } - SkASSERT(!plot->unique()); // The GrPlotUpdater should have a ref too - this->processEviction(plot->id()); fPlotList.remove(plot); SkAutoTUnref<BatchPlot>& newPlot = fPlotArray[plot->index()]; |