vkd3d/tests/hlsl/effect-variables-fx_5.shader_test
Nikolay Sivov 3dc43e8945 vkd3d-shader: Disallow object structure fields for fx profiles.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2024-07-08 18:49:28 +02:00

20 lines
168 B
Plaintext

[require]
shader model >= 5.0
shader model < 6.0
[effect]
struct s
{
Texture t;
float4 f;
};
[effect fail]
struct s
{
Texture t;
float4 f;
};
s var;