blob: 9c1e543dbf1ec14a4850e4a90b89a8f84a5e9ac7 [file] [log] [blame]
Ben Claytonda5424b2022-10-24 23:58:53 +00001RWTexture2D<float4> arg_0 : register(u0, space1);
2
3void textureStore_726472() {
Ben Clayton4b606152022-11-04 17:06:03 +00004 arg_0[(1u).xx] = (1.0f).xxxx;
Ben Claytonda5424b2022-10-24 23:58:53 +00005}
6
7struct tint_symbol {
8 float4 value : SV_Position;
9};
10
11float4 vertex_main_inner() {
12 textureStore_726472();
13 return (0.0f).xxxx;
14}
15
16tint_symbol vertex_main() {
17 const float4 inner_result = vertex_main_inner();
18 tint_symbol wrapper_result = (tint_symbol)0;
19 wrapper_result.value = inner_result;
20 return wrapper_result;
21}
22
23void fragment_main() {
24 textureStore_726472();
25 return;
26}
27
28[numthreads(1, 1, 1)]
29void compute_main() {
30 textureStore_726472();
31 return;
32}