summaryrefslogtreecommitdiff
path: root/src/glx/x11/indirect_init.c
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2004-12-01 07:34:25 +0000
committerIan Romanick <idr@us.ibm.com>2004-12-01 07:34:25 +0000
commit249a5552f122c1ae7b58d1a5f693607d04c22e05 (patch)
treefd0752599f951f535426b141e7f499a4596f6023 /src/glx/x11/indirect_init.c
parent4f0a75e7241ca1545b67ccabe007b94c8cf9b429 (diff)
Make the transition to script-genereated GLX code easier.
Convert GL_ARB_texture_compression related functions to use the extension version of the names instead of the GL 1.3 versions.
Diffstat (limited to 'src/glx/x11/indirect_init.c')
-rw-r--r--src/glx/x11/indirect_init.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/glx/x11/indirect_init.c b/src/glx/x11/indirect_init.c
index b3d6c8343c..461603a22d 100644
--- a/src/glx/x11/indirect_init.c
+++ b/src/glx/x11/indirect_init.c
@@ -541,13 +541,13 @@ __GLapi *__glXNewIndirectAPI(void)
glAPI->SampleCoverageARB = __indirect_glSampleCoverageARB;
/* ARB 12. GL_ARB_texture_compression / 1.3 */
- glAPI->GetCompressedTexImageARB = __indirect_glGetCompressedTexImage;
- glAPI->CompressedTexImage1DARB = __indirect_glCompressedTexImage1D;
- glAPI->CompressedTexImage2DARB = __indirect_glCompressedTexImage2D;
- glAPI->CompressedTexImage3DARB = __indirect_glCompressedTexImage3D;
- glAPI->CompressedTexSubImage1DARB = __indirect_glCompressedTexSubImage1D;
- glAPI->CompressedTexSubImage2DARB = __indirect_glCompressedTexSubImage2D;
- glAPI->CompressedTexSubImage3DARB = __indirect_glCompressedTexSubImage3D;
+ glAPI->GetCompressedTexImageARB = __indirect_glGetCompressedTexImageARB;
+ glAPI->CompressedTexImage1DARB = __indirect_glCompressedTexImage1DARB;
+ glAPI->CompressedTexImage2DARB = __indirect_glCompressedTexImage2DARB;
+ glAPI->CompressedTexImage3DARB = __indirect_glCompressedTexImage3DARB;
+ glAPI->CompressedTexSubImage1DARB = __indirect_glCompressedTexSubImage1DARB;
+ glAPI->CompressedTexSubImage2DARB = __indirect_glCompressedTexSubImage2DARB;
+ glAPI->CompressedTexSubImage3DARB = __indirect_glCompressedTexSubImage3DARB;
/* ARB 14. GL_ARB_point_parameters */
glAPI->PointParameterfEXT = __indirect_glPointParameterfARB;