Skip to content

Commit 75188a7

Browse files
authored
Fix mesh shader naga capability bit (#8588)
1 parent ed6b789 commit 75188a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

naga/src/valid/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ bitflags::bitflags! {
191191
/// Support for task shaders, mesh shaders, and per-primitive fragment inputs
192192
const MESH_SHADER = 1 << 30;
193193
/// Support for mesh shaders which output points.
194-
const MESH_SHADER_POINT_TOPOLOGY = 1 << 30;
194+
const MESH_SHADER_POINT_TOPOLOGY = 1 << 31;
195195
}
196196
}
197197

0 commit comments

Comments
 (0)