diff options
author | Ian Romanick <[email protected]> | 2004-12-01 07:34:25 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-12-01 07:34:25 +0000 |
commit | 249a5552f122c1ae7b58d1a5f693607d04c22e05 (patch) | |
tree | fd0752599f951f535426b141e7f499a4596f6023 /src/glx/x11/indirect_init.c | |
parent | 4f0a75e7241ca1545b67ccabe007b94c8cf9b429 (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.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/glx/x11/indirect_init.c b/src/glx/x11/indirect_init.c index b3d6c8343cf..461603a22d7 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; |