mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
26 lines
368 B
Plaintext
26 lines
368 B
Plaintext
[pixel shader]
|
|
uniform float4 f;
|
|
|
|
float4 main() : sv_target
|
|
{
|
|
return exp2(f);
|
|
}
|
|
|
|
[test]
|
|
uniform 0 float4 -1.0 0.0 1.0 2.0
|
|
draw quad
|
|
probe all rgba (0.5, 1.0, 2.0, 4.0) 1
|
|
|
|
[pixel shader]
|
|
uniform float4 f;
|
|
|
|
float4 main() : sv_target
|
|
{
|
|
return exp(f);
|
|
}
|
|
|
|
[test]
|
|
uniform 0 float4 -1.0 0.0 1.0 2.0
|
|
draw quad
|
|
probe all rgba (0.36787948, 1.0, 2.7182815, 7.38905573) 2
|