blob: 038a6e35a883dd1b6cc4250dbfc5816e027c07bc [file] [log] [blame]
Ben Claytonda5424b2022-10-24 23:58:53 +00001RWTexture1D<float4> arg_0 : register(u0, space1);
2
3void textureStore_e7c6d8() {
4 uint arg_1 = 1u;
Ben Clayton4b606152022-11-04 17:06:03 +00005 float4 arg_2 = (1.0f).xxxx;
Ben Claytonda5424b2022-10-24 23:58:53 +00006 arg_0[arg_1] = arg_2;
7}
8
9struct tint_symbol {
10 float4 value : SV_Position;
11};
12
13float4 vertex_main_inner() {
14 textureStore_e7c6d8();
15 return (0.0f).xxxx;
16}
17
18tint_symbol vertex_main() {
Antonio Maiorano144ebed2024-01-30 16:30:15 +000019 float4 inner_result = vertex_main_inner();
Ben Claytonda5424b2022-10-24 23:58:53 +000020 tint_symbol wrapper_result = (tint_symbol)0;
21 wrapper_result.value = inner_result;
22 return wrapper_result;
23}
24
25void fragment_main() {
26 textureStore_e7c6d8();
27 return;
28}
29
30[numthreads(1, 1, 1)]
31void compute_main() {
32 textureStore_e7c6d8();
33 return;
34}