We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074c0e7 commit d8b7e81Copy full SHA for d8b7e81
wgpu-types/src/lib.rs
@@ -979,8 +979,10 @@ impl Limits {
979
// This very likely is never a real limiter
980
max_task_workgroup_total_count: 65536,
981
max_task_workgroups_per_dimension: 256,
982
- max_mesh_multiview_count: 1,
983
- max_mesh_output_layers: 1024,
+ // llvmpipe reports 0 multiview count, which just means no multiview is allowed
+ max_mesh_multiview_count: 0,
984
+ // llvmpipe once again requires this to be 8. An RTX 3060 supports well over 1024.
985
+ max_mesh_output_layers: 8,
986
..self
987
}
988
0 commit comments