blob: a4deeeb102833d1340524dcf6af5e25f2769fa99 [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 Clayton57ded6a2023-08-22 13:22:22 +000016// File generated by 'tools/src/cmd/gen' using the template:
Ben Claytoneb29f812022-06-01 19:49:50 +000017// test/tint/builtins/gen/gen.wgsl.tmpl
Ben Claytoneb29f812022-06-01 19:49:50 +000018//
Ben Clayton57ded6a2023-08-22 13:22:22 +000019// To regenerate run: './tools/run gen'
20//
21// Do not modify this file directly
Ben Claytoneb29f812022-06-01 19:49:50 +000022////////////////////////////////////////////////////////////////////////////////
23
24
25// fn log(f32) -> f32
26fn log_7114a6() {
Ben Claytonee36e392022-07-26 14:27:25 +000027 var res: f32 = log(1.f);
Ben Clayton77a90cb2023-03-06 18:25:08 +000028 prevent_dce = res;
Ben Claytoneb29f812022-06-01 19:49:50 +000029}
Ben Clayton77a90cb2023-03-06 18:25:08 +000030@group(2) @binding(0) var<storage, read_write> prevent_dce : f32;
Ben Claytoneb29f812022-06-01 19:49:50 +000031
dan sinclairb29892b2022-06-07 13:55:34 +000032@vertex
Ben Claytoneb29f812022-06-01 19:49:50 +000033fn vertex_main() -> @builtin(position) vec4<f32> {
34 log_7114a6();
35 return vec4<f32>();
36}
37
dan sinclairb29892b2022-06-07 13:55:34 +000038@fragment
Ben Claytoneb29f812022-06-01 19:49:50 +000039fn fragment_main() {
40 log_7114a6();
41}
42
dan sinclairb29892b2022-06-07 13:55:34 +000043@compute @workgroup_size(1)
Ben Claytoneb29f812022-06-01 19:49:50 +000044fn compute_main() {
45 log_7114a6();
46}