Home
last modified time | relevance | path

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

/frameworks/rs/toolkit/test/
DBufferUtils.kt119 Rgba(r + other.r, g + other.g, b + other.b, a + other.a).clampToUByteRange() in plus()
122 Rgba(r - other.r, g - other.g, b - other.b, a - other.a).clampToUByteRange() in plus()
131 private fun clampToUByteRange() = Rgba( in plus() method
132 r.clampToUByteRange(), in plus()
133 g.clampToUByteRange(), in plus()
134 b.clampToUByteRange(), in plus()
135 a.clampToUByteRange() in plus()
385 fun Int.clampToUByteRange(): Int = min(255, max(0, this)) in clampToUByteRange() method
391 fun Int.clampToUByte(): UByte = this.clampToUByteRange().toUByte() in clampToUByteRange()