From 4dbc55818c1fdcd174962d244a4286bdad42f3f1 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 15 Aug 2023 15:56:24 +1000 Subject: [PATCH] llvmpipe: enable driver functions. This enables driver functions for the CL paths. Reviewed-by: Mike Blumenkrantz Part-of: --- src/gallium/drivers/llvmpipe/lp_screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index dc286af8859..a3da1cb8fdf 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -632,6 +632,7 @@ static const struct nir_shader_compiler_options gallivm_nir_options = { .support_16bit_alu = true, .lower_fisnormal = true, .lower_fquantize2f16 = true, + .driver_functions = true, };