Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
test(hlsl-out): add failing case for array as ctor arg
Browse files Browse the repository at this point in the history
See issue #2184.
  • Loading branch information
ErichDonGubler committed Mar 20, 2023
1 parent 4afb6d9 commit 98e63d5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/in/array-in-ctor.wgsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
struct Ah {
inner: array<f32, 2>,
};
@group(0) @binding(0)
var<storage> ah: Ah;

@compute @workgroup_size(1)
fn cs_main() {
_ = ah;
}

0 comments on commit 98e63d5

Please sign in to comment.