[Mesa-dev] [PATCH] pipe-loader: fix driinfo for software and non-radeonsi drivers
Nicolai Hähnle
nhaehnle at gmail.com
Wed Aug 2 09:43:55 UTC 2017
From: Nicolai Hähnle <nicolai.haehnle at amd.com>
Fixes: 678dadf1237 ("gallium: move driinfo XML to pipe_loader")
--
My bad for never actually testing another driver... this should fix it.
---
src/gallium/auxiliary/pipe-loader/pipe_loader.c | 2 ++
src/gallium/state_trackers/dri/drisw.c | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.c b/src/gallium/auxiliary/pipe-loader/pipe_loader.c
index 39d33d8..6d9aceb 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader.c
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.c
@@ -51,7 +51,9 @@ static int (*backends[])(struct pipe_loader_device **, int) = {
};
const char gallium_driinfo_xml[] =
+ DRI_CONF_BEGIN
#include "driinfo_gallium.h"
+ DRI_CONF_END
;
int
diff --git a/src/gallium/state_trackers/dri/drisw.c b/src/gallium/state_trackers/dri/drisw.c
index d064bb0..d3d44bf 100644
--- a/src/gallium/state_trackers/dri/drisw.c
+++ b/src/gallium/state_trackers/dri/drisw.c
@@ -400,12 +400,12 @@ drisw_init_screen(__DRIscreen * sPriv)
sPriv->driverPrivate = (void *)screen;
sPriv->extensions = drisw_screen_extensions;
- struct pipe_screen_config config;
+ if (pipe_loader_sw_probe_dri(&screen->dev, &drisw_lf)) {
+ struct pipe_screen_config config;
+ config.flags = dri_init_options_get_screen_flags(screen);
- config.flags = dri_init_options_get_screen_flags(screen);
-
- if (pipe_loader_sw_probe_dri(&screen->dev, &drisw_lf))
pscreen = pipe_loader_create_screen(screen->dev, &config);
+ }
if (!pscreen)
goto fail;
--
2.9.3
More information about the mesa-dev
mailing list