Lines Matching refs:that
21 constexpr GrSwizzle(const GrSwizzle& that) in GrSwizzle() argument
22 : fSwiz{that.fSwiz[0], that.fSwiz[1], that.fSwiz[2], that.fSwiz[3], '\0'} in GrSwizzle()
23 , fKey(that.fKey) {}
25 constexpr GrSwizzle& operator=(const GrSwizzle& that) {
26 fSwiz[0] = that.fSwiz[0];
27 fSwiz[1] = that.fSwiz[1];
28 fSwiz[2] = that.fSwiz[2];
29 fSwiz[3] = that.fSwiz[3];
31 fKey = that.fKey;
45 constexpr bool operator==(const GrSwizzle& that) const { return fKey == that.fKey; }
46 constexpr bool operator!=(const GrSwizzle& that) const { return !(*this == that); }