diff --git a/.pick_status.json b/.pick_status.json index 81dbefcdbfe..88fb260a2cc 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -104,7 +104,7 @@ "description": "lavapipe: fix mesh property exports", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/gallium/frontends/lavapipe/lvp_device.c b/src/gallium/frontends/lavapipe/lvp_device.c index 5594dc12d14..4032a7587bd 100644 --- a/src/gallium/frontends/lavapipe/lvp_device.c +++ b/src/gallium/frontends/lavapipe/lvp_device.c @@ -1260,7 +1260,8 @@ lvp_get_properties(const struct lvp_physical_device *device, struct vk_propertie .maxMeshOutputComponents = 128, /* 32x vec4 min required */ .maxMeshOutputVertices = 256, .maxMeshOutputPrimitives = 256, - .maxMeshOutputLayers = 8, + .maxMeshOutputLayers = 9, + .maxMeshMultiviewViewCount = 1, /* 1 means unsupported */ .meshOutputPerVertexGranularity = 1, .meshOutputPerPrimitiveGranularity = 1, .maxPreferredTaskWorkGroupInvocations = 64,