Index: src/gpu/GrProcOptInfo.h |
diff --git a/src/gpu/GrProcOptInfo.h b/src/gpu/GrProcOptInfo.h |
index 30b286f3ae8fc02993145fe0d437f3680c0bef55..43d6c558f1d4749c158b8be1bb0495d3d07218ca 100644 |
--- a/src/gpu/GrProcOptInfo.h |
+++ b/src/gpu/GrProcOptInfo.h |
@@ -28,7 +28,6 @@ public: |
, fFirstEffectStageIndex(0) |
, fInputColorIsUsed(true) |
, fInputColor(0) |
- , fRemoveVertexAttrib(false) |
, fReadsDst(false) |
, fReadsFragPosition(false) {} |
@@ -76,12 +75,6 @@ public: |
GrColor inputColorToEffectiveStage() const { return fInputColor; } |
/** |
- * Given the set of optimizations determined by GrProcOptInfo, should the caller remove the |
- * color/coverage vertex attribute that was input to the first stage. |
- */ |
- bool removeVertexAttrib() const { return fRemoveVertexAttrib; } |
- |
- /** |
* Returns true if any of the stages preserved by GrProcOptInfo read the dst color. |
*/ |
bool readsDst() const { return fReadsDst; } |
@@ -98,7 +91,6 @@ private: |
int fFirstEffectStageIndex; |
bool fInputColorIsUsed; |
GrColor fInputColor; |
- bool fRemoveVertexAttrib; |
bool fReadsDst; |
bool fReadsFragPosition; |
}; |