dawn-cmake/test/intrinsics/gen/textureStore/32f368.wgsl.expected.hlsl

23 lines
347 B
HLSL

RWTexture2DArray<float4> arg_0 : register(u0, space1);
void textureStore_32f368() {
arg_0[int3(0, 0, 1)] = float4(0.0f, 0.0f, 0.0f, 0.0f);
}
void vertex_main() {
textureStore_32f368();
return;
}
void fragment_main() {
textureStore_32f368();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
textureStore_32f368();
return;
}