From b33838268fe6b5827c8344e7fe23dc09c214535f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 16 Sep 2025 10:06:24 -0400 Subject: [PATCH] llvmpipe: enable GLSL 4.60 not sure why this was missing Reviewed-by: Konstantin Seurer Part-of: --- src/gallium/drivers/llvmpipe/lp_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index a38fe672735..d0036cd3da5 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -269,7 +269,7 @@ llvmpipe_init_screen_caps(struct pipe_screen *screen) caps->vertex_color_unclamped = true; caps->vertex_color_clamped = true; caps->glsl_feature_level_compatibility = - caps->glsl_feature_level = 450; + caps->glsl_feature_level = 460; caps->compute = true; caps->user_vertex_buffers = true; caps->tgsi_texcoord = true;