diff options
author | Brian <[email protected]> | 2007-07-11 11:34:19 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-11 11:34:19 -0600 |
commit | e89bd0fbc56ecfb96f3aff926c5891c45221dd37 (patch) | |
tree | 9522b593d58a4117c21b42eab0010812dad7c62a /src/mesa/pipe/softpipe/sp_state_derived.c | |
parent | 300e97081e7e752c0ff9133149d15935baac7a46 (diff) |
Implement polygon stipple state tracking, application.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state_derived.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_state_derived.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_derived.c b/src/mesa/pipe/softpipe/sp_state_derived.c index 429ae55397e..34c893e396a 100644 --- a/src/mesa/pipe/softpipe/sp_state_derived.c +++ b/src/mesa/pipe/softpipe/sp_state_derived.c @@ -137,7 +137,12 @@ void softpipe_update_derived( struct softpipe_context *softpipe ) if (softpipe->dirty & (SP_NEW_SETUP | SP_NEW_FS)) calculate_vertex_layout( softpipe ); - if (softpipe->dirty & (SP_NEW_BLEND | SP_NEW_DEPTH_TEST | SP_NEW_ALPHA_TEST | SP_NEW_FS)) + if (softpipe->dirty & (SP_NEW_BLEND | + SP_NEW_DEPTH_TEST | + SP_NEW_ALPHA_TEST | + SP_NEW_STENCIL | + SP_NEW_SETUP | + SP_NEW_FS)) sp_build_quad_pipeline(softpipe); softpipe->dirty = 0; |