mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
This is needed to get proton working in Xfbdev, but is probably useful in other places too. Xephyr has some unrelated issues regaring Xinput, so steam doesn't work there. Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
74 lines
2.0 KiB
C
74 lines
2.0 KiB
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 1996 Thomas E. Dickey <dickey@clark.net>
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_EXTINIT_PRIV_H
|
|
#define _XSERVER_EXTINIT_PRIV_H
|
|
|
|
#include "extinit.h"
|
|
|
|
#ifdef DRI2
|
|
#include <X11/extensions/dri2proto.h>
|
|
extern Bool noDRI2Extension;
|
|
void DRI2ExtensionInit(void);
|
|
#endif
|
|
|
|
/* required by: the 470 and 390 nvidia DDX drivers */
|
|
extern _X_EXPORT Bool noDamageExtension;
|
|
|
|
extern Bool noDbeExtension;
|
|
extern Bool noDPMSExtension;
|
|
extern Bool noGlxExtension;
|
|
extern Bool noMITShmExtension;
|
|
extern Bool noRenderExtension;
|
|
extern Bool noResExtension;
|
|
extern Bool noRRExtension;
|
|
extern Bool noScreenSaverExtension;
|
|
extern Bool noSecurityExtension;
|
|
extern Bool noSELinuxExtension;
|
|
extern Bool noShapeExtension;
|
|
extern Bool noTestExtensions;
|
|
extern Bool noXFixesExtension;
|
|
extern Bool noXFree86BigfontExtension;
|
|
extern Bool noNamespaceExtension;
|
|
|
|
extern Bool PanoramiXExtensionDisabledHack;
|
|
|
|
extern Bool noPseudoramiXExtension;
|
|
|
|
extern char *namespaceConfigFile;
|
|
|
|
void CompositeExtensionInit(void);
|
|
void DamageExtensionInit(void);
|
|
void DbeExtensionInit(void);
|
|
void DPMSExtensionInit(void);
|
|
void GEExtensionInit(void);
|
|
void GlxExtensionInit(void);
|
|
void PanoramiXExtensionInit(void);
|
|
void RRExtensionInit(void);
|
|
void RecordExtensionInit(void);
|
|
void RenderExtensionInit(void);
|
|
void ResExtensionInit(void);
|
|
void ScreenSaverExtensionInit(void);
|
|
void ShapeExtensionInit(void);
|
|
void ShmExtensionInit(void);
|
|
void SyncExtensionInit(void);
|
|
void XCMiscExtensionInit(void);
|
|
void SecurityExtensionInit(void);
|
|
void XFree86BigfontExtensionInit(void);
|
|
void BigReqExtensionInit(void);
|
|
void XFixesExtensionInit(void);
|
|
void XInputExtensionInit(void);
|
|
void XkbExtensionInit(void);
|
|
void SELinuxExtensionInit(void);
|
|
void XTestExtensionInit(void);
|
|
void XvExtensionInit(void);
|
|
void XvMCExtensionInit(void);
|
|
void dri3_extension_init(void);
|
|
void PseudoramiXExtensionInit(void);
|
|
void present_extension_init(void);
|
|
void NamespaceExtensionInit(void);
|
|
|
|
#endif /* _XSERVER_EXTINIT_PRIV_H */
|