| Index: src/gpu/GrDrawTarget.cpp
|
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
|
| index fc8c71b443cfdcef3b558cacbf776e85b9d0c140..a67f86259ea212866803fea76f3097e553ed777b 100644
|
| --- a/src/gpu/GrDrawTarget.cpp
|
| +++ b/src/gpu/GrDrawTarget.cpp
|
| @@ -449,7 +449,7 @@ void GrDrawTarget::recordBatch(GrBatch* batch) {
|
| // 1) check every draw
|
| // 2) intersect with something
|
| // 3) find a 'blocker'
|
| - GR_AUDIT_TRAIL_ADDBATCH(fAuditTrail, batch->name(), batch->bounds());
|
| + GR_AUDIT_TRAIL_ADDBATCH(fAuditTrail, batch);
|
| GrBATCH_INFO("Re-Recording (%s, B%u)\n"
|
| "\tBounds LRTB (%f, %f, %f, %f)\n",
|
| batch->name(),
|
| @@ -472,7 +472,7 @@ void GrDrawTarget::recordBatch(GrBatch* batch) {
|
| if (candidate->combineIfPossible(batch, *this->caps())) {
|
| GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
|
| candidate->uniqueID());
|
| - GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, candidate);
|
| + GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, candidate, batch);
|
| return;
|
| }
|
| // Stop going backwards if we would cause a painter's order violation.
|
|
|