From 6cb3121d0e59af8c6782e2e9e87a2844b4f4f54a Mon Sep 17 00:00:00 2001
From: faiface <faiface@ksp.sk>
Date: Fri, 20 Jan 2017 19:26:28 +0100
Subject: [PATCH] minor change (rename variables)

---
 picture.go | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/picture.go b/picture.go
index 97cc61b..2eac45c 100644
--- a/picture.go
+++ b/picture.go
@@ -21,12 +21,12 @@ type Picture struct {
 // NewPicture creates a new picture from an image.Image.
 func NewPicture(img image.Image, smooth bool) *Picture {
 	// convert the image to NRGBA format
-	var rgba *image.NRGBA
-	if rgbaImg, ok := img.(*image.NRGBA); ok {
-		rgba = rgbaImg
+	var nrgba *image.NRGBA
+	if nrgbaImg, ok := img.(*image.NRGBA); ok {
+		nrgba = nrgbaImg
 	} else {
-		rgba = image.NewNRGBA(image.Rect(0, 0, img.Bounds().Dx(), img.Bounds().Dy()))
-		draw.Draw(rgba, rgba.Bounds(), img, img.Bounds().Min, draw.Src)
+		nrgba = image.NewNRGBA(image.Rect(0, 0, img.Bounds().Dx(), img.Bounds().Dy()))
+		draw.Draw(nrgba, nrgba.Bounds(), img, img.Bounds().Min, draw.Src)
 	}
 
 	var texture *pixelgl.Texture
@@ -35,7 +35,7 @@ func NewPicture(img image.Image, smooth bool) *Picture {
 			img.Bounds().Dx(),
 			img.Bounds().Dy(),
 			smooth,
-			rgba.Pix,
+			nrgba.Pix,
 		)
 	})
 
-- 
GitLab