Index: src/gpu/GrProgramDesc.h |
diff --git a/src/gpu/GrProgramDesc.h b/src/gpu/GrProgramDesc.h |
index 9ba20aa94ae5a5de4e952472cc1de8ba2589f863..e07e116733b8a5313402d00fa0c7595c481fcef3 100644 |
--- a/src/gpu/GrProgramDesc.h |
+++ b/src/gpu/GrProgramDesc.h |
@@ -83,8 +83,7 @@ public: |
struct DescInfo { |
bool operator==(const DescInfo& that) const { |
return fReadsDst == that.fReadsDst && |
- fReadsFragPosition == that.fReadsFragPosition && |
- fRequiresLocalCoordAttrib == that.fRequiresLocalCoordAttrib; |
+ fReadsFragPosition == that.fReadsFragPosition; |
} |
bool operator!=(const DescInfo& that) const { return !(*this == that); }; |
@@ -92,7 +91,6 @@ public: |
// programs. |
bool fReadsDst; |
bool fReadsFragPosition; |
- bool fRequiresLocalCoordAttrib; |
}; |
private: |