blob: de0568102cf350fcd1149b5dd59982380eca263a [file] [log] [blame]
Ben Claytonb07a7ce2021-06-03 11:26:17 +00001void sinh_445e33() {
2 float4 res = sinh(float4(0.0f, 0.0f, 0.0f, 0.0f));
3}
4
Ben Clayton5d2f34e2021-06-16 09:19:36 +00005struct tint_symbol {
6 float4 value : SV_Position;
7};
8
James Pricea5d73ce2021-08-04 22:15:28 +00009float4 vertex_main_inner() {
Ben Claytonb07a7ce2021-06-03 11:26:17 +000010 sinh_445e33();
James Pricea5d73ce2021-08-04 22:15:28 +000011 return float4(0.0f, 0.0f, 0.0f, 0.0f);
12}
13
14tint_symbol vertex_main() {
15 const float4 inner_result = vertex_main_inner();
16 tint_symbol wrapper_result = (tint_symbol)0;
17 wrapper_result.value = inner_result;
18 return wrapper_result;
Ben Claytonb07a7ce2021-06-03 11:26:17 +000019}
20
21void fragment_main() {
22 sinh_445e33();
23 return;
24}
25
26[numthreads(1, 1, 1)]
27void compute_main() {
28 sinh_445e33();
29 return;
30}