vkd3d/tests/hlsl-numeric-constructor-truncation.shader_test
Francisco Casas 6b58079cbd tests: Test initialization using a numeric constructor with implicit truncation.
Signed-off-by: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2022-02-04 16:45:55 +01:00

34 lines
468 B
Plaintext

[pixel shader]
float4 main() : sv_target
{
float3 x = float4(71, 72, 73, 74);
return float4(x, 75);
}
[test]
draw quad
probe all rgba (71.0, 72.0, 73.0, 75.0)
[pixel shader]
struct stu
{
float aa;
float2 bb;
float cc;
};
float4 main() : sv_target
{
struct stu foo;
foo.cc = 5;
foo.bb = float3(2, 3, 4); // It shall not overflow to cc;
foo.aa = 1;
return float4(foo);
}
[test]
draw quad
probe all rgba (1.0, 2.0, 3.0, 5.0)