aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrProgramDesc.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-01-13 15:02:10 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-13 15:02:10 -0800
commitabb52a1a70a81915c6196e0fb3e9bcb05e8be14d (patch)
tree418e114425f0c3d2179bab956076f4f0bcadcca7 /src/gpu/GrProgramDesc.h
parenta7f11918d92621507f35b228a290f05dcaf0f4b6 (diff)
Move most of the transform logic into the primitive processors
Diffstat (limited to 'src/gpu/GrProgramDesc.h')
-rw-r--r--src/gpu/GrProgramDesc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gpu/GrProgramDesc.h b/src/gpu/GrProgramDesc.h
index 9ba20aa94a..e07e116733 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: