(src *image.RGBA)
| 174 | } |
| 175 | |
| 176 | func copyRGBA(src *image.RGBA) *image.RGBA { |
| 177 | dst := image.NewRGBA(src.Bounds()) |
| 178 | copy(dst.Pix, src.Pix) |
| 179 | return dst |
| 180 | } |
| 181 | |
| 182 | func uniformRGBA(r image.Rectangle, c color.Color) *image.RGBA { |
| 183 | im := image.NewRGBA(r) |
no outgoing calls
no test coverage detected
searching dependent graphs…