Home | History | Annotate | Download | only in hwui

Lines Matching refs:Path

24 import android.graphics.Path;
40 private Path[] mPaths;
57 Path.Op[] ops = Path.Op.values();
58 mPaths = new Path[ops.length];
62 Path p1 = new Path();
63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW);
65 Path p2 = new Path();
66 p2.addCircle(mSize, mSize, mSize / 2.0f, Path.Direction.CW);
69 mPaths[i] = new Path();
81 for (Path path : mPaths) {
82 canvas.drawPath(path, mPaint);