| Index: dm/DMSrcSink.cpp
|
| diff --git a/dm/DMSrcSink.cpp b/dm/DMSrcSink.cpp
|
| index 26ba13b5476b165edc0c9aa1ce309224cfb1da7a..2861ae8ea230b44734fa54d238dbe9738b9580fb 100644
|
| --- a/dm/DMSrcSink.cpp
|
| +++ b/dm/DMSrcSink.cpp
|
| @@ -807,7 +807,6 @@
|
|
|
| DEFINE_bool(imm, false, "Run gpu configs in immediate mode.");
|
| DEFINE_bool(batchClip, false, "Clip each GrBatch to its device bounds for testing.");
|
| -DEFINE_bool(batchBounds, false, "Draw a wireframe bounds of each GrBatch.");
|
|
|
| Error GPUSink::draw(const Src& src, SkBitmap* dst, SkWStream*, SkString* log) const {
|
| GrContextOptions options;
|
| @@ -816,9 +815,6 @@
|
| }
|
| if (FLAGS_batchClip) {
|
| options.fClipBatchToBounds = true;
|
| - }
|
| - if (FLAGS_batchBounds) {
|
| - options.fDrawBatchBounds = true;
|
| }
|
| src.modifyGrContextOptions(&options);
|
|
|
|
|