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

  /frameworks/base/libs/hwui/
TessellationCache.cpp 69 const Shape::RoundRect& lRect = shape.roundRect;
70 const Shape::RoundRect& rRect = rhs.shape.roundRect;
435 // RoundRect
439 SkRect rect = SkRect::MakeWH(description.shape.roundRect.width,
440 description.shape.roundRect.height);
441 float rx = description.shape.roundRect.rx;
442 float ry = description.shape.roundRect.ry;
457 Description entry(Description::Type::RoundRect, transform, paint)
    [all...]
SkiaCanvasProxy.cpp 87 void SkiaCanvasProxy::onDrawRRect(const SkRRect& roundRect, const SkPaint& paint) {
88 if (!roundRect.isComplex()) {
89 const SkRect& rect = roundRect.rect();
90 SkVector radii = roundRect.getSimpleRadii();
95 path.addRRect(roundRect);
384 void SkiaCanvasProxy::onClipRRect(const SkRRect& roundRect, SkRegion::Op op, ClipEdgeStyle) {
386 path.addRRect(roundRect);
PathCache.cpp 44 static bool compareRoundRects(const PathDescription::Shape::RoundRect& lhs,
45 const PathDescription::Shape::RoundRect& rhs) {
107 case ShapeType::RoundRect:
108 return compareRoundRects(shape.roundRect, rhs.shape.roundRect);
463 PathDescription entry(ShapeType::RoundRect, paint);
464 entry.shape.roundRect.mWidth = width;
465 entry.shape.roundRect.mHeight = height;
466 entry.shape.roundRect.mRx = rx;
467 entry.shape.roundRect.mRy = ry
    [all...]
TessellationCache.h 58 RoundRect,
69 struct RoundRect {
74 } roundRect;
PathCache.h 115 RoundRect,
135 struct RoundRect {
140 } roundRect;
  /external/skia/tests/
CanvasStateTest.cpp 304 SkRRect roundRect;
305 roundRect.setOval(SkRect::MakeWH(5, 5));
307 canvas.clipRRect(roundRect, SkRegion::kIntersect_Op, true);

Completed in 58 milliseconds