diff options
author | Daniel Borca <[email protected]> | 2004-12-06 08:11:14 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-12-06 08:11:14 +0000 |
commit | c049d4bc897f92fd25ed961f1acedaa9d33cc5af (patch) | |
tree | 9804a0d4616b21677c9ed369418ac9b28e117390 /src/mesa/main/texcompress_fxt1.c | |
parent | d033ce63da2c78044c4fbef52e8583b908637d6f (diff) |
explicit cast in a few places
Diffstat (limited to 'src/mesa/main/texcompress_fxt1.c')
-rw-r--r-- | src/mesa/main/texcompress_fxt1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texcompress_fxt1.c b/src/mesa/main/texcompress_fxt1.c index ca9b9aa0c99..57af65299de 100644 --- a/src/mesa/main/texcompress_fxt1.c +++ b/src/mesa/main/texcompress_fxt1.c @@ -327,7 +327,7 @@ typedef struct { -#define F(i) 1 /* can be used to obtain an oblong metric: 0.30 / 0.59 / 0.11 */ +#define F(i) (GLfloat)1 /* can be used to obtain an oblong metric: 0.30 / 0.59 / 0.11 */ #define SAFECDOT 1 /* for paranoids */ #define MAKEIVEC(NV, NC, IV, B, V0, V1) \ @@ -526,7 +526,7 @@ fxt1_choose (GLfloat vec[][MAX_COMP], GLint nv, for (j = 0; j < nv; j++) { for (i = 0; i < nc; i++) { - vec[j][i] = ((nv - 1 - j) * input[minCol][i] + j * input[maxCol][i] + (nv - 1) / 2) / (nv - 1); + vec[j][i] = ((nv - 1 - j) * input[minCol][i] + j * input[maxCol][i] + (nv - 1) / 2) / (GLfloat)(nv - 1); } } #endif |