diff options
author | Brian Paul <[email protected]> | 2001-02-26 23:58:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-02-26 23:58:12 +0000 |
commit | 6975540db26309cdfa8f27b3b6dadf3dbf4a1746 (patch) | |
tree | d9b4ee48319857f700b740edea0686dcec7c1578 /src/mesa/main/get.c | |
parent | 806e20f463c9b98b945f0095e07642362720256a (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 63e04b17398..1cb5ebccceb 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; |