Commit e80842cc authored by Mike Gabriel's avatar Mike Gabriel

EVI: Drop all Xserver code blocks that relate to removed EVI extension.

parent 25ffbbb2
...@@ -73,10 +73,6 @@ extern Bool noDPSExtension; ...@@ -73,10 +73,6 @@ extern Bool noDPSExtension;
extern Bool noDPMSExtension; extern Bool noDPMSExtension;
#endif #endif
#ifdef EVI
extern Bool noEVIExtension;
#endif
#ifdef GLXEXT #ifdef GLXEXT
extern Bool noGlxExtension; extern Bool noGlxExtension;
#endif #endif
......
...@@ -93,9 +93,6 @@ extern Bool noDPSExtension; ...@@ -93,9 +93,6 @@ extern Bool noDPSExtension;
#ifdef DPMSExtension #ifdef DPMSExtension
extern Bool noDPMSExtension; extern Bool noDPMSExtension;
#endif #endif
#ifdef EVI
extern Bool noEVIExtension;
#endif
#ifdef GLXEXT #ifdef GLXEXT
extern Bool noGlxExtension; extern Bool noGlxExtension;
#endif #endif
...@@ -213,9 +210,6 @@ extern void XTestExtension1Init(INITARGS); ...@@ -213,9 +210,6 @@ extern void XTestExtension1Init(INITARGS);
#ifdef SHAPE #ifdef SHAPE
extern void ShapeExtensionInit(INITARGS); extern void ShapeExtensionInit(INITARGS);
#endif #endif
#ifdef EVI
extern void EVIExtensionInit(INITARGS);
#endif
#ifdef MITSHM #ifdef MITSHM
extern void ShmExtensionInit(INITARGS); extern void ShmExtensionInit(INITARGS);
#endif #endif
...@@ -352,9 +346,6 @@ static ExtensionToggle ExtensionToggleList[] = ...@@ -352,9 +346,6 @@ static ExtensionToggle ExtensionToggleList[] =
#ifdef DPMSExtension #ifdef DPMSExtension
{ "DPMS", &noDPMSExtension }, { "DPMS", &noDPMSExtension },
#endif #endif
#ifdef EVI
{ "Extended-Visual-Information", &noEVIExtension },
#endif
#ifdef GLXEXT #ifdef GLXEXT
{ "GLX", &noGlxExtension }, { "GLX", &noGlxExtension },
#endif #endif
...@@ -475,9 +466,6 @@ InitExtensions(argc, argv) ...@@ -475,9 +466,6 @@ InitExtensions(argc, argv)
#ifdef MITSHM #ifdef MITSHM
if (!noMITShmExtension) ShmExtensionInit(); if (!noMITShmExtension) ShmExtensionInit();
#endif #endif
#ifdef EVI
if (!noEVIExtension) EVIExtensionInit();
#endif
#ifdef MULTIBUFFER #ifdef MULTIBUFFER
if (!noMultibufferExtension) MultibufferExtensionInit(); if (!noMultibufferExtension) MultibufferExtensionInit();
#endif #endif
......
...@@ -168,9 +168,6 @@ Bool noDPSExtension = FALSE; ...@@ -168,9 +168,6 @@ Bool noDPSExtension = FALSE;
#ifdef DPMSExtension #ifdef DPMSExtension
Bool noDPMSExtension = FALSE; Bool noDPMSExtension = FALSE;
#endif #endif
#ifdef EVI
Bool noEVIExtension = FALSE;
#endif
#ifdef GLXEXT #ifdef GLXEXT
Bool noGlxExtension = FALSE; Bool noGlxExtension = FALSE;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment