diff options
author | Brian Paul <[email protected]> | 2001-09-14 21:30:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-14 21:30:31 +0000 |
commit | edf8c06270a0e62f33e3f45e1f0307acfeff3b5d (patch) | |
tree | 6da442d6083e6948895479866c884d60392bb7e5 /src/mesa/tnl/t_context.h | |
parent | 7cc49c2dc84ce17a9b4cc1a376da74515a724c92 (diff) |
more warning fixes (Karl Schultz)
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index afa7b3fe001..ed8eafe635d 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -1,4 +1,4 @@ -/* $Id: t_context.h,v 1.31 2001/08/01 05:10:42 keithw Exp $ */ +/* $Id: t_context.h,v 1.32 2001/09/14 21:30:31 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -104,8 +104,8 @@ /* Flags for IM->TexCoordSize. Enough flags for 16 units. */ -#define TEX_0_SIZE_3 0x1 -#define TEX_0_SIZE_4 0x1001 +#define TEX_0_SIZE_3 (GLuint) 0x1 +#define TEX_0_SIZE_4 (GLuint) 0x1001 #define TEX_SIZE_3(unit) (TEX_0_SIZE_3<<unit) #define TEX_SIZE_4(unit) (TEX_0_SIZE_4<<unit) |