summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-08-10 17:04:03 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-08-10 17:04:03 +0000
commit8c9cd63c89923e7c3cb751a1f24038c199d226d8 (patch)
treeb69f2f3e0600abf4a5b57ba357527ddad1645761 /src/mesa/main/mtypes.h
parent63c9ebeaff0f238368b59cbe1cb6dc9bbf7cba7d (diff)
the PIXEL_MAP_I_TO_I table should be GLfloat, not GLint
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 956fc9971e..a91c64e2fe 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -926,7 +926,7 @@ struct gl_pixel_attrib
GLint MapBtoBsize;
GLint MapAtoAsize;
GLint MapStoS[MAX_PIXEL_MAP_TABLE]; /**< Pixel map tables */
- GLint MapItoI[MAX_PIXEL_MAP_TABLE];
+ GLfloat MapItoI[MAX_PIXEL_MAP_TABLE];
GLfloat MapItoR[MAX_PIXEL_MAP_TABLE];
GLfloat MapItoG[MAX_PIXEL_MAP_TABLE];
GLfloat MapItoB[MAX_PIXEL_MAP_TABLE];