Searched refs:fLoc (Results 1 – 6 of 6) sorted by relevance
/external/skia/src/gpu/ |
D | GrRectanizer.cpp | 39 GrIPoint16 fLoc; member 43 return fLoc.fX + width <= containerWidth; in canAddWidth() 62 row->fLoc.set(0, fNextStripY); in initRow() 107 *loc = row->fLoc; in addRect() 108 row->fLoc.fX += width; in addRect() 110 GrAssert(row->fLoc.fX <= this->width()); in addRect() 111 GrAssert(row->fLoc.fY <= this->height()); in addRect()
|
D | GrRectanizer_fifo.cpp | 39 GrIPoint16 fLoc; member 43 return fLoc.fX + width <= containerWidth; in canAddWidth() 62 row->fLoc.set(0, fNextStripY); in initRow() 107 *loc = row->fLoc; in addRect() 108 row->fLoc.fX += width; in addRect() 110 GrAssert(row->fLoc.fX <= this->width()); in addRect() 111 GrAssert(row->fLoc.fY <= this->height()); in addRect()
|
/external/skia/src/views/ |
D | SkView.cpp | 16 fLoc.set(0, 0); in SkView() 81 if (fLoc.fX != x || fLoc.fY != y) in setLoc() 84 fLoc.set(x, y); in setLoc() 92 this->setLoc(fLoc.fX + dx, fLoc.fY + dy); in offset() 107 r.set(fLoc.fX, fLoc.fY, fLoc.fX + fWidth, fLoc.fY + fHeight); in draw() 119 canvas->translate(fLoc.fX, fLoc.fY); in draw() 173 rect->offset(view->fLoc.fX, view->fLoc.fY); in inval() 617 matrix->preTranslate(-view->fLoc.fX, -view->fLoc.fY); in localToGlobal()
|
/external/skia/include/views/ |
D | SkView.h | 91 SkScalar locX() const { return fLoc.fX; } in locX() 93 SkScalar locY() const { return fLoc.fY; } in locY() 97 void setLocX(SkScalar x) { this->setLoc(x, fLoc.fY); } in setLocX() 98 void setLocY(SkScalar y) { this->setLoc(fLoc.fX, y); } in setLocY() 361 SkPoint fLoc; variable
|
/external/skia/src/animator/ |
D | SkDrawExtraPathEffect.cpp | 242 fLoc = loc; in next() 289 value->fOperand.fScalar = (&shape2D->fLoc.fX)[index]; in Get2D() 297 SkPoint fLoc; member in SkShape2DPathEffect
|
/external/skia/src/core/ |
D | SkDraw.cpp | 1665 mutable SkPoint fLoc; member in TextMapState 1682 state.fProc(state.fMatrix, *pos, state.fY, &state.fLoc); in MapXProc() 1686 state.fProc(state.fMatrix, pos[0], pos[1], &state.fLoc); in MapXYProc() 1691 state.fLoc.set(SkScalarMul(state.fScaleX, *pos) + state.fTransX, in MapOnlyScaleXProc() 1697 state.fLoc.set(*pos + state.fTransX, state.fTransformedY); in MapOnlyTransXProc() 1785 SkFixed fx = SkScalarToFixed(tms.fLoc.fX); in drawPosText() 1786 SkFixed fy = SkScalarToFixed(tms.fLoc.fY); in drawPosText() 1788 SkFixed fx = SkScalarToFixed(tms.fLoc.fX) + (SK_FixedHalf >> SkGlyph::kSubBits); in drawPosText() 1789 SkFixed fy = SkScalarToFixed(tms.fLoc.fY) + (SK_FixedHalf >> SkGlyph::kSubBits); in drawPosText() 1824 alignProc(tms.fLoc, *glyph, &fixedLoc); in drawPosText() [all …]
|