mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
swrast: swrastFillInModes doesn't do 8-bit modes, so don't try
Support for 8-bit modes was removed in commits0398a26andbda208a4. However, I didn't notice code in dri_init_screen that explicitly tries to create this modes. This is structurally different from other drivers (that only create modes that match the display color depth). Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56555 Cc: Vinson Lee <vlee@freedesktop.org>
This commit is contained in:
parent
d2a6dd9a95
commit
3ec3201f31
1 changed files with 1 additions and 3 deletions
|
|
@ -192,18 +192,16 @@ swrastFillInModes(__DRIscreen *psp,
|
|||
static const __DRIconfig **
|
||||
dri_init_screen(__DRIscreen * psp)
|
||||
{
|
||||
__DRIconfig **configs8, **configs16, **configs24, **configs32;
|
||||
__DRIconfig **configs16, **configs24, **configs32;
|
||||
|
||||
TRACE;
|
||||
|
||||
psp->extensions = dri_screen_extensions;
|
||||
|
||||
configs8 = swrastFillInModes(psp, 8, 8, 0, 1);
|
||||
configs16 = swrastFillInModes(psp, 16, 16, 0, 1);
|
||||
configs24 = swrastFillInModes(psp, 24, 24, 8, 1);
|
||||
configs32 = swrastFillInModes(psp, 32, 24, 8, 1);
|
||||
|
||||
configs16 = driConcatConfigs(configs8, configs16);
|
||||
configs24 = driConcatConfigs(configs16, configs24);
|
||||
configs32 = driConcatConfigs(configs24, configs32);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue