diff options
author | Brian Paul <[email protected]> | 2002-10-08 23:59:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-08 23:59:33 +0000 |
commit | 59c5cf35c92e969f66eefd27809e72089b731701 (patch) | |
tree | 7b0abf04f0eeb0726f2e02458b527b4bea81cf86 /src/mesa/drivers/dos/dmesa.c | |
parent | 614301facaf7f9943270f227a5c6503b47871a90 (diff) |
finally get rid of ctx->Texture._ReallyEnabled field
Diffstat (limited to 'src/mesa/drivers/dos/dmesa.c')
-rw-r--r-- | src/mesa/drivers/dos/dmesa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dos/dmesa.c b/src/mesa/drivers/dos/dmesa.c index e45d00f269e..ac21e8a15f3 100644 --- a/src/mesa/drivers/dos/dmesa.c +++ b/src/mesa/drivers/dos/dmesa.c @@ -411,7 +411,7 @@ static swrast_tri_func dmesa_choose_tri_function (GLcontext *ctx) if (ctx->RenderMode != GL_RENDER) return (swrast_tri_func) NULL;
if (ctx->Polygon.SmoothFlag) return (swrast_tri_func) NULL;
- if (ctx->Texture._ReallyEnabled) return (swrast_tri_func) NULL;
+ if (ctx->Texture._EnabledUnits) return (swrast_tri_func) NULL;
if (ctx->Light.ShadeModel==GL_SMOOTH
&& swrast->_RasterMask==DEPTH_BIT
|