Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
40 GrProcessorSet::GrProcessorSet(GrProcessorSet&& that)
41 : fColorFragmentProcessor(std::move(that.fColorFragmentProcessor))
42 , fCoverageFragmentProcessor(std::move(that.fCoverageFragmentProcessor))
43 , fXP(std::move(that.fXP))
44 , fFlags(that.fFlags) {}
81 bool GrProcessorSet::operator==(const GrProcessorSet& that) const {
83 SkASSERT(that.isFinalized());
84 if (((fFlags ^ that.fFlags) & ~kFinalized_Flag) ||
85 this->hasColorFragmentProcessor() != that.hasColorFragmentProcessor() ||
86 this->hasCoverageFragmentProcessor() != that.hasCoverageFragmentProcessor()) {
91 if (!colorFragmentProcessor()->isEqual(*that.colorFragmentProcessor())) {
97 if (!coverageFragmentProcessor()->isEqual(*that.coverageFragmentProcessor())) {
103 if (!this->xferProcessor() && !that.xferProcessor()) {
109 const GrXferProcessor& thatXP = that.xferProcessor()
110 ? *that.xferProcessor()