HomeSort by relevance Sort by last modified time
    Searched defs:SkClipStack (Results 1 - 4 of 4) sorted by null

  /external/skia/legacy/include/core/
SkClipStack.h 17 class SK_API SkClipStack {
19 SkClipStack();
20 SkClipStack(const SkClipStack& b);
21 ~SkClipStack() {}
23 SkClipStack& operator=(const SkClipStack& b);
24 bool operator==(const SkClipStack& b) const;
25 bool operator!=(const SkClipStack& b) const { return !(*this == b); }
49 B2FIter(const SkClipStack& stack)
    [all...]
  /external/skia/legacy/src/core/
SkClipStack.cpp 8 #include "SkClipStack.h"
12 struct SkClipStack::Rec {
77 SkClipStack::SkClipStack() : fDeque(sizeof(Rec)) {
81 SkClipStack::SkClipStack(const SkClipStack& b) : fDeque(sizeof(Rec)) {
85 SkClipStack& SkClipStack::operator=(const SkClipStack& b)
    [all...]
  /external/skia/src/core/
SkClipStack.cpp 8 #include "SkClipStack.h"
17 int32_t SkClipStack::gGenID = kFirstUnreservedGenID;
19 void SkClipStack::Element::invertShapeFillType() {
34 void SkClipStack::Element::checkEmpty() const {
42 bool SkClipStack::Element::canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const {
54 bool SkClipStack::Element::rectRectIntersectAllowed(const SkRect& newR, bool newAA) const {
82 void SkClipStack::Element::combineBoundsDiff(FillCombo combination, const SkRect& prevFinite) {
119 SkDEBUGFAIL("SkClipStack::Element::combineBoundsDiff Invalid fill combination");
124 void SkClipStack::Element::combineBoundsXOR(int combination, const SkRect& prevFinite) {
151 SkDEBUGFAIL("SkClipStack::Element::combineBoundsXOR Invalid fill combination")
    [all...]
  /external/skia/include/core/
SkClipStack.h 24 class SK_API SkClipStack {
159 friend class SkClipStack;
178 SkClipStack::BoundsType fFiniteBoundType;
234 // All Element methods below are only used within SkClipStack.cpp
259 SkClipStack();
260 SkClipStack(const SkClipStack& b);
261 explicit SkClipStack(const SkRect& r);
262 explicit SkClipStack(const SkIRect& r);
263 ~SkClipStack();
    [all...]

Completed in 722 milliseconds