Module: Demos Branch: master Commit: c62dd9c58c8d63dcb522f29306008cb0754b6506 URL: http://cgit.freedesktop.org/mesa/demos/commit/?id=c62dd9c58c8d63dcb522f29306008cb0754b6506
Author: Marek Olšák <[email protected]> Date: Mon Aug 3 19:12:18 2015 +0200 glxinfo: fix printing core profile extensions Nobody supports GLX 3.x. Broken by: commit fca824431608101298ff0735db4c09954dcf64ab Author: Julien Isorce <[email protected]> Date: Tue May 19 08:35:10 2015 +0100 glxinfo: fix segfault when core profile is unavailable Reviewed-by: Ian Romanick <[email protected]> --- 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
