tests: Move HLSL tests to a subdirectory.

This commit is contained in:
Zebediah Figura
2023-06-23 18:04:52 -05:00
committed by Alexandre Julliard
parent 69f32796b0
commit 0d2f2e1860
Notes: Alexandre Julliard 2023-06-28 23:04:19 +02:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Francisco Casas (@fcasas)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/248
139 changed files with 140 additions and 140 deletions

View File

@@ -0,0 +1,98 @@
[pixel shader]
struct apple
{
float3 aa;
float4 bb;
};
struct banana
{
struct apple aa;
int2 bb;
int4 cc[8];
};
float4 main() : SV_TARGET
{
struct banana p = (struct banana)42;
return p.aa.bb + p.cc[5];
}
[test]
draw quad
probe all rgba (84.0, 84.0, 84.0, 84.0)
[pixel shader fail]
struct apple
{
float3 aa;
float4 bb;
};
float4 main() : SV_TARGET
{
struct apple f = 31;
return f.bb;
}
[pixel shader fail]
struct apple
{
float3 aa;
float4 bb;
};
float4 fun(struct apple f)
{
return f.bb;
}
float4 main() : SV_TARGET
{
return fun(31);
}
[pixel shader fail]
float4 fun(float f[7])
{
return f[1];
}
float4 main() : SV_TARGET
{
return fun(32);
}
[pixel shader fail]
struct apple
{
float4 foo;
Texture2D tex;
};
float4 PSMain() : SV_TARGET
{
struct apple a1;
a1 = (struct apple)1;
return a1.foo;
}
[pixel shader]
float4 fun(float3 f)
{
return f.xyxy;
}
float4 main() : SV_TARGET
{
return fun(33);
}
[test]
draw quad
probe all rgba (33.0, 33.0, 33.0, 33.0)