From c65e1ae01644e1c19c583e1ae52296112b1ec950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Tue, 20 Sep 2022 14:25:47 +0200 Subject: [PATCH] lavapipe: Fix float32_atomic_min_max spelling Fixes build with LLVM >= 15. Fixes: 31695f81c925 ("lavapipe: export VK_KHR_shader_atomic_float") Part-of: --- src/gallium/frontends/lavapipe/lvp_pipeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/lavapipe/lvp_pipeline.c b/src/gallium/frontends/lavapipe/lvp_pipeline.c index eed64890022..a6b5eb35dda 100644 --- a/src/gallium/frontends/lavapipe/lvp_pipeline.c +++ b/src/gallium/frontends/lavapipe/lvp_pipeline.c @@ -376,7 +376,7 @@ lvp_shader_compile_to_ir(struct lvp_pipeline *pipeline, .float_controls = true, .float32_atomic_add = true, #if LLVM_VERSION_MAJOR >= 15 - .float32_atomic_minmax = true, + .float32_atomic_min_max = true, #endif .image_ms_array = true, .image_read_without_format = true,