diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 22:31:35 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 22:31:35 +0000 |
commit | feb06c8d9ab8b4aa7590ebb1ae8a702ea62e1c57 (patch) | |
tree | 17f0a154134dc19b8598f88f7872f1f7d1c0c573 /src/mesa/main/extensions.c | |
parent | bfa012d98517174a38cb056060ebb21d6fe3cf4e (diff) |
GL_EXT_blend_color is now DEFAULT_ON
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index d7f09ba203..48b6dc90d4 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,10 +1,10 @@ -/* $Id: extensions.c,v 1.16 1999/12/10 20:01:06 brianp Exp $ */ +/* $Id: extensions.c,v 1.17 2000/02/23 22:31:35 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.3 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -49,7 +49,7 @@ struct extension { static struct { int enabled; const char *name; } default_extensions[] = { - { ALWAYS_ENABLED, "GL_EXT_blend_color" }, + { DEFAULT_ON, "GL_EXT_blend_color" }, { DEFAULT_OFF, "ARB_imaging" }, { DEFAULT_ON, "GL_EXT_blend_minmax" }, { DEFAULT_ON, "GL_EXT_blend_logic_op" }, |