diff options
author | Ian Romanick <idr@us.ibm.com> | 2006-09-14 14:17:57 -0700 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2006-09-14 14:17:57 -0700 |
commit | e37b97e0392affea38cdddbcc279e6a69b7a13bd (patch) | |
tree | cc7af2a7a4fe7a62e634c28174ea1179af08ba57 | |
parent | 786f411fedfcd556399437e11c5a401758da193b (diff) |
Use correct opcodes for GLX_EXT_texture_from_pixmap.glproto-1.4.8
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | glxproto.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 6aba115..8bbb1fd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.57]) -AC_INIT([GLProto], [1.4.7], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_INIT([GLProto], [1.4.8], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) XORG_RELEASE_VERSION @@ -2369,6 +2369,8 @@ typedef struct { /* Opcodes for GLX vendor private commands */ #define X_GLXvop_QueryContextInfoEXT 1024 +#define X_GLXvop_BindTexImageEXT 1330 +#define X_GLXvop_ReleaseTexImageEXT 1331 #define X_GLXvop_SwapIntervalSGI 65536 #define X_GLXvop_MakeCurrentReadSGI 65537 #define X_GLXvop_CreateGLXVideoSourceSGIX 65538 @@ -2387,8 +2389,6 @@ typedef struct { #define X_GLXvop_QueryHyperpipeConfigSGIX 65551 #define X_GLXvop_HyperpipeConfigSGIX 65552 #define X_GLXvop_DestroyHyperpipeConfigSGIX 65553 -#define X_GLXvop_BindTexImageEXT 5152 -#define X_GLXvop_ReleaseTexImageEXT 5153 /* ARB extension opcodes */ |