Chromium Code Reviews| Index: src/gpu/GrDrawState.h |
| diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h |
| index 454390cfbc651382e833f4fd3ec841f40916d62d..2aff00a26102396d80264abf03bc456fb9c5e0c9 100644 |
| --- a/src/gpu/GrDrawState.h |
| +++ b/src/gpu/GrDrawState.h |
| @@ -449,6 +449,15 @@ public: |
| } |
| } |
| + const GrProcOptInfo& colorProcInfo() const { |
|
bsalomon
2014/11/13 22:04:57
puhpuhpuhpublic?
Can this somehow only be exposed
egdaniel
2014/11/14 15:36:30
we already friend ODS for other reasons, so not an
|
| + this->calcColorInvariantOutput(); |
| + return fColorProcInfo; |
| + } |
| + const GrProcOptInfo& coverageProcInfo() const { |
| + this->calcCoverageInvariantOutput(); |
| + return fCoverageProcInfo; |
| + } |
| + |
| /// @} |
| /////////////////////////////////////////////////////////////////////////// |