(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:
parent
baae5b19a6
commit
b8d22a1306
|
@ -57,6 +57,8 @@ static DevPrivateKeyRec DamageClientPrivateKeyRec;
|
|||
|
||||
#define DamageClientPrivateKey (&DamageClientPrivateKeyRec)
|
||||
|
||||
Bool noDamageExtension = FALSE;
|
||||
|
||||
static void
|
||||
DamageNoteCritical(ClientPtr pClient)
|
||||
{
|
||||
|
|
|
@ -57,10 +57,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
extern _X_EXPORT Bool noCompositeExtension;
|
||||
#endif
|
||||
|
||||
#ifdef DAMAGE
|
||||
extern _X_EXPORT Bool noDamageExtension;
|
||||
#endif
|
||||
|
||||
#if defined(DBE)
|
||||
extern _X_EXPORT Bool noDbeExtension;
|
||||
#endif
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include "extinit.h"
|
||||
|
||||
extern Bool noDamageExtension;
|
||||
extern Bool noGEExtension;
|
||||
|
||||
void CompositeExtensionInit(void);
|
||||
|
|
|
@ -125,10 +125,6 @@ Bool noTestExtensions;
|
|||
#ifdef COMPOSITE
|
||||
Bool noCompositeExtension = FALSE;
|
||||
#endif
|
||||
|
||||
#ifdef DAMAGE
|
||||
Bool noDamageExtension = FALSE;
|
||||
#endif
|
||||
#ifdef DBE
|
||||
Bool noDbeExtension = FALSE;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue