vkd3d/tests/hlsl/effect-variables-fx_2.shader_test
Nikolay Sivov 300e4e0d12 vkd3d-shader/fx: Add support for writing annotations for fx_2_0.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2024-09-30 20:02:51 +02:00

47 lines
410 B
Plaintext

[require]
shader model < 3.0
[effect]
bool _bool;
float _float;
half _half;
int _int;
uint _uint;
technique
{
}
[effect todo]
Texture tex1;
texture tex2;
teXture tex3;
Texture2DMS<float4, 4> tex4;
Texture1D tex5;
Texture2D tex6;
Texture3D tex7;
technique
{
}
[effect]
struct s
{
Texture t;
float4 f;
};
technique {}
[effect fail]
struct s
{
Texture t;
float4 f;
};
s var;
technique {}