blob: 09cec0bebcef1be72f8845b43f001df84dba8951 [file] [log] [blame]
dan sinclaire2fd5e02022-11-10 02:39:08 +00001void acosh_3433e8() {
dan sinclair6cc183c2023-03-02 21:28:45 +00002 float res = 1.0f;
dan sinclaire2fd5e02022-11-10 02:39:08 +00003}
4
5struct tint_symbol {
6 float4 value : SV_Position;
7};
8
9float4 vertex_main_inner() {
10 acosh_3433e8();
11 return (0.0f).xxxx;
12}
13
14tint_symbol vertex_main() {
Antonio Maiorano144ebed2024-01-30 16:30:15 +000015 float4 inner_result = vertex_main_inner();
dan sinclaire2fd5e02022-11-10 02:39:08 +000016 tint_symbol wrapper_result = (tint_symbol)0;
17 wrapper_result.value = inner_result;
18 return wrapper_result;
19}
20
21void fragment_main() {
22 acosh_3433e8();
23 return;
24}
25
26[numthreads(1, 1, 1)]
27void compute_main() {
28 acosh_3433e8();
29 return;
30}