Skip to content

Commit

Permalink
Merge with master, add modified tests
Browse files Browse the repository at this point in the history
  • Loading branch information
expenses committed Apr 29, 2023
1 parent 0b42c9d commit dcd6010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/out/wgsl/binding-buffer-arrays.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct Foo {
}

struct FragmentIn {
@location(0) index: u32,
@location(0) @interpolate(flat) index: u32,
}

@group(0) @binding(0)
Expand All @@ -16,7 +16,7 @@ var<storage> storage_array: binding_array<Foo,1>;
var<uniform> uni: UniformIndex;

@fragment
fn main(fragment_in: FragmentIn) -> @location(0) u32 {
fn main(fragment_in: FragmentIn) -> @location(0) @interpolate(flat) u32 {
var u1_: u32;

let uniform_index = uni.index;
Expand Down

0 comments on commit dcd6010

Please sign in to comment.