Lines Matching refs:width
32 PathTexture* RoundRectShapeCache::getRoundRect(float width, float height,
34 RoundRectShapeCacheEntry entry(width, height, rx, ry, paint);
40 r.set(0.0f, 0.0f, width, height);
79 PathTexture* OvalShapeCache::getOval(float width, float height, SkPaint* paint) {
80 OvalShapeCacheEntry entry(width, height, paint);
86 r.set(0.0f, 0.0f, width, height);
103 PathTexture* RectShapeCache::getRect(float width, float height, SkPaint* paint) {
104 RectShapeCacheEntry entry(width, height, paint);
109 path.addRect(0.0f, 0.0f, width, height, SkPath::kCW_Direction);
125 PathTexture* ArcShapeCache::getArc(float width, float height,
127 ArcShapeCacheEntry entry(width, height, startAngle, sweepAngle, useCenter, paint);
133 r.set(0.0f, 0.0f, width, height);