(submit/miext-extinit) dpms: unexport noDPMSExtension 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
2909832ac8
commit
88489e86b2
|
@ -47,6 +47,8 @@ Equipment Corporation.
|
|||
#include "windowstr.h"
|
||||
#include "protocol-versions.h"
|
||||
|
||||
Bool noDPMSExtension = FALSE;
|
||||
|
||||
CARD16 DPMSPowerLevel = 0;
|
||||
Bool DPMSDisabledSwitch = FALSE;
|
||||
CARD32 DPMSStandbyTime = -1;
|
||||
|
|
|
@ -17,6 +17,7 @@ is" without express or implied warranty.
|
|||
#include <X11/Xdefs.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "include/extinit_priv.h"
|
||||
#include "os/ddx_priv.h"
|
||||
|
||||
#include "screenint.h"
|
||||
|
@ -24,7 +25,6 @@ is" without express or implied warranty.
|
|||
#include "misc.h"
|
||||
#include "scrnintstr.h"
|
||||
#include "servermd.h"
|
||||
#include "extinit.h"
|
||||
|
||||
#include "xnest-xcb.h"
|
||||
|
||||
|
|
|
@ -56,10 +56,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#ifdef COMPOSITE
|
||||
extern _X_EXPORT Bool noCompositeExtension;
|
||||
#endif
|
||||
#if defined(DPMSExtension)
|
||||
extern _X_EXPORT Bool noDPMSExtension;
|
||||
#endif
|
||||
|
||||
#ifdef GLXEXT
|
||||
extern _X_EXPORT Bool noGlxExtension;
|
||||
#endif
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
extern Bool noDamageExtension;
|
||||
extern Bool noDbeExtension;
|
||||
extern Bool noDPMSExtension;
|
||||
extern Bool noGEExtension;
|
||||
|
||||
void CompositeExtensionInit(void);
|
||||
|
|
|
@ -107,6 +107,7 @@ __stdcall unsigned long GetTickCount(void);
|
|||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "include/extinit_priv.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/cmdline.h"
|
||||
#include "os/ddx_priv.h"
|
||||
|
@ -119,16 +120,13 @@ __stdcall unsigned long GetTickCount(void);
|
|||
#include "miinitext.h"
|
||||
#include "present.h"
|
||||
#include "dixstruct_priv.h"
|
||||
#include "dpmsproc.h"
|
||||
|
||||
Bool noTestExtensions;
|
||||
|
||||
#ifdef COMPOSITE
|
||||
Bool noCompositeExtension = FALSE;
|
||||
#endif
|
||||
#ifdef DPMSExtension
|
||||
#include "dpmsproc.h"
|
||||
Bool noDPMSExtension = FALSE;
|
||||
#endif
|
||||
#ifdef GLXEXT
|
||||
Bool noGlxExtension = FALSE;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue