From 64eb27449eae68a3af078ab362c044e3db3ff3f2 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 7 Feb 2025 17:18:11 +0100 Subject: [PATCH] extinit: document why no*Extension fields need to be exported. Usually no*Extension fields shouldn't be needed by drivers, but there are a few exceptions: some drivers need to know whether composite or Xinerama are active. Signed-off-by: Enrico Weigelt, metux IT consult --- include/extinit.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/extinit.h b/include/extinit.h index 2b7c05954..bbb7de345 100644 --- a/include/extinit.h +++ b/include/extinit.h @@ -53,8 +53,10 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "extnsionst.h" +/* required by: libglx */ extern _X_EXPORT Bool noCompositeExtension; +/* required by: several video drivers (eg. vmware and sis) */ #ifdef XINERAMA extern _X_EXPORT Bool noPanoramiXExtension; #endif /* XINERAMA */