Lines Matching full:that
4 * Use of this source code is governed by a BSD-style license that can be
33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
53 * Create a transformation that applies the matrix to a coord set.
78 GrCoordTransform& operator= (const GrCoordTransform& that) {
80 fMatrix = that.fMatrix;
81 fProxy = that.fProxy;
82 fNormalize = that.fNormalize;
83 fReverseY = that.fReverseY;
96 bool hasSameEffectAs(const GrCoordTransform& that) const {
97 if (fNormalize != that.fNormalize ||
98 fReverseY != that.fReverseY ||
99 !fMatrix.cheapEqualTo(that.fMatrix)) {
104 if (fProxy->underlyingUniqueID() != that.fProxy->underlyingUniqueID()) {
127 bool operator==(const GrCoordTransform& that) const;
128 bool operator!=(const GrCoordTransform& that) const;