Home | History | Annotate | Download | only in gpu

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
25 GrAppliedHardClip(GrAppliedHardClip&& that) = default;
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
75 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip.
80 GrAppliedClip(GrAppliedClip&& that) = default;
108 bool operator==(const GrAppliedClip& that) const {
109 if (fHardClip != that.fHardClip ||
110 fClipCoverageFPs.count() != that.fClipCoverageFPs.count()) {
114 if (!fClipCoverageFPs[i] || !that.fClipCoverageFPs[i]) {
115 if (fClipCoverageFPs[i] == that.fClipCoverageFPs[i]) {
120 if (!fClipCoverageFPs[i]->isEqual(*that.fClipCoverageFPs[i])) {
126 bool operator!=(const GrAppliedClip& that) const { return !(*this == that); }