dawn-cmake/test/intrinsics/gen/textureStore/6da692.wgsl.expected.hlsl

43 lines
835 B
HLSL

SKIP: FAILED
Validation Failure:
RWTexture2DArray<uint4> arg_0 : register(u0, space1);
void textureStore_6da692() {
arg_0[int3(1)] = uint4(0u, 0u, 0u, 0u);
}
void vertex_main() {
textureStore_6da692();
return;
}
void fragment_main() {
textureStore_6da692();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
textureStore_6da692();
return;
}
tint_aYSvaH:4:14: error: too few elements in vector initialization (expected 3 elements, have 1)
arg_0[int3(1)] = uint4(0u, 0u, 0u, 0u);
^
tint_aYSvaH:4:14: error: too few elements in vector initialization (expected 3 elements, have 1)
arg_0[int3(1)] = uint4(0u, 0u, 0u, 0u);
^
tint_aYSvaH:4:14: error: too few elements in vector initialization (expected 3 elements, have 1)
arg_0[int3(1)] = uint4(0u, 0u, 0u, 0u);
^