blob: 0dcb894c5efd91b691742d18f489ab8d2506fae3 [file] [log] [blame]
Ben Clayton0a2b5f22021-06-09 14:32:14 +00001void transpose_2585cd() {
2 float3x4 res = transpose(float4x3(0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 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 Clayton0a2b5f22021-06-09 14:32:14 +000010 transpose_2585cd();
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 Clayton0a2b5f22021-06-09 14:32:14 +000019}
20
21void fragment_main() {
22 transpose_2585cd();
23 return;
24}
25
26[numthreads(1, 1, 1)]
27void compute_main() {
28 transpose_2585cd();
29 return;
30}