Home | History | Annotate | Download | only in gpu

Lines Matching defs:fEnabled

15     GrScissorState() : fEnabled(false) {}
16 GrScissorState(const SkIRect& rect) : fEnabled(true), fRect(rect) {}
17 void setDisabled() { fEnabled = false; }
18 void set(const SkIRect& rect) { fRect = rect; fEnabled = true; }
20 if (!fEnabled) {
27 return fEnabled == other.fEnabled &&
28 (false == fEnabled || fRect == other.fRect);
32 bool enabled() const { return fEnabled; }
36 bool fEnabled;