blob: 03f49196e1c1e87239b39535f6966c8cdaf13d5d [file] [log] [blame]
Ben Claytonb07a7ce2021-06-03 11:26:17 +00001RWTexture2DArray<float4> arg_0 : register(u0, space1);
2
3void textureStore_3bb7a1() {
Ben Clayton4b606152022-11-04 17:06:03 +00004 arg_0[int3((1).xx, 1)] = (1.0f).xxxx;
Ben Claytonb07a7ce2021-06-03 11:26:17 +00005}
6
Ben Clayton5d2f34e2021-06-16 09:19:36 +00007struct tint_symbol {
8 float4 value : SV_Position;
9};
10
James Pricea5d73ce2021-08-04 22:15:28 +000011float4 vertex_main_inner() {
Ben Claytonb07a7ce2021-06-03 11:26:17 +000012 textureStore_3bb7a1();
Ben Claytone9f8b092022-06-01 13:14:39 +000013 return (0.0f).xxxx;
James Pricea5d73ce2021-08-04 22:15:28 +000014}
15
16tint_symbol vertex_main() {
Antonio Maiorano144ebed2024-01-30 16:30:15 +000017 float4 inner_result = vertex_main_inner();
James Pricea5d73ce2021-08-04 22:15:28 +000018 tint_symbol wrapper_result = (tint_symbol)0;
19 wrapper_result.value = inner_result;
20 return wrapper_result;
Ben Claytonb07a7ce2021-06-03 11:26:17 +000021}
22
23void fragment_main() {
24 textureStore_3bb7a1();
25 return;
26}
27
28[numthreads(1, 1, 1)]
29void compute_main() {
30 textureStore_3bb7a1();
31 return;
32}