Commit a2354cd4 authored by Rob Pike's avatar Rob Pike

image: fix build

accidentally deleted one method
TBR=rsc

R=rsc
CC=golang-dev
https://golang.org/cl/4438090
parent 2398a74b
...@@ -280,6 +280,13 @@ func (p *Alpha) At(x, y int) Color { ...@@ -280,6 +280,13 @@ func (p *Alpha) At(x, y int) Color {
return p.Pix[y*p.Stride+x] return p.Pix[y*p.Stride+x]
} }
func (p *Alpha) Set(x, y int, c AlphaColor) {
if !p.Rect.Contains(Point{x, y}) {
return
}
p.Pix[y*p.Stride+x] = toAlphaColor(c).(AlphaColor)
}
func (p *Alpha) SetAlpha(x, y int, c AlphaColor) { func (p *Alpha) SetAlpha(x, y int, c AlphaColor) {
if !p.Rect.Contains(Point{x, y}) { if !p.Rect.Contains(Point{x, y}) {
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment