Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
24 constexpr GrSwizzle& operator=(const GrSwizzle& that);
28 constexpr bool operator==(const GrSwizzle& that) const { return fKey == that.fKey; }
29 constexpr bool operator!=(const GrSwizzle& that) const { return !(*this == that); }
73 constexpr GrSwizzle::GrSwizzle(const GrSwizzle& that)
74 : fKey(that.fKey) {}
76 constexpr GrSwizzle& GrSwizzle::operator=(const GrSwizzle& that) {
77 fKey = that.fKey;
83 // Index of the input color that should be mapped to output r.