(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
f649517ea8
commit
21e7a265cd
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -124,10 +124,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
|
||||||
|
|
Loading…
Reference in New Issue