From 5daaad80dc16a77347c596cd8e41fb51a8753c32 Mon Sep 17 00:00:00 2001
From: faiface <faiface@ksp.sk>
Date: Fri, 20 Jan 2017 22:46:18 +0100
Subject: [PATCH] always convert image in NewPicture (Bounds)

---
 picture.go | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/picture.go b/picture.go
index 2eac45c..00b5070 100644
--- a/picture.go
+++ b/picture.go
@@ -21,13 +21,8 @@ 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 nrgba *image.NRGBA
-	if nrgbaImg, ok := img.(*image.NRGBA); ok {
-		nrgba = nrgbaImg
-	} else {
-		nrgba = image.NewNRGBA(image.Rect(0, 0, img.Bounds().Dx(), img.Bounds().Dy()))
-		draw.Draw(nrgba, nrgba.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
 	mainthread.Call(func() {
-- 
GitLab