diff options
author | Brian Paul <brianp@vmware.com> | 2009-03-02 11:47:52 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-03-02 11:49:37 -0700 |
commit | 91e61f435a71436c209934a0ece165b540aba3e0 (patch) | |
tree | 7b928dbc64441b36007d7ba45276554c927c1ee7 /src/mesa/drivers/common | |
parent | f352a80aec10c3faf2d84e0b35d59b4edc0395ef (diff) | |
download | external_mesa3d-91e61f435a71436c209934a0ece165b540aba3e0.zip external_mesa3d-91e61f435a71436c209934a0ece165b540aba3e0.tar.gz external_mesa3d-91e61f435a71436c209934a0ece165b540aba3e0.tar.bz2 |
mesa: use Stencil._Enabled field instead of Stencil.Enabled
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/driverfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c index 986f751..9bee212 100644 --- a/src/mesa/drivers/common/driverfuncs.c +++ b/src/mesa/drivers/common/driverfuncs.c @@ -308,7 +308,7 @@ _mesa_init_driver_state(GLcontext *ctx) ctx->Driver.Enable(ctx, GL_LINE_SMOOTH, ctx->Line.SmoothFlag); ctx->Driver.Enable(ctx, GL_POLYGON_STIPPLE, ctx->Polygon.StippleFlag); ctx->Driver.Enable(ctx, GL_SCISSOR_TEST, ctx->Scissor.Enabled); - ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil.Enabled); + ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil._Enabled); ctx->Driver.Enable(ctx, GL_TEXTURE_1D, GL_FALSE); ctx->Driver.Enable(ctx, GL_TEXTURE_2D, GL_FALSE); ctx->Driver.Enable(ctx, GL_TEXTURE_RECTANGLE_NV, GL_FALSE); |