diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2013-12-29 23:19:36 -0800 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2013-12-29 23:23:33 -0800 |
commit | f425d56ba41382be04366d011536ee78a03a2f33 (patch) | |
tree | 263788b7745e7b0e27019b408b23af3ff891e630 | |
parent | da031f83f741b2d0182d3b05970093e9a73fbf58 (diff) | |
download | external_mesa3d-f425d56ba41382be04366d011536ee78a03a2f33.zip external_mesa3d-f425d56ba41382be04366d011536ee78a03a2f33.tar.gz external_mesa3d-f425d56ba41382be04366d011536ee78a03a2f33.tar.bz2 |
Revert "mesa: Remove GLXContextID typedef from glx.h."
This reverts commit 136a12ac98868d82c2ae9fcc80d11044a7ec56d1.
According to belak51 on IRC, this commit broke Allegro, which would no
longer compile. Applications apparently expect the GLXContextID typedef
to exist in glx.h; removing it breaks them. A bit of searching around
the internet revealed other complaints since upgrading to Mesa 10.
Cc: "10.0" <mesa-stable@lists.freedesktop.org>
-rw-r--r-- | include/GL/glx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/GL/glx.h b/include/GL/glx.h index 62d0ede..234abc0 100644 --- a/include/GL/glx.h +++ b/include/GL/glx.h @@ -168,6 +168,7 @@ typedef XID GLXDrawable; /* GLX 1.3 and later */ typedef struct __GLXFBConfigRec *GLXFBConfig; typedef XID GLXFBConfigID; +typedef XID GLXContextID; typedef XID GLXWindow; typedef XID GLXPbuffer; |