mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
22 lines
327 B
Plaintext
22 lines
327 B
Plaintext
|
[pixel shader todo]
|
||
|
const float4 f1;
|
||
|
const uniform float4 f2;
|
||
|
|
||
|
float4 main() : sv_target
|
||
|
{
|
||
|
return f1 + f2;
|
||
|
}
|
||
|
|
||
|
[test]
|
||
|
uniform 0 float4 1.0 2.0 3.0 4.0
|
||
|
uniform 4 float4 0.1 0.2 0.3 0.4
|
||
|
todo draw quad
|
||
|
todo probe all rgba (1.1, 2.2, 3.3, 4.4)
|
||
|
|
||
|
[pixel shader fail]
|
||
|
float4 main() : sv_target
|
||
|
{
|
||
|
const float f;
|
||
|
return 0;
|
||
|
}
|