From d2891f770285074162d68ab7dcbafb49e99261a3 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Wed, 6 Apr 2011 21:07:37 +0000
Subject: [PATCH] fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@3175 51575b47-30f0-44d4-a5cc-537603b46e54
---
 src/map.c | 24 ++++++++++++++++--------
 src/map.h |  1 +
 2 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/src/map.c b/src/map.c
index 0b1ae8a36e..db20025fda 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1294,17 +1294,25 @@ static int minimap_to_screen(lua_State *L)
 		if (map->mm_texture) glDeleteTextures(1, &(map->mm_texture));
 		if (map->minimap) free(map->minimap);
 
+		// In case we can't support NPOT textures round up to nearest POT
+		int realw=1;
+		int realh=1;
+		while (realw < mdw) realw *= 2;
+		while (realh < mdh) realh *= 2;
+
 		glGenTextures(1, &(map->mm_texture));
 		map->mm_w = mdw;
 		map->mm_h = mdh;
-		printf("C Map minimap texture: %d (%dx%d)\n", map->mm_texture, mdw, mdh);
+		map->mm_rw = realw;
+		map->mm_rh = realh;
+		printf("C Map minimap texture: %d (%dx%d; %dx%d)\n", map->mm_texture, mdw, mdh, realw, realh);
 		tglBindTexture(GL_TEXTURE_2D, map->mm_texture);
 		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
 		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
 		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
 		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
-		glTexImage2D(GL_TEXTURE_2D, 0, 4, mdw, mdh, 0, GL_BGRA, GL_UNSIGNED_BYTE, NULL);
-		map->minimap = calloc(mdw*mdh*4, sizeof(GLubyte));
+		glTexImage2D(GL_TEXTURE_2D, 0, 4, realw, realh, 0, GL_BGRA, GL_UNSIGNED_BYTE, NULL);
+		map->minimap = calloc(realw*realh*4, sizeof(GLubyte));
 	}
 
 	tglBindTexture(GL_TEXTURE_2D, map->mm_texture);
@@ -1321,7 +1329,7 @@ static int minimap_to_screen(lua_State *L)
 				if ((i < 0) || (j < 0) || (i >= map->w) || (j >= map->h)) continue;
 				map_object *mo = map->grids[i][j][z];
 				if (!mo || mo->mm_r < 0) continue;
-				ptr = (j * mdw + i) * 4;
+				ptr = (j * map->mm_rw + i) * 4;
 
 				if ((mo->on_seen && map->grids_seens[j*map->w+i]) || (mo->on_remember && map->grids_remembers[i][j]) || mo->on_unknown)
 				{
@@ -1341,14 +1349,14 @@ static int minimap_to_screen(lua_State *L)
 			}
 		}
 	}
-	glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, mdw, mdh, GL_BGRA, GL_UNSIGNED_BYTE, mm);
+	glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, map->mm_rw, map->mm_rh, GL_BGRA, GL_UNSIGNED_BYTE, mm);
 
 	// Display it
 	GLfloat texcoords[2*4] = {
 		0, 0,
-		0, 1,
-		1, 1,
-		1, 0,
+		0, (float)mdh/(float)map->mm_rh,
+		(float)mdw/(float)map->mm_rw, (float)mdh/(float)map->mm_rh,
+		(float)mdw/(float)map->mm_rw, 0,
 	};
 	GLfloat colors[4*4] = {
 		1,1,1,1,
diff --git a/src/map.h b/src/map.h
index 06216b52e3..6acf2f38ce 100644
--- a/src/map.h
+++ b/src/map.h
@@ -65,6 +65,7 @@ typedef struct {
 	GLubyte *minimap;
 	GLuint mm_texture;
 	int mm_w, mm_h;
+	int mm_rw, mm_rh;
 
 	GLfloat *vertices;
 	GLfloat *colors;
-- 
GitLab