diff options
author | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
commit | ab7c6ffadccbeb96b6f4ac58fb75e90697cd30c5 (patch) | |
tree | eb7318b740cb5bcfc8b6cf530766c7cb88a8bfd4 /src/mesa/drivers/x11/glxapi.h | |
parent | 13613986004fcd43e8079b23d8128c2d572bca76 (diff) |
Remove the last remnants of GLX_BUILT_IN_XMESA. This allows the removal of
the evil, ugly GLX_PREFIX macro as well.
Diffstat (limited to 'src/mesa/drivers/x11/glxapi.h')
-rw-r--r-- | src/mesa/drivers/x11/glxapi.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/drivers/x11/glxapi.h b/src/mesa/drivers/x11/glxapi.h index 3bbdf94aa8f..3187534c9a3 100644 --- a/src/mesa/drivers/x11/glxapi.h +++ b/src/mesa/drivers/x11/glxapi.h @@ -31,12 +31,6 @@ #include "GL/glx.h" -#ifdef GLX_BUILT_IN_XMESA -/* The GLX API dispatcher (i.e. this code) is being built into XFree86's - * libGL so we'll use the __GLXContextRec defined in xc/lib/GL/glx/glxclient.h -*/ -#include "glxclient.h" -#else /* The GLX API dispatcher (i.e. this code) is being built into stand-alone * Mesa. We don't know anything about XFree86 or real GLX so we define a * minimal __GLXContextRec here so some of the functions in this file can @@ -49,7 +43,6 @@ typedef struct __GLXcontextRec { GLXDrawable currentReadable; XID xid; } __GLXcontext; -#endif /* |