blob: c13528db620f9a46f89370467208dcf8c9d91ab3 [file] [log] [blame]
James Price807f3ef2023-08-11 00:45:54 +00001@group(1) @binding(0) var arg_0 : texture_storage_1d<rgba8unorm, read_write>;
2
3fn textureStore_706236() {
4 textureStore(arg_0, 1i, vec4<f32>(1.0f));
5}
6
7@vertex
8fn vertex_main() -> @builtin(position) vec4<f32> {
9 textureStore_706236();
10 return vec4<f32>();
11}
12
13@fragment
14fn fragment_main() {
15 textureStore_706236();
16}
17
18@compute @workgroup_size(1)
19fn compute_main() {
20 textureStore_706236();
21}