Home | History | Annotate | Download | only in graphics

Lines Matching refs:Paint

37         private Paint mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
51 Paint paint) {
57 canvas.drawPath(mPath, paint);
62 Paint paint = mPaint;
68 paint.setAntiAlias(true);
70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);