type image/color.RGBA
9 uses
image/color (current package)
color.go#L26: type RGBA struct {
color.go#L30: func (c RGBA) RGBA() (r, g, b, a uint32) {
color.go#L177: if _, ok := c.(RGBA); ok {
color.go#L181: return RGBA{uint8(r >> 8), uint8(g >> 8), uint8(b >> 8), uint8(a >> 8)}
image
image.go#L124: func (p *RGBA) RGBAAt(x, y int) color.RGBA {
image.go#L126: return color.RGBA{}
image.go#L130: return color.RGBA{s[0], s[1], s[2], s[3]}
image.go#L144: c1 := color.RGBAModel.Convert(c).(color.RGBA)
image.go#L164: func (p *RGBA) SetRGBA(x, y int, c color.RGBA) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |