| Index: src/gpu/GrDrawState.h
|
| diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h
|
| index a049f1d8071e725d9dc96a3a1ac5b09a1c9dadbf..91e9fd2a954369be387342aa40ede3eeae436785 100644
|
| --- a/src/gpu/GrDrawState.h
|
| +++ b/src/gpu/GrDrawState.h
|
| @@ -260,6 +260,9 @@ public:
|
|
|
| bool hasGeometryProcessor() const { return SkToBool(fGeometryProcessor.get()); }
|
| const GrGeometryProcessor* getGeometryProcessor() const { return fGeometryProcessor.get(); }
|
| +
|
| + const GrXPFactory* getXPFactory() const { return fXPFactory.get(); }
|
| +
|
| const GrFragmentStage& getColorStage(int idx) const { return fColorStages[idx]; }
|
| const GrFragmentStage& getCoverageStage(int idx) const { return fCoverageStages[idx]; }
|
|
|
| @@ -783,6 +786,7 @@ private:
|
| GrBlendCoeff fSrcBlend;
|
| GrBlendCoeff fDstBlend;
|
| SkAutoTUnref<const GrGeometryProcessor> fGeometryProcessor;
|
| + SkAutoTUnref<const GrXPFactory> fXPFactory;
|
| FragmentStageArray fColorStages;
|
| FragmentStageArray fCoverageStages;
|
| uint32_t fHints;
|
|
|