diff options
author | Brian Paul <[email protected]> | 2009-03-02 11:47:52 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-02 11:49:37 -0700 |
commit | 91e61f435a71436c209934a0ece165b540aba3e0 (patch) | |
tree | 7b928dbc64441b36007d7ba45276554c927c1ee7 /src/mesa/drivers/dri/unichrome | |
parent | f352a80aec10c3faf2d84e0b35d59b4edc0395ef (diff) |
mesa: use Stencil._Enabled field instead of Stencil.Enabled
Diffstat (limited to 'src/mesa/drivers/dri/unichrome')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_state.c b/src/mesa/drivers/dri/unichrome/via_state.c index 1cef01ab033..840e4e42da9 100644 --- a/src/mesa/drivers/dri/unichrome/via_state.c +++ b/src/mesa/drivers/dri/unichrome/via_state.c @@ -1342,7 +1342,7 @@ static void viaChooseStencilState(GLcontext *ctx) { struct via_context *vmesa = VIA_CONTEXT(ctx); - if (ctx->Stencil.Enabled) { + if (ctx->Stencil._Enabled) { GLuint temp; vmesa->regEnable |= HC_HenST_MASK; |