Merge "Draw ripple effect in a circle to reduce overdraw" into sc-dev

This commit is contained in:
Lucas Dupin
2021-06-30 16:34:47 +00:00
committed by Android (Google) Code Review

View File

@@ -39,9 +39,15 @@ class ChargingRippleView(context: Context?, attrs: AttributeSet?) : View(context
var rippleInProgress: Boolean = false
var radius: Float = 0.0f
set(value) { rippleShader.radius = value }
set(value) {
rippleShader.radius = value
field = value
}
var origin: PointF = PointF()
set(value) { rippleShader.origin = value }
set(value) {
rippleShader.origin = value
field = value
}
var duration: Long = 1750
init {
@@ -94,6 +100,11 @@ class ChargingRippleView(context: Context?, attrs: AttributeSet?) : View(context
}
override fun onDraw(canvas: Canvas?) {
canvas?.drawRect(0f, 0f, width.toFloat(), height.toFloat(), ripplePaint)
// To reduce overdraw, we mask the effect to a circle whose radius is big enough to cover
// the active effect area. Values here should be kept in sync with the
// animation implementation in the ripple shader.
val maskRadius = (1 - (1 - rippleShader.progress) * (1 - rippleShader.progress) *
(1 - rippleShader.progress)) * radius * 1.5f
canvas?.drawCircle(origin.x, origin.y, maskRadius, ripplePaint)
}
}