(submit/miext-extinit) glx: unexport noGlxExtension field
This field isn't used by any drivers, and also better belongs into the corresponding extension instead of OS adaption layer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
4c3c409099
commit
bb44e6fa97
|
@ -42,6 +42,8 @@
|
||||||
|
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
|
|
||||||
|
Bool noGlxExtension = FALSE;
|
||||||
|
|
||||||
ExtensionEntry *GlxExtensionEntry;
|
ExtensionEntry *GlxExtensionEntry;
|
||||||
int GlxErrorBase = 0;
|
int GlxErrorBase = 0;
|
||||||
static CallbackListRec vndInitCallbackList;
|
static CallbackListRec vndInitCallbackList;
|
||||||
|
|
|
@ -50,11 +50,15 @@ is" without express or implied warranty.
|
||||||
|
|
||||||
Bool xnestDoFullGeneration = TRUE;
|
Bool xnestDoFullGeneration = TRUE;
|
||||||
|
|
||||||
|
/* Xnest doesn't support GLX yet, so we don't link it, but still have
|
||||||
|
satisfy DIX's symbol requirements */
|
||||||
#ifdef GLXEXT
|
#ifdef GLXEXT
|
||||||
void
|
void
|
||||||
GlxExtensionInit(void)
|
GlxExtensionInit(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Bool noGlxExtension = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -56,10 +56,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#ifdef COMPOSITE
|
#ifdef COMPOSITE
|
||||||
extern _X_EXPORT Bool noCompositeExtension;
|
extern _X_EXPORT Bool noCompositeExtension;
|
||||||
#endif
|
#endif
|
||||||
#ifdef GLXEXT
|
|
||||||
extern _X_EXPORT Bool noGlxExtension;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef PANORAMIX
|
#ifdef PANORAMIX
|
||||||
extern _X_EXPORT Bool noPanoramiXExtension;
|
extern _X_EXPORT Bool noPanoramiXExtension;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -12,6 +12,7 @@ extern Bool noDamageExtension;
|
||||||
extern Bool noDbeExtension;
|
extern Bool noDbeExtension;
|
||||||
extern Bool noDPMSExtension;
|
extern Bool noDPMSExtension;
|
||||||
extern Bool noGEExtension;
|
extern Bool noGEExtension;
|
||||||
|
extern Bool noGlxExtension;
|
||||||
|
|
||||||
void CompositeExtensionInit(void);
|
void CompositeExtensionInit(void);
|
||||||
void DamageExtensionInit(void);
|
void DamageExtensionInit(void);
|
||||||
|
|
|
@ -126,9 +126,6 @@ Bool noTestExtensions;
|
||||||
#ifdef COMPOSITE
|
#ifdef COMPOSITE
|
||||||
Bool noCompositeExtension = FALSE;
|
Bool noCompositeExtension = FALSE;
|
||||||
#endif
|
#endif
|
||||||
#ifdef GLXEXT
|
|
||||||
Bool noGlxExtension = FALSE;
|
|
||||||
#endif
|
|
||||||
#ifdef SCREENSAVER
|
#ifdef SCREENSAVER
|
||||||
Bool noScreenSaverExtension = FALSE;
|
Bool noScreenSaverExtension = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue