diff options
author | Ben Crossman <[email protected]> | 2005-04-14 19:54:15 +0000 |
---|---|---|
committer | Ben Crossman <[email protected]> | 2005-04-14 19:54:15 +0000 |
commit | 369404299c6e23ee0cc4b572c95e5533314064d7 (patch) | |
tree | 2828f42f0b7202362589231808f22094b751ef4d /src/mesa/tnl/t_context.c | |
parent | b2b01a60dbba4ebd130898509c14ca80a847a679 (diff) |
A few getenv() that werent using the mesa wrapper version
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index 531e639e845..f76f546b814 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -82,7 +82,7 @@ _tnl_CreateContext( GLcontext *ctx ) return GL_FALSE; } - if (getenv("MESA_CODEGEN")) + if (_mesa_getenv("MESA_CODEGEN")) tnl->AllowCodegen = GL_TRUE; /* Initialize the VB. |