Skip to content

Commit

Permalink
WIP: wtf y local bindings of same sampled texture type no work
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Jan 11, 2025
1 parent 4b8da3f commit 1dd22ff
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions in.wgsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@group(0) @binding(0)
var writeTex: texture_storage_2d<rgba8unorm, write>;

fn write_black_to_storage_texture(
// writeTex: texture_storage_2d<rgba8unorm, write>, // BUG: uncomment this, and this won't compile
) {
textureStore(writeTex, vec2(0), vec4(0.));
}

0 comments on commit 1dd22ff

Please sign in to comment.