Home | History | Annotate | Download | only in gpu

Lines Matching refs:GrClip

16  * GrClip encapsulates the information required to construct the clip
17 * masks. 'A GrClip is either wide open, just an IRect, just a Rect, or a full clipstack.
23 * NOTE: GrClip *must* point to a const clipstack
25 class GrClip : SkNoncopyable {
27 GrClip() : fClipType(kWideOpen_ClipType) {
31 GrClip(const SkIRect& rect) : fClipType(kIRect_ClipType) {
36 GrClip(const SkRect& rect) : fClipType(kIRect_ClipType) {
44 ~GrClip() { this->reset(); }
46 const GrClip& operator=(const GrClip& other) {
65 bool operator==(const GrClip& other) const {
92 bool operator!=(const GrClip& other) const {
165 static const GrClip& WideOpen();