Ben Clayton | da5424b | 2022-10-24 23:58:53 +0000 | [diff] [blame] | 1 | RWTexture2DArray<int4> arg_0 : register(u0, space1); |
| 2 | |
| 3 | void textureStore_c2ca46() { |
Ben Clayton | 4b60615 | 2022-11-04 17:06:03 +0000 | [diff] [blame] | 4 | uint2 arg_1 = (1u).xx; |
Ben Clayton | da5424b | 2022-10-24 23:58:53 +0000 | [diff] [blame] | 5 | uint arg_2 = 1u; |
Ben Clayton | 4b60615 | 2022-11-04 17:06:03 +0000 | [diff] [blame] | 6 | int4 arg_3 = (1).xxxx; |
Ben Clayton | da5424b | 2022-10-24 23:58:53 +0000 | [diff] [blame] | 7 | arg_0[uint3(arg_1, arg_2)] = arg_3; |
| 8 | } |
| 9 | |
| 10 | struct tint_symbol { |
| 11 | float4 value : SV_Position; |
| 12 | }; |
| 13 | |
| 14 | float4 vertex_main_inner() { |
| 15 | textureStore_c2ca46(); |
| 16 | return (0.0f).xxxx; |
| 17 | } |
| 18 | |
| 19 | tint_symbol vertex_main() { |
| 20 | const float4 inner_result = vertex_main_inner(); |
| 21 | tint_symbol wrapper_result = (tint_symbol)0; |
| 22 | wrapper_result.value = inner_result; |
| 23 | return wrapper_result; |
| 24 | } |
| 25 | |
| 26 | void fragment_main() { |
| 27 | textureStore_c2ca46(); |
| 28 | return; |
| 29 | } |
| 30 | |
| 31 | [numthreads(1, 1, 1)] |
| 32 | void compute_main() { |
| 33 | textureStore_c2ca46(); |
| 34 | return; |
| 35 | } |