mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-02 19:20:32 +01:00
Filter both visuals and fbconfigs against driver supported configs.
This commit is contained in:
parent
c9ce3e8fd2
commit
e2c2df5c23
1 changed files with 3 additions and 6 deletions
|
|
@ -635,14 +635,13 @@ __glXInitializeVisualConfigFromTags( __GLcontextModes *config, int count,
|
|||
|
||||
|
||||
#ifdef GLX_DIRECT_RENDERING
|
||||
static unsigned
|
||||
static void
|
||||
filter_modes( __GLcontextModes ** server_modes,
|
||||
const __GLcontextModes * driver_modes )
|
||||
{
|
||||
__GLcontextModes * m;
|
||||
__GLcontextModes ** prev_next;
|
||||
const __GLcontextModes * check;
|
||||
unsigned modes_count = 0;
|
||||
|
||||
if ( driver_modes == NULL ) {
|
||||
fprintf(stderr, "libGL warning: 3D driver returned no fbconfigs.\n");
|
||||
|
|
@ -684,12 +683,9 @@ filter_modes( __GLcontextModes ** server_modes,
|
|||
_gl_context_modes_destroy( m );
|
||||
}
|
||||
else {
|
||||
modes_count++;
|
||||
prev_next = & m->next;
|
||||
}
|
||||
}
|
||||
|
||||
return modes_count;
|
||||
}
|
||||
|
||||
#ifdef XDAMAGE_1_1_INTERFACE
|
||||
|
|
@ -954,7 +950,8 @@ CallCreateNewScreen(Display *dpy, int scrn, __GLXscreenConfigs *psc,
|
|||
& driver_modes );
|
||||
|
||||
filter_modes(&psc->configs, driver_modes);
|
||||
_gl_context_modes_destroy( driver_modes );
|
||||
filter_modes(&psc->visuals, driver_modes);
|
||||
_gl_context_modes_destroy(driver_modes);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue