blob: 7188d3fa2b4d38eb4ec8401cf515c2a92aad87a1 [file] [log] [blame]
//
// fragment_main
//
RWTexture2DArray<float4> arg_0 : register(u0, space1);
void textureStore_e72bdc() {
arg_0[int3((1).xx, int(1u))] = (1.0f).xxxx;
}
void fragment_main() {
textureStore_e72bdc();
return;
}
//
// compute_main
//
RWTexture2DArray<float4> arg_0 : register(u0, space1);
void textureStore_e72bdc() {
arg_0[int3((1).xx, int(1u))] = (1.0f).xxxx;
}
[numthreads(1, 1, 1)]
void compute_main() {
textureStore_e72bdc();
return;
}