(submit/miext-extinit) xtest: unexport noTestExtensions 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:
Enrico Weigelt, metux IT consult 2024-05-02 17:09:21 +02:00
parent bb44e6fa97
commit 948e288d2c
5 changed files with 5 additions and 4 deletions

View File

@ -60,6 +60,8 @@
#include "inpututils.h" #include "inpututils.h"
#include "extinit_priv.h" #include "extinit_priv.h"
Bool noTestExtensions = FALSE;
/* XTest events are sent during request processing and may be interrupted by /* XTest events are sent during request processing and may be interrupted by
* a SIGIO. We need a separate event list to avoid events overwriting each * a SIGIO. We need a separate event list to avoid events overwriting each
* other's memory. * other's memory.

View File

@ -37,6 +37,8 @@
#import "X11Application.h" #import "X11Application.h"
#import "NSUserDefaults+XQuartzDefaults.h" #import "NSUserDefaults+XQuartzDefaults.h"
#include "include/extinit_priv.h"
#include "darwin.h" #include "darwin.h"
#include "quartz.h" #include "quartz.h"
#include "darwinEvents.h" #include "darwinEvents.h"
@ -80,7 +82,6 @@ static dispatch_queue_t eventTranslationQueue;
#define APPKIT_APPFLAGS_HACK 1 #define APPKIT_APPFLAGS_HACK 1
#endif #endif
extern Bool noTestExtensions;
extern Bool noRenderExtension; extern Bool noRenderExtension;
static TISInputSourceRef last_key_layout; static TISInputSourceRef last_key_layout;

View File

@ -13,6 +13,7 @@ extern Bool noDbeExtension;
extern Bool noDPMSExtension; extern Bool noDPMSExtension;
extern Bool noGEExtension; extern Bool noGEExtension;
extern Bool noGlxExtension; extern Bool noGlxExtension;
extern Bool noTestExtensions;
void CompositeExtensionInit(void); void CompositeExtensionInit(void);
void DamageExtensionInit(void); void DamageExtensionInit(void);

View File

@ -25,7 +25,6 @@ extern _X_EXPORT int monitorResolution;
extern _X_EXPORT int defaultColorVisualClass; extern _X_EXPORT int defaultColorVisualClass;
extern _X_EXPORT int GrabInProgress; extern _X_EXPORT int GrabInProgress;
extern _X_EXPORT Bool noTestExtensions;
extern _X_EXPORT char *SeatId; extern _X_EXPORT char *SeatId;
extern _X_EXPORT char *ConnectionInfo; extern _X_EXPORT char *ConnectionInfo;
extern _X_EXPORT sig_atomic_t inSignalContext; extern _X_EXPORT sig_atomic_t inSignalContext;

View File

@ -121,8 +121,6 @@ __stdcall unsigned long GetTickCount(void);
#include "dixstruct_priv.h" #include "dixstruct_priv.h"
#include "dpmsproc.h" #include "dpmsproc.h"
Bool noTestExtensions;
#ifdef COMPOSITE #ifdef COMPOSITE
Bool noCompositeExtension = FALSE; Bool noCompositeExtension = FALSE;
#endif #endif