| Index: src/gpu/GrPipelineBuilder.h
|
| diff --git a/src/gpu/GrPipelineBuilder.h b/src/gpu/GrPipelineBuilder.h
|
| index cb69756b693c2907dcb252f857ce6390454cf5fb..01e6485d32c814a2c9608ab8020778747a856acc 100644
|
| --- a/src/gpu/GrPipelineBuilder.h
|
| +++ b/src/gpu/GrPipelineBuilder.h
|
| @@ -98,6 +98,18 @@ public:
|
| params));
|
| }
|
|
|
| + //---
|
| + void addColorTextureProcessor(GrTextureProxy* texture, const SkMatrix& matrix);
|
| + void addCoverageTextureProcessor(GrTextureProxy* texture, const SkMatrix& matrix);
|
| +
|
| + void addColorTextureProcessor(GrTextureProxy* texture,
|
| + const SkMatrix& matrix,
|
| + const GrTextureParams& params);
|
| + void addCoverageTextureProcessor(GrTextureProxy* texture,
|
| + const SkMatrix& matrix,
|
| + const GrTextureParams& params);
|
| + //---
|
| +
|
| /**
|
| * When this object is destroyed it will remove any color/coverage FPs from the pipeline builder
|
| * that were added after its constructor.
|
|
|