aboutsummaryrefslogtreecommitdiff
path: root/lib/ansimage/ansimage.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-04-19 11:10:34 +0300
committerTulir Asokan <tulir@maunium.net>2018-04-19 11:10:34 +0300
commitb1dc965a4a5b8a48666749e824d0e480b9d08eed (patch)
tree5409a3cf7e02a4033a29e2ce2aa46f2297503709 /lib/ansimage/ansimage.go
parentb17ff318c26aecdcf2c6719ed5b0872be5254c44 (diff)
Gofmt
Diffstat (limited to 'lib/ansimage/ansimage.go')
-rw-r--r--lib/ansimage/ansimage.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/ansimage/ansimage.go b/lib/ansimage/ansimage.go
index 7320848..ece1f2c 100644
--- a/lib/ansimage/ansimage.go
+++ b/lib/ansimage/ansimage.go
@@ -102,13 +102,13 @@ func (ai *ANSImage) SetAt(y, x int, r, g, b, brightness uint8) error {
func (ai *ANSImage) GetAt(y, x int) (*ANSIpixel, error) {
if y >= 0 && y < ai.h && x >= 0 && x < ai.w {
return &ANSIpixel{
- R: ai.pixmap[y][x].R,
- G: ai.pixmap[y][x].G,
- B: ai.pixmap[y][x].B,
- Brightness: ai.pixmap[y][x].Brightness,
- upper: ai.pixmap[y][x].upper,
- source: ai.pixmap[y][x].source,
- },
+ R: ai.pixmap[y][x].R,
+ G: ai.pixmap[y][x].G,
+ B: ai.pixmap[y][x].B,
+ Brightness: ai.pixmap[y][x].Brightness,
+ upper: ai.pixmap[y][x].upper,
+ source: ai.pixmap[y][x].source,
+ },
nil
}
return nil, ErrOutOfBounds
@@ -170,7 +170,7 @@ func New(h, w int, bg color.Color) (*ANSImage, error) {
r, g, b, _ := bg.RGBA()
ansimage := &ANSImage{
- h: h, w: w,
+ h: h, w: w,
maxprocs: 1,
bgR: uint8(r),
bgG: uint8(g),