Skip to content

Instantly share code, notes, and snippets.

@raphlinus
Created November 4, 2022 14:52
Show Gist options
  • Save raphlinus/ffeff9634b02c59e1f3f788f529ade27 to your computer and use it in GitHub Desktop.
Save raphlinus/ffeff9634b02c59e1f3f788f529ade27 to your computer and use it in GitHub Desktop.
Trivial example of a shader which should fail uniformity analysis
@compute @workgroup_size(256)
fn main(@builtin(local_invocation_id) local_id: vec3<u32>) {
if local_id.x < 5u {
workgroupBarrier();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment