| Index: src/gpu/GrPipeline.h
|
| diff --git a/src/gpu/GrPipeline.h b/src/gpu/GrPipeline.h
|
| index 2d909be482c73587454221a387e4eca9558b6d34..fbfe119ac0dedebef3a9b93bea08059740858b02 100644
|
| --- a/src/gpu/GrPipeline.h
|
| +++ b/src/gpu/GrPipeline.h
|
| @@ -150,6 +150,7 @@ public:
|
| ///////////////////////////////////////////////////////////////////////////
|
|
|
| bool readsFragPosition() const { return fReadsFragPosition; }
|
| + bool ignoresCoverage() const { return fIgnoresCoverage; }
|
|
|
| private:
|
| GrPipeline() { /** Initialized in factory function*/ }
|
| @@ -189,6 +190,7 @@ private:
|
| ProgramXferProcessor fXferProcessor;
|
| FragmentProcessorArray fFragmentProcessors;
|
| bool fReadsFragPosition;
|
| + bool fIgnoresCoverage;
|
|
|
| // This value is also the index in fFragmentProcessors where coverage processors begin.
|
| int fNumColorProcessors;
|
|
|