diff options
author | Brian Paul <[email protected]> | 2004-01-31 19:39:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-31 19:39:04 +0000 |
commit | 6bbcae9473eb29b4621aaa344013ebf3bb59ccf5 (patch) | |
tree | 3c7071d781985fd71d742b04dc0ecff2013d7278 /src/mesa/tnl/t_vb_texgen.c | |
parent | 27ec7a5bf1e2a864ca1b9e78a7af312b08bd04f5 (diff) |
added _NEW_PROGRAM to check_state flags for pipeline stages (fixes vparray demo bug)
Diffstat (limited to 'src/mesa/tnl/t_vb_texgen.c')
-rw-r--r-- | src/mesa/tnl/t_vb_texgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_texgen.c b/src/mesa/tnl/t_vb_texgen.c index 68ee089c095..64d569a0192 100644 --- a/src/mesa/tnl/t_vb_texgen.c +++ b/src/mesa/tnl/t_vb_texgen.c @@ -678,7 +678,7 @@ static void free_texgen_data( struct tnl_pipeline_stage *stage ) const struct tnl_pipeline_stage _tnl_texgen_stage = { "texgen", /* name */ - _NEW_TEXTURE, /* when to call check() */ + _NEW_TEXTURE|_NEW_PROGRAM, /* when to call check() */ _NEW_TEXTURE, /* when to invalidate stored data */ GL_FALSE, /* active? */ 0, /* inputs */ |