diff options
author | Brian Paul <[email protected]> | 2008-09-18 13:26:30 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-09-18 13:26:30 -0600 |
commit | a25e1aa0aab6bd278eefa7c0748b491c9c6ae62c (patch) | |
tree | ad5b7db25d4d24b64faed5107505ee0c0a79dae9 /src/glx/x11/glxextensions.c | |
parent | 3537da87de2601fa53eeda3e8d7fa0bca6eb6716 (diff) |
glx: remove #include "glheader.h" lines
Was only used to get the PUBLIC/USED macros.
Also, replace "GL_FALSE" with "False" in a couple places.
Diffstat (limited to 'src/glx/x11/glxextensions.c')
-rw-r--r-- | src/glx/x11/glxextensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/glxextensions.c b/src/glx/x11/glxextensions.c index e8437184722..f2b169a0e40 100644 --- a/src/glx/x11/glxextensions.c +++ b/src/glx/x11/glxextensions.c @@ -34,7 +34,7 @@ #include <string.h> #include "glapi.h" #include "glxextensions.h" -#include "simple_list.h" + #define SET_BIT(m,b) (m[ (b) / 8 ] |= (1U << ((b) % 8))) #define CLR_BIT(m,b) (m[ (b) / 8 ] &= ~(1U << ((b) % 8))) |