diff options
author | Karl Schultz <[email protected]> | 2001-09-18 23:06:14 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-09-18 23:06:14 +0000 |
commit | 7b9fe820a3fba3849864682fbb1cb512362934ab (patch) | |
tree | 62fb4872296b4cb7ba0eae47fd47da994d01ada9 /src/mesa/math/m_translate.c | |
parent | c98541f54bad9c706092b1eae81739f78660b000 (diff) |
more compiler warning fixes
Diffstat (limited to 'src/mesa/math/m_translate.c')
-rw-r--r-- | src/mesa/math/m_translate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/math/m_translate.c b/src/mesa/math/m_translate.c index d12babe5b86..349c2286ea5 100644 --- a/src/mesa/math/m_translate.c +++ b/src/mesa/math/m_translate.c @@ -1,4 +1,4 @@ -/* $Id: m_translate.c,v 1.8 2001/05/09 14:12:34 keithw Exp $ */ +/* $Id: m_translate.c,v 1.9 2001/09/18 23:06:14 kschultz Exp $ */ /* * Mesa 3-D graphics library @@ -400,12 +400,12 @@ static trans_4f_func _math_trans_4f_tab[5][MAX_TYPES]; */ #define SRC GLdouble #define SRC_IDX TYPE_IDX(GL_DOUBLE) -#define TRX_3F(f,n) PTR_ELT(f,n) -#define TRX_4F(f,n) PTR_ELT(f,n) +#define TRX_3F(f,n) (GLfloat) PTR_ELT(f,n) +#define TRX_4F(f,n) (GLfloat) PTR_ELT(f,n) #define TRX_UB(ub,f,n) UNCLAMPED_FLOAT_TO_UBYTE(ub, PTR_ELT(f,n)) #define TRX_US(us,f,n) UNCLAMPED_FLOAT_TO_USHORT(us, PTR_ELT(f,n)) #define TRX_UI(f,n) (GLuint) (GLint) PTR_ELT(f,n) -#define TRX_1F(f,n) PTR_ELT(f,n) +#define TRX_1F(f,n) (GLfloat) PTR_ELT(f,n) #define SZ 4 |