Home
last modified time | relevance | path

Searched refs:mCutoutPath (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
DSignalDrawable.java73 private final Path mCutoutPath = new Path(); field in SignalDrawable
198 mCutoutPath.reset(); in draw()
199 mCutoutPath.setFillType(FillType.WINDING); in draw()
213 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
218 mCutoutPath.moveTo(width, height); in draw()
219 mCutoutPath.rLineTo(-cutX, 0); in draw()
220 mCutoutPath.rLineTo(0, -cutY); in draw()
221 mCutoutPath.rLineTo(cutX, 0); in draw()
222 mCutoutPath.rLineTo(0, cutY); in draw()
223 canvas.drawPath(mCutoutPath, mTransparentPaint); in draw()
[all …]