Lines Matching full:that
4 * Use of this source code is governed by a BSD-style license that can be
36 GrSamplerState& operator=(const GrSamplerState& that) {
37 fWrapModes[0] = that.fWrapModes[0];
38 fWrapModes[1] = that.fWrapModes[1];
39 fFilter = that.fFilter;
57 bool operator==(const GrSamplerState& that) const {
58 return fWrapModes[0] == that.fWrapModes[0] && fWrapModes[1] == that.fWrapModes[1] &&
59 fFilter == that.fFilter;
62 bool operator!=(const GrSamplerState& that) const { return !(*this == that); }