Index: include/gpu/GrSamplerState.h |
=================================================================== |
--- include/gpu/GrSamplerState.h (revision 3867) |
+++ include/gpu/GrSamplerState.h (working copy) |
@@ -133,9 +133,9 @@ |
return !memcmp(this, &s, bitwiseRegion) && |
((fCustomStage == s.fCustomStage) || |
(fCustomStage && s.fCustomStage && |
- (fCustomStage->getGLFactory() == |
- s.fCustomStage->getGLFactory()) && |
- fCustomStage->isEquivalent(s.fCustomStage))); |
+ (fCustomStage->getFactory() == |
+ s.fCustomStage->getFactory()) && |
+ fCustomStage->isEqual(s.fCustomStage))); |
} |
bool operator !=(const GrSamplerState& s) const { return !(*this == s); } |