Demos (master): glxinfo: fix printing core profile extensions

Marek Olšák mareko at kemper.freedesktop.org
Sun Aug 9 23:58:14 UTC 2015


Module: Demos
Branch: master
Commit: c62dd9c58c8d63dcb522f29306008cb0754b6506
URL:    http://cgit.freedesktop.org/mesa/demos/commit/?id=c62dd9c58c8d63dcb522f29306008cb0754b6506

Author: Marek Olšák <marek.olsak at amd.com>
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 <j.isorce at samsung.com>
Date:   Tue May 19 08:35:10 2015 +0100

    glxinfo: fix segfault when core profile is unavailable

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 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;




More information about the mesa-commit mailing list