blob: 441660d889e60a244082119476935cd74e10f3fd [file] [log] [blame]
Ben Claytoneb29f812022-06-01 19:49:50 +00001// Copyright 2021 The Tint Authors.
2//
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
Ben Claytoneb29f812022-06-01 19:49:50 +000023
Ben Claytonc0af5c52022-06-02 14:36:10 +000024// fn mix(vec<2, f32>, vec<2, f32>, vec<2, f32>) -> vec<2, f32>
25fn mix_6f8adc() {
Ben Claytonee36e392022-07-26 14:27:25 +000026 var arg_0 = vec2<f32>(1.f);
27 var arg_1 = vec2<f32>(1.f);
28 var arg_2 = vec2<f32>(1.f);
Ben Claytonc0af5c52022-06-02 14:36:10 +000029 var res: vec2<f32> = mix(arg_0, arg_1, arg_2);
Ben Clayton77a90cb2023-03-06 18:25:08 +000030 prevent_dce = res;
Ben Claytoneb29f812022-06-01 19:49:50 +000031}
Ben Clayton77a90cb2023-03-06 18:25:08 +000032@group(2) @binding(0) var<storage, read_write> prevent_dce : vec2<f32>;
Ben Claytoneb29f812022-06-01 19:49:50 +000033
dan sinclairb29892b2022-06-07 13:55:34 +000034@vertex
Ben Claytoneb29f812022-06-01 19:49:50 +000035fn vertex_main() -> @builtin(position) vec4<f32> {
Ben Claytonc0af5c52022-06-02 14:36:10 +000036 mix_6f8adc();
Ben Claytoneb29f812022-06-01 19:49:50 +000037 return vec4<f32>();
38}
39
dan sinclairb29892b2022-06-07 13:55:34 +000040@fragment
Ben Claytoneb29f812022-06-01 19:49:50 +000041fn fragment_main() {
Ben Claytonc0af5c52022-06-02 14:36:10 +000042 mix_6f8adc();
Ben Claytoneb29f812022-06-01 19:49:50 +000043}
44
dan sinclairb29892b2022-06-07 13:55:34 +000045@compute @workgroup_size(1)
Ben Claytoneb29f812022-06-01 19:49:50 +000046fn compute_main() {
Ben Claytonc0af5c52022-06-02 14:36:10 +000047 mix_6f8adc();
Ben Claytoneb29f812022-06-01 19:49:50 +000048}