Fix mesh shader naga capability bit (#8588)

This commit is contained in:
atlv 2025-11-27 22:45:07 -05:00 committed by GitHub
parent ed6b78936a
commit 75188a7fe1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -191,7 +191,7 @@ bitflags::bitflags! {
/// Support for task shaders, mesh shaders, and per-primitive fragment inputs
const MESH_SHADER = 1 << 30;
/// Support for mesh shaders which output points.
const MESH_SHADER_POINT_TOPOLOGY = 1 << 30;
const MESH_SHADER_POINT_TOPOLOGY = 1 << 31;
}
}