diff options
author | Brian Paul <[email protected]> | 2001-03-07 05:06:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-07 05:06:11 +0000 |
commit | b51b0a847d7e7daaea69f77ab569086ef81c24a2 (patch) | |
tree | 165cf8b023e6c7b1f66dacc46a6c37110ef27ea7 /src/mesa/math/m_eval.c | |
parent | 249aebdd357d20f6326137c967c6b3923bef6c05 (diff) |
fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots of potential problems
Diffstat (limited to 'src/mesa/math/m_eval.c')
-rw-r--r-- | src/mesa/math/m_eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/math/m_eval.c b/src/mesa/math/m_eval.c index a4ae0395cad..c182bbff01b 100644 --- a/src/mesa/math/m_eval.c +++ b/src/mesa/math/m_eval.c @@ -1,4 +1,4 @@ -/* $Id: m_eval.c,v 1.1 2000/12/26 05:09:31 keithw Exp $ */ +/* $Id: m_eval.c,v 1.2 2001/03/07 05:06:12 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -89,7 +89,7 @@ _math_horner_bezier_curve(const GLfloat *cp, GLfloat *out, GLfloat t, for(i=2, cp+=2*dim, powert=t*t; i<order; i++, powert*=t, cp +=dim) { bincoeff *= order-i; - bincoeff *= inv_tab[i]; + bincoeff *= (GLuint) inv_tab[i]; for(k=0; k<dim; k++) out[k] = s*out[k] + bincoeff*powert*cp[k]; @@ -147,7 +147,7 @@ _math_horner_bezier_surf(GLfloat *cn, GLfloat *out, GLfloat u, GLfloat v, i++, poweru*=u, ucp +=uinc) { bincoeff *= uorder-i; - bincoeff *= inv_tab[i]; + bincoeff *= (GLuint) inv_tab[i]; for(k=0; k<dim; k++) cp[j*dim+k] = s*cp[j*dim+k] + bincoeff*poweru*ucp[k]; |