| Index: src/gpu/GrInOrderCommandBuilder.cpp
|
| diff --git a/src/gpu/GrInOrderCommandBuilder.cpp b/src/gpu/GrInOrderCommandBuilder.cpp
|
| index 6cd60822c6b4c459148effd454d478714db1e0cf..d8e84c035f92af16d8ec4bb4b1eeb5eedfc8b8ca 100644
|
| --- a/src/gpu/GrInOrderCommandBuilder.cpp
|
| +++ b/src/gpu/GrInOrderCommandBuilder.cpp
|
| @@ -7,8 +7,9 @@
|
|
|
| #include "GrInOrderCommandBuilder.h"
|
|
|
| +#include "GrBufferedDrawTarget.h"
|
| +
|
| #include "GrColor.h"
|
| -#include "GrInOrderDrawBuffer.h"
|
| #include "SkPoint.h"
|
|
|
| static bool path_fill_type_is_winding(const GrStencilSettings& pathStencilSettings) {
|
| @@ -67,7 +68,7 @@ GrInOrderCommandBuilder::recordDrawPath(State* state,
|
|
|
| GrTargetCommands::Cmd*
|
| GrInOrderCommandBuilder::recordDrawPaths(State* state,
|
| - GrInOrderDrawBuffer* iodb,
|
| + GrBufferedDrawTarget* bufferedDrawTarget,
|
| const GrPathProcessor* pathProc,
|
| const GrPathRange* pathRange,
|
| const void* indexValues,
|
| @@ -84,9 +85,9 @@ GrInOrderCommandBuilder::recordDrawPaths(State* state,
|
| char* savedIndices;
|
| float* savedTransforms;
|
|
|
| - iodb->appendIndicesAndTransforms(indexValues, indexType,
|
| - transformValues, transformType,
|
| - count, &savedIndices, &savedTransforms);
|
| + bufferedDrawTarget->appendIndicesAndTransforms(indexValues, indexType,
|
| + transformValues, transformType,
|
| + count, &savedIndices, &savedTransforms);
|
|
|
| if (!this->cmdBuffer()->empty() &&
|
| Cmd::kDrawPaths_CmdType == this->cmdBuffer()->back().type()) {
|
|
|