(submit/miext-extinit) damageext: unexport noDamageExtension 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:53:04 +02:00
parent baae5b19a6
commit b8d22a1306
4 changed files with 3 additions and 8 deletions

View File

@ -57,6 +57,8 @@ static DevPrivateKeyRec DamageClientPrivateKeyRec;
#define DamageClientPrivateKey (&DamageClientPrivateKeyRec) #define DamageClientPrivateKey (&DamageClientPrivateKeyRec)
Bool noDamageExtension = FALSE;
static void static void
DamageNoteCritical(ClientPtr pClient) DamageNoteCritical(ClientPtr pClient)
{ {

View File

@ -57,10 +57,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
extern _X_EXPORT Bool noCompositeExtension; extern _X_EXPORT Bool noCompositeExtension;
#endif #endif
#ifdef DAMAGE
extern _X_EXPORT Bool noDamageExtension;
#endif
#if defined(DBE) #if defined(DBE)
extern _X_EXPORT Bool noDbeExtension; extern _X_EXPORT Bool noDbeExtension;
#endif #endif

View File

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

View File

@ -125,10 +125,6 @@ Bool noTestExtensions;
#ifdef COMPOSITE #ifdef COMPOSITE
Bool noCompositeExtension = FALSE; Bool noCompositeExtension = FALSE;
#endif #endif
#ifdef DAMAGE
Bool noDamageExtension = FALSE;
#endif
#ifdef DBE #ifdef DBE
Bool noDbeExtension = FALSE; Bool noDbeExtension = FALSE;
#endif #endif