| Index: src/gpu/GrInOrderCommandBuilder.cpp
|
| diff --git a/src/gpu/GrInOrderCommandBuilder.cpp b/src/gpu/GrInOrderCommandBuilder.cpp
|
| index d8e84c035f92af16d8ec4bb4b1eeb5eedfc8b8ca..e8a5f1192443331aa5dd3d4ae3a4eae6bbf95863 100644
|
| --- a/src/gpu/GrInOrderCommandBuilder.cpp
|
| +++ b/src/gpu/GrInOrderCommandBuilder.cpp
|
| @@ -28,10 +28,13 @@ static bool path_fill_type_is_winding(const GrStencilSettings& pathStencilSettin
|
| GrTargetCommands::Cmd* GrInOrderCommandBuilder::recordDrawBatch(State* state, GrBatch* batch) {
|
| // Check if there is a Batch Draw we can batch with
|
| batch->setPipeline(state->getPipeline());
|
| + GrBATCH_INFO("In-Recording (%s, %p)\n");
|
| if (!this->cmdBuffer()->empty() &&
|
| Cmd::kDrawBatch_CmdType == this->cmdBuffer()->back().type()) {
|
| DrawBatch* previous = static_cast<DrawBatch*>(&this->cmdBuffer()->back());
|
| if (previous->fState == state && previous->fBatch->combineIfPossible(batch)) {
|
| + GrBATCH_INFO("\tBatching with (%s, %p)\n",
|
| + previous->fBatch->name(), previous->fBatch.get());
|
| return NULL;
|
| }
|
| }
|
|
|