summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/driver_noop/noop_pipe.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/driver_noop/noop_pipe.c b/src/gallium/auxiliary/driver_noop/noop_pipe.c
index fe7267c39ca..4ffff6c1db4 100644
--- a/src/gallium/auxiliary/driver_noop/noop_pipe.c
+++ b/src/gallium/auxiliary/driver_noop/noop_pipe.c
@@ -516,6 +516,9 @@ static const void *noop_get_compiler_options(struct pipe_screen *pscreen,
static void noop_finalize_nir(struct pipe_screen *pscreen, void *nir, bool optimize)
{
+ struct pipe_screen *screen = ((struct noop_pipe_screen*)pscreen)->oscreen;
+
+ screen->finalize_nir(screen, nir, optimize);
}
struct pipe_screen *noop_screen_create(struct pipe_screen *oscreen)