blob: f0763717ca8f88a7bef6a5991a6ad97fd5fb7195 [file] [log] [blame]
Ben Clayton13f08902022-10-26 18:36:44 +00001// Copyright 2022 The Tint Authors.
Ben Claytoneb29f812022-06-01 19:49:50 +00002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15////////////////////////////////////////////////////////////////////////////////
Ben Claytond722e612022-07-26 17:16:15 +000016// File generated by tools/src/cmd/gen
Ben Claytoneb29f812022-06-01 19:49:50 +000017// using the template:
18// test/tint/builtins/gen/gen.wgsl.tmpl
Ben Claytoneb29f812022-06-01 19:49:50 +000019//
20// Do not modify this file directly
21////////////////////////////////////////////////////////////////////////////////
22
23@group(1) @binding(0) var arg_0: texture_storage_2d_array<r32uint, write>;
24
25// fn textureStore(texture: texture_storage_2d_array<r32uint, write>, coords: vec2<i32>, array_index: i32, value: vec4<u32>)
26fn textureStore_38e8d7() {
Ben Clayton4b606152022-11-04 17:06:03 +000027 textureStore(arg_0, vec2<i32>(1i), 1i, vec4<u32>(1u));
Ben Claytoneb29f812022-06-01 19:49:50 +000028}
dan sinclairb29892b2022-06-07 13:55:34 +000029@vertex
Ben Claytoneb29f812022-06-01 19:49:50 +000030fn vertex_main() -> @builtin(position) vec4<f32> {
31 textureStore_38e8d7();
32 return vec4<f32>();
33}
34
dan sinclairb29892b2022-06-07 13:55:34 +000035@fragment
Ben Claytoneb29f812022-06-01 19:49:50 +000036fn fragment_main() {
37 textureStore_38e8d7();
38}
39
dan sinclairb29892b2022-06-07 13:55:34 +000040@compute @workgroup_size(1)
Ben Claytoneb29f812022-06-01 19:49:50 +000041fn compute_main() {
42 textureStore_38e8d7();
43}