Home
last modified time | relevance | path

Searched defs:RGBA64 (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/image/
Dimage.go236 type RGBA64 struct { struct
239 Pix []uint8
241 Stride int
243 Rect Rectangle
246 func (p *RGBA64) ColorModel() color.Model { return color.RGBA64Model }
248 func (p *RGBA64) Bounds() Rectangle { return p.Rect }
250 func (p *RGBA64) At(x, y int) color.Color {
254 func (p *RGBA64) RGBA64At(x, y int) color.RGBA64 {
270 func (p *RGBA64) PixOffset(x, y int) int {
274 func (p *RGBA64) Set(x, y int, c color.Color) {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/image/color/
Dcolor.go47 type RGBA64 struct { struct
48 R, G, B, A uint16
51 func (c RGBA64) RGBA() (r, g, b, a uint32) {
/aosp_15_r20/prebuilts/go/linux-x86/src/image/draw/
Ddraw.go33 SetRGBA64(x, y int, c color.RGBA64)