(submit/miext-extinit) dbe: unexport noDbeExtension 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 16:56:26 +02:00
parent 21e7a265cd
commit 1e1f73938b
4 changed files with 2 additions and 8 deletions

View File

@ -53,6 +53,7 @@
#include "xace.h" #include "xace.h"
/* GLOBALS */ /* GLOBALS */
Bool noDbeExtension = FALSE;
/* These are globals for use by DDX */ /* These are globals for use by DDX */
DevPrivateKeyRec dbeScreenPrivKeyRec; DevPrivateKeyRec dbeScreenPrivKeyRec;

View File

@ -56,11 +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
#if defined(DBE)
extern _X_EXPORT Bool noDbeExtension;
#endif
#if defined(DPMSExtension) #if defined(DPMSExtension)
extern _X_EXPORT Bool noDPMSExtension; extern _X_EXPORT Bool noDPMSExtension;
#endif #endif

View File

@ -9,6 +9,7 @@
#include "extinit.h" #include "extinit.h"
extern Bool noDamageExtension; extern Bool noDamageExtension;
extern Bool noDbeExtension;
extern Bool noGEExtension; extern Bool noGEExtension;
void CompositeExtensionInit(void); void CompositeExtensionInit(void);

View File

@ -124,9 +124,6 @@ Bool noTestExtensions;
#ifdef COMPOSITE #ifdef COMPOSITE
Bool noCompositeExtension = FALSE; Bool noCompositeExtension = FALSE;
#endif #endif
#ifdef DBE
Bool noDbeExtension = FALSE;
#endif
#ifdef DPMSExtension #ifdef DPMSExtension
#include "dpmsproc.h" #include "dpmsproc.h"
Bool noDPMSExtension = FALSE; Bool noDPMSExtension = FALSE;