mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-24 13:30:38 +01:00
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:
parent
58dd7afa0e
commit
3cbbbb11ad
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue