diff options
author | Brian Paul <[email protected]> | 2009-03-02 11:46:49 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-02 11:49:37 -0700 |
commit | f352a80aec10c3faf2d84e0b35d59b4edc0395ef (patch) | |
tree | 5350d8841d162f7ef754a167da137683acfa53e0 /src/mesa/main/state.c | |
parent | 2755a27d7dd313617b6bcc48afe6a321ee3609b2 (diff) |
mesa: add ctx->Stencil._Enabled field
Only true if stenciling is enabled, and there's a stencil buffer.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 0a39279bff3..9ea932ea962 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -490,7 +490,7 @@ _mesa_update_state_locked( GLcontext *ctx ) if (new_state & _NEW_LIGHT) _mesa_update_lighting( ctx ); - if (new_state & _NEW_STENCIL) + if (new_state & (_NEW_STENCIL | _NEW_BUFFERS)) _mesa_update_stencil( ctx ); #if FEATURE_pixel_transfer |