blob: cf43a634a2086176e02bf4860f883aace98ab2b7 [file] [log] [blame]
dan sinclair8f1d2762024-07-31 02:35:40 +00001struct VertexOutput {
2 float4 pos;
3};
dan sinclair69313792024-06-13 20:35:21 +00004
dan sinclair8f1d2762024-07-31 02:35:40 +00005struct vertex_main_outputs {
6 float4 VertexOutput_pos : SV_Position;
7};
8
9
10void sinh_c4df74() {
11 float res = 1.17520117759704589844f;
12}
13
14void fragment_main() {
15 sinh_c4df74();
16}
17
18[numthreads(1, 1, 1)]
19void compute_main() {
20 sinh_c4df74();
21}
22
23VertexOutput vertex_main_inner() {
24 VertexOutput tint_symbol = (VertexOutput)0;
25 tint_symbol.pos = (0.0f).xxxx;
26 sinh_c4df74();
27 VertexOutput v = tint_symbol;
28 return v;
29}
30
31vertex_main_outputs vertex_main() {
32 VertexOutput v_1 = vertex_main_inner();
33 vertex_main_outputs v_2 = {v_1.pos};
34 return v_2;
35}
36