summaryrefslogtreecommitdiff
path: root/src/mesa/main/get.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-02-26 23:58:12 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-02-26 23:58:12 +0000
commit6975540db26309cdfa8f27b3b6dadf3dbf4a1746 (patch)
treed9b4ee48319857f700b740edea0686dcec7c1578 /src/mesa/main/get.c
parent806e20f463c9b98b945f0095e07642362720256a (diff)
Disable most extensions by default. Drivers should enable them as needed.
Renamed gl_*() functions as _mesa_*().
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r--src/mesa/main/get.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index 63e04b1739..1cb5ebccce 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -1,4 +1,4 @@
-/* $Id: get.c,v 1.52 2001/01/24 04:56:20 brianp Exp $ */
+/* $Id: get.c,v 1.53 2001/02/26 23:58:12 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -4912,7 +4912,7 @@ _mesa_GetString( GLenum name )
case GL_VERSION:
return (const GLubyte *) version;
case GL_EXTENSIONS:
- return (const GLubyte *) gl_extensions_get_string( ctx );
+ return (const GLubyte *) _mesa_extensions_get_string( ctx );
default:
gl_error( ctx, GL_INVALID_ENUM, "glGetString" );
return (const GLubyte *) 0;