diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-04-19 11:10:34 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-04-19 11:10:34 +0300 |
commit | b1dc965a4a5b8a48666749e824d0e480b9d08eed (patch) | |
tree | 5409a3cf7e02a4033a29e2ce2aa46f2297503709 /lib/ansimage | |
parent | b17ff318c26aecdcf2c6719ed5b0872be5254c44 (diff) |
Gofmt
Diffstat (limited to 'lib/ansimage')
-rw-r--r-- | lib/ansimage/ansimage.go | 16 | ||||
-rw-r--r-- | lib/ansimage/doc.go | 1 |
2 files changed, 8 insertions, 9 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), diff --git a/lib/ansimage/doc.go b/lib/ansimage/doc.go index 56bc0c5..d1898a7 100644 --- a/lib/ansimage/doc.go +++ b/lib/ansimage/doc.go @@ -9,4 +9,3 @@ // // This package is licensed under the Mozilla Public License v2.0. package ansimage - |