2022-03-07 17:55:40 -08:00
|
|
|
[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]
|
2022-06-14 05:32:22 -07:00
|
|
|
draw quad
|
2022-03-07 17:55:40 -08:00
|
|
|
probe all rgba (5.0, 5.0, -5.0, 3.0)
|
2022-04-14 03:52:39 -07:00
|
|
|
|
2022-10-14 06:35:39 -07:00
|
|
|
[pixel shader]
|
|
|
|
float4 main() : SV_TARGET
|
|
|
|
{
|
|
|
|
float x = 42;
|
|
|
|
float y = 5;
|
|
|
|
|
|
|
|
return float4(x % y, -x % y, x % -y, -x % -y);
|
|
|
|
}
|
|
|
|
|
|
|
|
[test]
|
|
|
|
draw quad
|
|
|
|
probe all rgba (2.0, -2.0, 2.0, -2.0) 16
|
|
|
|
|
|
|
|
[pixel shader]
|
|
|
|
float4 main() : SV_TARGET
|
|
|
|
{
|
|
|
|
float x = 45;
|
|
|
|
float y = 5;
|
|
|
|
|
|
|
|
return float4(x % y, -x % y, x % -y, -x % -y);
|
|
|
|
}
|
|
|
|
|
|
|
|
[test]
|
|
|
|
draw quad
|
|
|
|
probe all rgba (0.0, 0.0, 0.0, 0.0)
|
|
|
|
|
2022-04-14 03:52:39 -07:00
|
|
|
[require]
|
2022-04-22 03:24:57 -07:00
|
|
|
% Infinities are not allowed in SM1
|
2022-04-14 03:52:39 -07:00
|
|
|
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)
|