Changed: Get X extensions list

This commit is contained in:
kervala 2010-11-18 21:53:34 +01:00
parent 056248fee9
commit 75a2ea5fb9

View file

@ -362,6 +362,19 @@ bool CDriverGL::init (uint windowIcon, emptyProc exitFunc)
}
#endif // HAVE_XRENDER
// list all supported extensions
sint nextensions = 0;
char **extensions = XListExtensions(_dpy, &nextensions);
std::string exts;
for(sint i = 0; i < nextensions; ++i)
exts += NLMISC::toString(" %s", extensions[i]);
XFreeExtensionList(extensions);
nlinfo("X Extensions:%s", exts.c_str());
#endif
return true;