diff options
author | Brian Paul <[email protected]> | 2005-09-21 02:47:32 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-21 02:47:32 +0000 |
commit | 3e37bafab0a339021354b9c78f983d05d433d735 (patch) | |
tree | 624d1c39e30f8a74bf0860f9389cd772f9dfe0f5 /src/mesa/swrast/s_linetemp.h | |
parent | 4092fbd55ac92a59d09d5167ced328683bed049c (diff) |
replace GLdepth with GLuint and remove GLdepth
Diffstat (limited to 'src/mesa/swrast/s_linetemp.h')
-rw-r--r-- | src/mesa/swrast/s_linetemp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_linetemp.h b/src/mesa/swrast/s_linetemp.h index af7aeabf629..f7c5ab49237 100644 --- a/src/mesa/swrast/s_linetemp.h +++ b/src/mesa/swrast/s_linetemp.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * - * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -354,7 +354,7 @@ NAME( GLcontext *ctx, const SWvertex *vert0, const SWvertex *vert1 ) for (i = 0; i < dx; i++) { #ifdef DEPTH_TYPE - GLdepth Z = FixedToDepth(span.z); + GLuint Z = FixedToDepth(span.z); #endif #ifdef PLOT PLOT( x0, y0 ); @@ -394,7 +394,7 @@ NAME( GLcontext *ctx, const SWvertex *vert0, const SWvertex *vert1 ) for (i=0;i<dy;i++) { #ifdef DEPTH_TYPE - GLdepth Z = FixedToDepth(span.z); + GLuint Z = FixedToDepth(span.z); #endif #ifdef PLOT PLOT( x0, y0 ); |