llvmpipe: fix mesh cap exports

this should match spec requirements

Reviewed-by: Konstantin Seurer <konstantin.seurer@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40406>
This commit is contained in:
Mike Blumenkrantz 2026-03-13 13:55:57 -04:00 committed by Marge Bot
parent 58dd7afa0e
commit 3cbbbb11ad

View file

@ -411,8 +411,8 @@ llvmpipe_init_screen_caps(struct pipe_screen *screen)
caps->mesh.max_mesh_output_vertices = 256;
caps->mesh.max_mesh_output_primitives = 256;
caps->mesh.max_mesh_output_components = 128;
caps->mesh.max_mesh_output_layers = 8;
caps->mesh.max_mesh_multiview_view_count = 0; //???
caps->mesh.max_mesh_output_layers = 9;
caps->mesh.max_mesh_multiview_view_count = 1;
caps->mesh.mesh_output_per_vertex_granularity = 1;
caps->mesh.mesh_output_per_primitive_granularity = 1;