type image.Paletted

16 uses

	image (current package)
		image.go#L1151: type Paletted struct {
		image.go#L1163: func (p *Paletted) ColorModel() color.Model { return p.Palette }
		image.go#L1165: func (p *Paletted) Bounds() Rectangle { return p.Rect }
		image.go#L1167: func (p *Paletted) At(x, y int) color.Color {
		image.go#L1178: func (p *Paletted) RGBA64At(x, y int) color.RGBA64 {
		image.go#L1200: func (p *Paletted) PixOffset(x, y int) int {
		image.go#L1204: func (p *Paletted) Set(x, y int, c color.Color) {
		image.go#L1212: func (p *Paletted) SetRGBA64(x, y int, c color.RGBA64) {
		image.go#L1220: func (p *Paletted) ColorIndexAt(x, y int) uint8 {
		image.go#L1228: func (p *Paletted) SetColorIndex(x, y int, index uint8) {
		image.go#L1238: func (p *Paletted) SubImage(r Rectangle) Image {
		image.go#L1244: 		return &Paletted{
		image.go#L1249: 	return &Paletted{
		image.go#L1258: func (p *Paletted) Opaque() bool {
		image.go#L1282: func NewPaletted(r Rectangle, p color.Palette) *Paletted {
		image.go#L1283: 	return &Paletted{