From: Brian Paul Date: Mon, 26 Jun 2017 20:40:58 +0000 (-0600) Subject: pipe_loader_sw: fix compilation warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce608784d0739170642d771f2edcd747787040cb;p=mesa.git pipe_loader_sw: fix compilation warning Add the new 'flags' parameter to pipe_loader_sw_create_screen(). Reviewed-by: Marek Olšák --- diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c index 0fbc78e3818..46c6604f74e 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c @@ -294,7 +294,8 @@ pipe_loader_sw_configuration(struct pipe_loader_device *dev, } static struct pipe_screen * -pipe_loader_sw_create_screen(struct pipe_loader_device *dev) +pipe_loader_sw_create_screen(struct pipe_loader_device *dev, + unsigned flags) { struct pipe_loader_sw_device *sdev = pipe_loader_sw_device(dev); struct pipe_screen *screen;