Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
19 * Produced by GrHardClip. It provides a set of modifications to the hardware drawing state that
38 GrAppliedHardClip(GrAppliedHardClip&& that) = default;
78 bool operator==(const GrAppliedHardClip& that) const {
79 return fScissorState == that.fScissorState &&
80 fWindowRectsState == that.fWindowRectsState &&
81 fStencilStackID == that.fStencilStackID;
83 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
92 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip.
104 GrAppliedClip(GrAppliedClip&& that) = default;
137 bool operator==(const GrAppliedClip& that) const {
138 if (fHardClip != that.fHardClip ||
139 this->hasCoverageFragmentProcessor() != that.hasCoverageFragmentProcessor()) {
142 if (fCoverageFP != nullptr && !fCoverageFP->isEqual(*that.fCoverageFP)) {
147 bool operator!=(const GrAppliedClip& that) const { return !(*this == that); }