diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gpu/GrStagedProcessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gpu/GrStagedProcessor.h b/include/gpu/GrStagedProcessor.h index 170283102c..a9f23b485b 100644 --- a/include/gpu/GrStagedProcessor.h +++ b/include/gpu/GrStagedProcessor.h @@ -25,7 +25,7 @@ public: const GrFragmentProcessor* processor() const { return fProc.get(); } bool operator==(const GrStagedProcessor& that) const { - return this->processor() == that.processor(); + return this->processor()->isEqual(*that.processor()); } bool operator!=(const GrStagedProcessor& that) const { return !(*this == that); } |