[Mesa-dev] [PATCH 2/2] glxinfo: fix printing core profile extensions
Marek Olšák
maraeo at gmail.com
Mon Aug 3 10:33:56 PDT 2015
From: Marek Olšák <marek.olsak at amd.com>
Nobody supports GLX 3.x.
Broken by:
commit fca824431608101298ff0735db4c09954dcf64ab
Author: Julien Isorce <j.isorce at samsung.com>
Date: Tue May 19 08:35:10 2015 +0100
glxinfo: fix segfault when core profile is unavailable
---
src/xdemos/glxinfo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/xdemos/glxinfo.c b/src/xdemos/glxinfo.c
index dc29bd9..f65451a 100644
--- a/src/xdemos/glxinfo.c
+++ b/src/xdemos/glxinfo.c
@@ -491,7 +491,7 @@ print_screen_info(Display *dpy, int scrnum,
}
/* Get list of GL extensions */
- if (coreProfile && extfuncs.GetStringi && glxVersionMajor >= 3)
+ if (coreProfile && extfuncs.GetStringi)
glExtensions = build_core_profile_extension_list(&extfuncs);
if (!glExtensions) {
coreProfile = False;
--
2.1.4
More information about the mesa-dev
mailing list