get rid of unused span->start field
[mesa.git] / progs / xdemos / pbinfo.c
index d4bc7e808363b45afa32238686a9961105cbb120..88d93c8da625cb21f7e024523ea8f8858c7042bd 100644 (file)
@@ -23,41 +23,22 @@ PrintConfigs(Display *dpy, int screen, Bool horizFormat)
    FBCONFIG *fbConfigs;
    int nConfigs;
    int i;
-   /* Note: you may want to tweek the attribute list to select a different
-    * set of fbconfigs.
-    */
-   int fbAttribs[] = {
-                      GLX_RENDER_TYPE, 0,
-                     GLX_DRAWABLE_TYPE, 0,
-#if 0
-                      GLX_RENDER_TYPE, GLX_RGBA_BIT,
-                     GLX_DRAWABLE_TYPE, GLX_PIXMAP_BIT,
-                     GLX_RED_SIZE, 1,
-                     GLX_GREEN_SIZE, 1,
-                     GLX_BLUE_SIZE, 1,
-                     GLX_DEPTH_SIZE, 1,
-                     GLX_DOUBLEBUFFER, 0,
-                     GLX_STENCIL_SIZE, 0,
-#endif
-                     None};
-
-
-   /* Get list of possible frame buffer configurations */
-   fbConfigs = ChooseFBConfig(dpy, screen, fbAttribs, &nConfigs);
+
+   fbConfigs = GetAllFBConfigs(dpy, screen, &nConfigs);
    if (!nConfigs || !fbConfigs) {
-      printf("Error: glxChooseFBConfig failed\n");
+      printf("Error: glxGetFBConfigs failed\n");
       return;
    }
 
    printf("Number of fbconfigs: %d\n", nConfigs);
 
    if (horizFormat) {
-      printf("  ID  VisualType  Depth Lvl RGB CI DB Stereo  R  G  B  A");
+      printf("  ID        VisualType  Depth Lvl RGB CI DB Stereo  R  G  B  A");
       printf("   Z  S  AR AG AB AA  MSbufs MSnum  Pbuffer  Float\n");
    }
 
    /* Print config info */
-   for (i=0;i<nConfigs;i++) {
+   for (i = 0; i < nConfigs; i++) {
       PrintFBConfigInfo(dpy, screen, fbConfigs[i], horizFormat);
    }