mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
c680b674d6
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
43 lines
608 B
Plaintext
43 lines
608 B
Plaintext
[pixel shader]
|
|
float4 main() : SV_TARGET
|
|
{
|
|
float x = 5.0;
|
|
float y = 15.0;
|
|
|
|
return float4(x + y, x - y, x * y, x / y);
|
|
}
|
|
|
|
[test]
|
|
draw quad
|
|
probe all rgba (20.0, -10.0, 75.0, 0.33333333)
|
|
|
|
[pixel shader]
|
|
float4 main() : SV_TARGET
|
|
{
|
|
float x = 5.0;
|
|
float y = 15.0;
|
|
|
|
return float4(x % y, +x, -x, y / x);
|
|
}
|
|
|
|
[test]
|
|
todo draw quad
|
|
probe all rgba (5.0, 5.0, -5.0, 3.0)
|
|
|
|
[require]
|
|
% Infinities are not allowed in SM1
|
|
shader model >= 4.0
|
|
|
|
[pixel shader]
|
|
float4 main() : SV_TARGET
|
|
{
|
|
float x = 1;
|
|
float y = 0;
|
|
|
|
return x / y;
|
|
}
|
|
|
|
[test]
|
|
draw quad
|
|
probe all rgba (1e99, 1e99, 1e99, 1e99)
|