[Mesa-dev] [PATCH 2/2] glxinfo: fix printing core profile extensions
Ian Romanick
idr at freedesktop.org
Mon Aug 3 10:49:57 PDT 2015
This patch is
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
On 08/03/2015 10:33 AM, Marek Olšák wrote:
> 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;
>
More information about the mesa-dev
mailing list