diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2000-11-20 13:39:36 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2000-11-20 13:39:36 +0000 |
commit | 2ac294e67f4c94e0f72ef3ccae45ee628b84d117 (patch) | |
tree | c4999793820bde7a5b81dc655d1ff80681785fdd /src/mesa/tnl | |
parent | 1487b3ea3ed0d30fa70655247e65d0ede3eef3af (diff) |
fix lvalue cast on ctx->swtnl_im
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index 992c2a58f9..3fb2bd99a8 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -1,5 +1,5 @@ -/* $Id: t_context.h,v 1.1 2000/11/16 21:05:42 keithw Exp $ */ +/* $Id: t_context.h,v 1.2 2000/11/20 13:39:36 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -621,7 +621,7 @@ extern struct immediate *_mesa_CurrentInput; #define GET_IMMEDIATE struct immediate *IM = _mesa_CurrentInput #define SET_IMMEDIATE(ctx, im) \ do { \ - TNL_CURRENT_IM(ctx) = im; \ + ctx->swtnl_im = (void *)im; \ _mesa_CurrentInput = im; \ } while (0) #endif |