From: Adam Jackson Date: Tue, 22 Jan 2008 19:57:20 +0000 (-0500) Subject: glxinfo: Fix multisample visual reporting. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1ae5b89fce51ce1138a5cbe93caa0e1fccf219f;p=mesa.git glxinfo: Fix multisample visual reporting. strstr() == 0 tests for the string _not_ being present. Originally Red Hat bug #351871. --- diff --git a/progs/xdemos/glxinfo.c b/progs/xdemos/glxinfo.c index db7d1ed08e7..35b6ed16b09 100644 --- a/progs/xdemos/glxinfo.c +++ b/progs/xdemos/glxinfo.c @@ -657,7 +657,7 @@ get_visual_attribs(Display *dpy, XVisualInfo *vInfo, /* multisample attribs */ #ifdef GLX_ARB_multisample - if (ext && strstr(ext, "GLX_ARB_multisample") == 0) { + if (ext && strstr(ext, "GLX_ARB_multisample")) { glXGetConfig(dpy, vInfo, GLX_SAMPLE_BUFFERS_ARB, &attribs->numMultisample); glXGetConfig(dpy, vInfo, GLX_SAMPLES_ARB, &attribs->numSamples); }