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

  /external/skia/include/effects/
SkRectShape.h 59 SkRect fBounds;
  /external/skia/include/text/
SkTextLayout.h 48 SkRect fBounds;
  /external/skia/src/animator/
SkBoundable.h 22 bool hasBounds() { return fBounds.fLeft != (int16_t)0x8000U; }
23 void setBounds(SkIRect& bounds) { fBounds = bounds; }
25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
26 SkIRect fBounds;
SkDisplayList.h 58 SkIRect fBounds;
  /external/skia/tests/
ParsePathTest.cpp 33 SkRect fBounds;
46 const SkRect& expectedBounds = gRec[i].fBounds;
  /external/skia/include/gpu/
GrGlyph.h 31 GrIRect16 fBounds;
38 fBounds.set(bounds);
49 int width() const { return fBounds.width(); }
50 int height() const { return fBounds.height(); }
51 bool isEmpty() const { return fBounds.isEmpty(); }
  /external/skia/include/core/
SkMask.h 34 SkIRect fBounds;
40 bool isEmpty() const { return fBounds.isEmpty(); }
56 x,y are in the same coordiate space as fBounds.
60 SkASSERT(fBounds.contains(x, y));
62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
67 x,y are in the same coordiate space as fBounds.
71 SkASSERT(fBounds.contains(x, y));
73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes
    [all...]
SkRegion.h 86 const SkIRect& getBounds() const { return fBounds; }
187 SkASSERT(this->isEmpty() == fBounds.isEmpty()); // valid region
191 /* fBounds.contains(left, top, right, bottom); */
192 fBounds.fLeft <= left && fBounds.fTop <= top &&
193 fBounds.fRight >= right && fBounds.fBottom >= bottom;
203 !SkIRect::Intersects(fBounds, rect);
213 !SkIRect::Intersects(fBounds, rgn.fBounds);
    [all...]
SkPath.h 254 return fBounds;
744 mutable SkRect fBounds;
  /external/skia/src/core/
SkAAClip.h 30 const SkIRect& getBounds() const { return fBounds; }
79 SkIRect fBounds;
SkAAClip.cpp 136 fTop = fBottom = clip.fBounds.fBottom;
147 fTop = clip.fBounds.fTop;
148 fBottom = clip.fBounds.fTop + fCurrYOff->fY + 1;
188 SkASSERT(fBounds.isEmpty());
199 const int lastY = fBounds.height() - 1;
211 size_t rowLength = compute_row_length(row, fBounds.width());
394 const int width = fBounds.width();
425 fBounds.fLeft += leftZeros;
426 fBounds.fRight -= riteZeros;
427 SkASSERT(!fBounds.isEmpty())
    [all...]
  /external/skia/samplecode/
SampleWarp.cpp 219 const SkRect& bounds() const { return fBounds; }
231 SkRect fBounds;
251 fBounds = src.fBounds;
272 fBounds = bounds;

Completed in 305 milliseconds