D | Color.kt | 19 data class Color(val r: Float, val g: Float, val b: Float, val a: Float) { constant in com.android.server.wm.traces.common.Color 21 get() = a == 0f || r < 0 || g < 0 || b < 0 31 val EMPTY = Color(r = -1f, g = -1f, b = -1f, a = 0f) in prettyPrint() 34 val r = FloatFormatter.format(color.r) in prettyPrint() constant 38 return "r:$r g:$g b:$b a:$a" in prettyPrint()
|