diff options
author | Brian <[email protected]> | 2007-11-30 13:01:42 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-30 13:01:42 -0700 |
commit | 1b43babfb126c6318d2f2468ec81b93ee1923774 (patch) | |
tree | 26e6ee2b5e99bbebab943041bf11e3f250fbc89b /src/mesa/main | |
parent | 43e902f774f8c3cd58310eeb44eec9d3f8f81746 (diff) |
fix broken two-sided stencil
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/context.c | 1 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 754b1a7d823..b599638c771 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -977,7 +977,6 @@ init_attrib_groups(GLcontext *ctx) /* Miscellaneous */ ctx->NewState = _NEW_ALL; ctx->ErrorValue = (GLenum) GL_NO_ERROR; - ctx->_Facing = 0; return GL_TRUE; } diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 2cc0622ec8a..96c3515dd2c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3032,12 +3032,6 @@ struct __GLcontextRec struct gl_list_extensions ListExt; /**< driver dlist extensions */ - - GLuint _Facing; /**< This is a hack for 2-sided stencil test. - * - * We don't have a better way to communicate this value from - * swrast_setup to swrast. */ - /** \name For debugging/development only */ /*@{*/ GLboolean FirstTimeCurrent; |