diff options
author | Nicolai Hähnle <[email protected]> | 2017-08-02 11:38:32 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-02 12:15:04 +0200 |
commit | f45efb8129c52f85d8a8858734942136eb59ae7c (patch) | |
tree | cac28281e01eefe599b68705752e26c1af301c79 | |
parent | eceb6710024716433069d705fbd873d6d136c2cc (diff) |
pipe-loader: fix driinfo for software and non-radeonsi drivers
Fixes: 678dadf1237 ("gallium: move driinfo XML to pipe_loader")
Reviewed-by: Thomas Hellström <[email protected]>
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader.c | 2 | ||||
-rw-r--r-- | 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 39d33d848af..6d9acebdb68 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 d064bb0d4a3..d3d44bf418b 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; |