From eb6c6439ae23e47b79b72f3737b6d0d14e1f9f26 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 28 Sep 2000 22:44:30 +0000 Subject: removed ctx->Texture.Enabled, use ctx->Texture.ReallyEnabled instead --- src/mesa/drivers/windows/wmesa.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/drivers/windows/wmesa.c') diff --git a/src/mesa/drivers/windows/wmesa.c b/src/mesa/drivers/windows/wmesa.c index b372469288..6b2b02bc35 100644 --- a/src/mesa/drivers/windows/wmesa.c +++ b/src/mesa/drivers/windows/wmesa.c @@ -1,4 +1,4 @@ -/* $Id: wmesa.c,v 1.8 2000/09/26 20:54:13 brianp Exp $ */ +/* $Id: wmesa.c,v 1.9 2000/09/28 22:44:32 brianp Exp $ */ /* * Windows (Win32) device driver for Mesa 3.4 @@ -651,7 +651,7 @@ extern points_func choose_points_function( GLcontext* ctx ) { STARTPROFILE if (ctx->Point.Size==1.0 && !ctx->Point.SmoothFlag && ctx->RasterMask==0 - && !ctx->Texture.Enabled && ctx->Visual->RGBAflag) { + && !ctx->Texture.ReallyEnabled && ctx->Visual->RGBAflag) { ENDPROFILE(choose_points_function) return fast_rgb_points; } @@ -709,7 +709,7 @@ static line_func choose_line_function( GLcontext* ctx ) STARTPROFILE if (ctx->Line.Width==1.0 && !ctx->Line.SmoothFlag && !ctx->Line.StippleFlag && ctx->Light.ShadeModel==GL_FLAT && ctx->RasterMask==0 - && !ctx->Texture.Enabled && Current->rgb_flag) { + && !ctx->Texture.ReallyEnabled && Current->rgb_flag) { ENDPROFILE(choose_line_function) return fast_flat_rgb_line; } @@ -2851,7 +2851,7 @@ static triangle_func choose_triangle_function( GLcontext *ctx ) int depth = wmesa->cColorBits; if (ctx->Polygon.SmoothFlag) return NULL; - if (ctx->Texture.Enabled) return NULL; + if (ctx->Texture.ReallyEnabled) return NULL; if (!wmesa->db_flag) return NULL; /*if (wmesa->xm_buffer->buffer==XIMAGE)*/ { if ( ctx->Light.ShadeModel==GL_SMOOTH -- cgit v1.2.3