| Index: include/gpu/GrDrawContext.h
|
| diff --git a/include/gpu/GrDrawContext.h b/include/gpu/GrDrawContext.h
|
| index 458ee4f539715abbfe0a07725756193a28d7c262..1f5b3d2d2b988f1f8b27a36b61e73dbdfd3925ec 100644
|
| --- a/include/gpu/GrDrawContext.h
|
| +++ b/include/gpu/GrDrawContext.h
|
| @@ -258,14 +258,6 @@ public:
|
| */
|
| void drawBatch(const GrClip&, const GrPaint&, GrDrawBatch*);
|
|
|
| - /**
|
| - * Draws a path batch. This needs to be separate from drawBatch because we install path stencil
|
| - * settings late.
|
| - *
|
| - * TODO: Figure out a better model that allows us to roll this method into drawBatch.
|
| - */
|
| - void drawPathBatch(const GrPipelineBuilder&, GrDrawPathBatchBase*);
|
| -
|
| int width() const { return fRenderTarget->width(); }
|
| int height() const { return fRenderTarget->height(); }
|
| int numColorSamples() const { return fRenderTarget->numColorSamples(); }
|
| @@ -294,6 +286,7 @@ protected:
|
|
|
| private:
|
| friend class GrAtlasTextBlob; // for access to drawBatch
|
| + friend class GrStencilAndCoverTextContext; // for access to drawBatch
|
| friend class GrDrawingManager; // for ctor
|
| friend class GrDrawContextPriv;
|
|
|
|
|