Browse Source

explicit cast in a few places

tags/unichrome-last-xinerama
Daniel Borca 20 years ago
parent
commit
c049d4bc89
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/mesa/main/texcompress_fxt1.c

+ 2
- 2
src/mesa/main/texcompress_fxt1.c View File

@@ -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

Loading…
Cancel
Save