diff options
author | Brian Paul <[email protected]> | 2002-01-22 14:35:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-22 14:35:16 +0000 |
commit | 4c8fadc6d996c8c433826c4c763104b7d69cf7e5 (patch) | |
tree | 3e85b89009cf5beaf25c28bbe3748f1c90ef9cab /src/mesa/tnl/t_vb_points.c | |
parent | 9b681dcc17c9c6d25aa40fa59cd617ae911cf988 (diff) |
Clean-up/renaming of the per-vertex attribute bits, specifically, the
VERT_BIT_* flags are new and used in many places (esp in T&L code).
Updated some comments for doxygen.
Various code clean-ups.
Diffstat (limited to 'src/mesa/tnl/t_vb_points.c')
-rw-r--r-- | src/mesa/tnl/t_vb_points.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vb_points.c b/src/mesa/tnl/t_vb_points.c index a6757a8bf0b..21832d47e88 100644 --- a/src/mesa/tnl/t_vb_points.c +++ b/src/mesa/tnl/t_vb_points.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_points.c,v 1.7 2002/01/06 20:39:19 brianp Exp $ */ +/* $Id: t_vb_points.c,v 1.8 2002/01/22 14:35:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -114,8 +114,8 @@ const struct gl_pipeline_stage _tnl_point_attenuation_stage = _NEW_POINT, /* build_state_change */ _NEW_POINT, /* run_state_change */ GL_FALSE, /* active */ - VERT_EYE, /* inputs */ - VERT_POINT_SIZE, /* outputs */ + VERT_BIT_EYE, /* inputs */ + VERT_BIT_POINT_SIZE, /* outputs */ 0, /* changed_inputs (temporary value) */ NULL, /* stage private data */ free_point_data, /* destructor */ |