From 6ee7a02852e45efbfe2843c450dd72243f703430 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 22 Jan 2002 18:40:46 +0000 Subject: added missing IsEnabled() cases for fog coord and secondary color arrays --- src/mesa/main/enable.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/mesa/main') diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index abeb35a..755f74a 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.55 2002/01/11 17:26:54 brianp Exp $ */ +/* $Id: enable.c,v 1.56 2002/01/22 18:40:46 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1069,6 +1069,12 @@ _mesa_IsEnabled( GLenum cap ) return (ctx->Array.TexCoord[ctx->Array.ActiveTexture].Enabled != 0); case GL_EDGE_FLAG_ARRAY: return (ctx->Array.EdgeFlag.Enabled != 0); + case GL_FOG_COORDINATE_ARRAY_EXT: + CHECK_EXTENSION(EXT_fog_coord); + return (ctx->Array.FogCoord.Enabled != 0); + case GL_SECONDARY_COLOR_ARRAY_EXT: + CHECK_EXTENSION(EXT_secondary_color); + return (ctx->Array.SecondaryColor.Enabled != 0); /* GL_EXT_histogram */ case GL_HISTOGRAM: -- cgit v1.1