diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-07-19 16:12:03 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-07-19 16:12:03 +0000 |
commit | 48f3bdaeb3e60455364efed4f276c1d75263595d (patch) | |
tree | 9bfa5a8c72cc88349c3845aba817eadec8280b4f | |
parent | fd28445e102800b84e49e3f2299ef7dd8af8b89d (diff) |
GLchan changes
-rw-r--r-- | src/mesa/swrast/s_pointtemp.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/swrast/s_pointtemp.h b/src/mesa/swrast/s_pointtemp.h index be20c6bfa9..1125d34ad6 100644 --- a/src/mesa/swrast/s_pointtemp.h +++ b/src/mesa/swrast/s_pointtemp.h @@ -1,4 +1,4 @@ -/* $Id: s_pointtemp.h,v 1.8 2001/05/17 09:32:17 keithw Exp $ */ +/* $Id: s_pointtemp.h,v 1.9 2001/07/19 16:12:03 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -67,14 +67,14 @@ NAME ( GLcontext *ctx, const SWvertex *vert ) const GLint z = (GLint) (vert->win[2]); #if FLAGS & RGBA - const GLint red = vert->color[0]; - const GLint green = vert->color[1]; - const GLint blue = vert->color[2]; - GLint alpha = vert->color[3]; + const GLchan red = vert->color[0]; + const GLchan green = vert->color[1]; + const GLchan blue = vert->color[2]; + GLchan alpha = vert->color[3]; #if FLAGS & SPECULAR - const GLint sRed = vert->specular[0]; - const GLint sGreen = vert->specular[1]; - const GLint sBlue = vert->specular[2]; + const GLchan sRed = vert->specular[0]; + const GLchan sGreen = vert->specular[1]; + const GLchan sBlue = vert->specular[2]; #endif #else GLint index = vert->index; @@ -236,7 +236,7 @@ NAME ( GLcontext *ctx, const SWvertex *vert ) #endif /* SMOOTH */ #if ((FLAGS & (ATTENUATE | RGBA)) == (ATTENUATE | RGBA)) - alpha = (GLint) (alpha * alphaAtten); + alpha = (GLchan) (alpha * alphaAtten); #endif #if FLAGS & SPECULAR |