Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
44 * This class defines concrete stencil settings that map directly to the underlying hardware. It
54 GrStencilSettings(const GrStencilSettings& that) { this->reset(that); }
55 GrStencilSettings& operator=(const GrStencilSettings& that) { this->reset(that); return *this; }
73 bool operator!=(const GrStencilSettings& that) const { return !(*this == that); }
86 // Returns the stencil settings for triangles that wind clockwise in "post-origin" space.
87 // (i.e., the space that results after a potential y-axis flip on device space for bottom-left
93 // Returns the stencil settings for triangles that wind counter-clockwise in "post-origin"
94 // space. (i.e., the space that results after a potential y-axis flip on device space for
106 // NOTE: This value is outside the declared range of GrStencilFlags, but since that type is
108 // mixing enum types in bit operations, so this works around that.