Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 1 | // 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 Clayton | d722e61 | 2022-07-26 17:16:15 +0000 | [diff] [blame] | 16 | // File generated by tools/src/cmd/gen |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 17 | // using the template: |
| 18 | // test/tint/builtins/gen/gen.wgsl.tmpl |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 19 | // |
| 20 | // Do not modify this file directly |
| 21 | //////////////////////////////////////////////////////////////////////////////// |
| 22 | |
| 23 | |
| 24 | // fn exp2(vec<4, f32>) -> vec<4, f32> |
| 25 | fn exp2_a9d0a7() { |
Ben Clayton | ee36e39 | 2022-07-26 14:27:25 +0000 | [diff] [blame] | 26 | var res: vec4<f32> = exp2(vec4<f32>(1.f)); |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 27 | } |
| 28 | |
dan sinclair | b29892b | 2022-06-07 13:55:34 +0000 | [diff] [blame] | 29 | @vertex |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 30 | fn vertex_main() -> @builtin(position) vec4<f32> { |
| 31 | exp2_a9d0a7(); |
| 32 | return vec4<f32>(); |
| 33 | } |
| 34 | |
dan sinclair | b29892b | 2022-06-07 13:55:34 +0000 | [diff] [blame] | 35 | @fragment |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 36 | fn fragment_main() { |
| 37 | exp2_a9d0a7(); |
| 38 | } |
| 39 | |
dan sinclair | b29892b | 2022-06-07 13:55:34 +0000 | [diff] [blame] | 40 | @compute @workgroup_size(1) |
Ben Clayton | eb29f81 | 2022-06-01 19:49:50 +0000 | [diff] [blame] | 41 | fn compute_main() { |
| 42 | exp2_a9d0a7(); |
| 43 | } |