dawn-cmake/test/tint/statements/compound_assign/vector/divide.wgsl.expected.dxc.hlsl

15 lines
338 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
RWByteAddressBuffer v : register(u0, space0);
int4 tint_div(int4 lhs, int4 rhs) {
return (lhs / (((rhs == (0).xxxx) | ((lhs == (-2147483648).xxxx) & (rhs == (-1).xxxx))) ? (1).xxxx : rhs));
}
void foo() {
v.Store4(0u, asuint(tint_div(asint(v.Load4(0u)), (2).xxxx)));
}