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

  /external/skia/src/animator/
SkBoundable.h 30 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; }
31 void setBounds(SkIRect& bounds) { fBounds = bounds; }
33 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
34 SkIRect fBounds;
SkDisplayList.h 66 SkIRect fBounds;
  /external/skia/tests/
ParsePathTest.cpp 26 SkRect fBounds;
39 const SkRect& expectedBounds = gRec[i].fBounds;
  /external/skia/include/core/
SkMask.h 56 SkIRect fBounds;
62 bool isEmpty() const { return fBounds.isEmpty(); }
78 x,y are in the same coordiate space as fBounds.
82 SkASSERT(fBounds.contains(x, y));
84 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
89 x,y are in the same coordiate space as fBounds.
93 SkASSERT(fBounds.contains(x, y));
95 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes
    [all...]
SkPath.h 158 return fBounds;
579 mutable SkRect fBounds;
SkRegion.h 79 const SkIRect& getBounds() const { return fBounds; }
157 SkASSERT(this->isEmpty() == fBounds.isEmpty()); // valid region
161 /* fBounds.contains(left, top, right, bottom); */
162 fBounds.fLeft <= left && fBounds.fTop <= top &&
163 fBounds.fRight >= right && fBounds.fBottom >= bottom;
173 !SkIRect::Intersects(fBounds, rect);
182 !SkIRect::Intersects(fBounds, rgn.fBounds);
    [all...]

Completed in 1160 milliseconds