From 72e5778579d04975c9a9c8f35d1e01a1f356f9e6 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 21 Jun 2021 16:53:42 +1000 Subject: [PATCH] crocus: extend l3 config setup to gen8 Part-of: --- src/gallium/drivers/crocus/crocus_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/crocus/crocus_screen.c b/src/gallium/drivers/crocus/crocus_screen.c index e582ee1bcb3..4eacec3c6f7 100644 --- a/src/gallium/drivers/crocus/crocus_screen.c +++ b/src/gallium/drivers/crocus/crocus_screen.c @@ -807,7 +807,7 @@ crocus_screen_create(int fd, const struct pipe_screen_config *config) screen->compiler->compact_params = false; screen->compiler->constant_buffer_0_is_relative = true; - if (screen->devinfo.ver == 7) { + if (screen->devinfo.ver >= 7) { screen->l3_config_3d = crocus_get_default_l3_config(&screen->devinfo, false); screen->l3_config_cs = crocus_get_default_l3_config(&screen->devinfo, true); }