From a35a9e7c6f1ddba0b1e80a30f0f7114a2cdc402d Mon Sep 17 00:00:00 2001 From: Nicolai Hähnle Date: Fri, 30 Jun 2017 09:58:46 +0200 Subject: gallium: add driconf options to pipe_screen_config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Marek Olšák --- src/gallium/auxiliary/pipe-loader/pipe_loader.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/gallium/auxiliary/pipe-loader/pipe_loader.c') diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.c b/src/gallium/auxiliary/pipe-loader/pipe_loader.c index 95e6b42cf71..f55312f548a 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.c @@ -111,6 +111,9 @@ struct pipe_screen * pipe_loader_create_screen(struct pipe_loader_device *dev, struct pipe_screen_config *config) { + pipe_loader_load_options(dev); + config->options = &dev->option_cache; + return dev->ops->create_screen(dev, config); } -- cgit v1.2.3