diff options
| author | Pietro Gagliardi <[email protected]> | 2018-09-01 19:22:30 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2018-09-01 19:22:30 -0400 |
| commit | 9e7ee0d659dee102e8502a116648c7dddb195772 (patch) | |
| tree | f622f37c2473fa5cc87cbdeda5d02dec48adfced /image.go | |
| parent | e9874436a2e8ecd55838faf3879f68598e88a712 (diff) | |
Changed image.NRGBA to image.RGBA for Alpha 4.1.
Diffstat (limited to 'image.go')
| -rw-r--r-- | image.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ func (i *Image) Free() { } // Append adds the given image as a representation of the Image. -func (i *Image) Append(img *image.NRGBA) { +func (i *Image) Append(img *image.RGBA) { cpix := C.CBytes(img.Pix) defer C.free(cpix) C.uiImageAppend(i.i, cpix, |
