mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 17:29:06 +00:00
Changed: Get X extensions list
This commit is contained in:
parent
056248fee9
commit
75a2ea5fb9
1 changed files with 13 additions and 0 deletions
|
@ -362,6 +362,19 @@ bool CDriverGL::init (uint windowIcon, emptyProc exitFunc)
|
||||||
}
|
}
|
||||||
#endif // HAVE_XRENDER
|
#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
|
#endif
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue