From: Kenneth Graunke Date: Fri, 9 Nov 2018 20:09:50 +0000 (-0800) Subject: iris: don't support pull constants. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f4829a2fe107519691a2c7a7b565baa51e006d48;p=mesa.git iris: don't support pull constants. I don't think it matters, we won't have any params anyway, but let's be sure it doesn't try --- diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 738663a90a6..48d08c6f33d 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -584,6 +584,7 @@ iris_screen_create(int fd) screen->compiler = brw_compiler_create(screen, &screen->devinfo); screen->compiler->shader_debug_log = iris_shader_debug_log; screen->compiler->shader_perf_log = iris_shader_perf_log; + screen->compiler->supports_pull_constants = false; slab_create_parent(&screen->transfer_pool, sizeof(struct iris_transfer), 64);