diff options
author | Jon Taylor <[email protected]> | 2000-10-28 10:02:44 +0000 |
---|---|---|
committer | Jon Taylor <[email protected]> | 2000-10-28 10:02:44 +0000 |
commit | 1aa958bc9cbca2d2274124d131968b51ee72d7ed (patch) | |
tree | b420fa67dd3384eec1a704fe40cbf07b7e7ac6c8 /src/mesa/drivers/ggi/default | |
parent | 1c4b3f4dfbd71dfd0d414ecad1499bf44d31a919 (diff) |
Lots of misc. bugfixes to bring GGIMesa in sync with the latest Mesa sources.
Diffstat (limited to 'src/mesa/drivers/ggi/default')
-rw-r--r-- | src/mesa/drivers/ggi/default/stubs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/ggi/default/stubs.c b/src/mesa/drivers/ggi/default/stubs.c index f377532efd7..f9df294ee42 100644 --- a/src/mesa/drivers/ggi/default/stubs.c +++ b/src/mesa/drivers/ggi/default/stubs.c @@ -389,7 +389,7 @@ triangle_func ggiGetTriangleFunc(GLcontext *ctx) if (ctx->Stencil.Enabled) return NULL; if (ctx->Polygon.SmoothFlag) return NULL; if (ctx->Polygon.StippleFlag) return NULL; - if (ctx->Texture.Enabled) return NULL; + if (ctx->Texture.ReallyEnabled) return NULL; if (ctx->Light.ShadeModel==GL_SMOOTH) return NULL; if (ctx->Depth.Test && ctx->Depth.Func != GL_LESS) return NULL; |