(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:
parent
00176a7433
commit
ba80b2a91c
|
@ -61,6 +61,8 @@
|
|||
#include "inpututils.h"
|
||||
#include "extinit_priv.h"
|
||||
|
||||
Bool noTestExtensions = FALSE;
|
||||
|
||||
/* 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
|
||||
* other's memory.
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
#import "X11Application.h"
|
||||
#import "NSUserDefaults+XQuartzDefaults.h"
|
||||
|
||||
#include "include/extinit_priv.h"
|
||||
|
||||
#include "darwin.h"
|
||||
#include "quartz.h"
|
||||
#include "darwinEvents.h"
|
||||
|
@ -80,7 +82,6 @@ static dispatch_queue_t eventTranslationQueue;
|
|||
#define APPKIT_APPFLAGS_HACK 1
|
||||
#endif
|
||||
|
||||
extern Bool noTestExtensions;
|
||||
extern Bool noRenderExtension;
|
||||
|
||||
static TISInputSourceRef last_key_layout;
|
||||
|
|
|
@ -13,6 +13,7 @@ extern Bool noDbeExtension;
|
|||
extern Bool noDPMSExtension;
|
||||
extern Bool noGEExtension;
|
||||
extern Bool noGlxExtension;
|
||||
extern Bool noTestExtensions;
|
||||
|
||||
void CompositeExtensionInit(void);
|
||||
void DamageExtensionInit(void);
|
||||
|
|
|
@ -25,7 +25,6 @@ extern _X_EXPORT int monitorResolution;
|
|||
extern _X_EXPORT int defaultColorVisualClass;
|
||||
|
||||
extern _X_EXPORT int GrabInProgress;
|
||||
extern _X_EXPORT Bool noTestExtensions;
|
||||
extern _X_EXPORT char *SeatId;
|
||||
extern _X_EXPORT char *ConnectionInfo;
|
||||
extern _X_EXPORT sig_atomic_t inSignalContext;
|
||||
|
|
|
@ -122,8 +122,6 @@ __stdcall unsigned long GetTickCount(void);
|
|||
#include "dixstruct_priv.h"
|
||||
#include "dpmsproc.h"
|
||||
|
||||
Bool noTestExtensions;
|
||||
|
||||
#ifdef COMPOSITE
|
||||
Bool noCompositeExtension = FALSE;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue