Xext: drop disable flag for GE extension

There's really no practical use for disabling GEEext, would just
cause the Xserver misbehaviour (eg. missing byte swapping)

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1812>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-18 16:15:07 +01:00 committed by Marge Bot
parent a7401945c4
commit 00843efafb
3 changed files with 1 additions and 4 deletions

View File

@ -33,8 +33,6 @@
#define MAXEXTENSIONS 128
Bool noGEExtension = FALSE;
DevPrivateKeyRec GEClientPrivateKeyRec;
#define GEClientPrivateKey (&GEClientPrivateKeyRec)

View File

@ -11,7 +11,6 @@
extern Bool noDamageExtension;
extern Bool noDbeExtension;
extern Bool noDPMSExtension;
extern Bool noGEExtension;
extern Bool noGlxExtension;
extern Bool noMITShmExtension;
extern Bool noRenderExtension;

View File

@ -102,7 +102,7 @@ SOFTWARE.
/* List of built-in (statically linked) extensions */
static const ExtensionModule staticExtensions[] = {
{GEExtensionInit, "Generic Event Extension", &noGEExtension},
{GEExtensionInit, "Generic Event Extension", NULL},
{ShapeExtensionInit, "SHAPE", &noShapeExtension},
#ifdef MITSHM
{ShmExtensionInit, "MIT-SHM", &noMITShmExtension},