tests: Test side effects on indexes.

Co-authored-by: Francisco Casas <fcasas@codeweavers.com>
This commit is contained in:
Zebediah Figura 2023-03-23 15:47:55 -03:00 committed by Alexandre Julliard
parent 1b1978f684
commit 526b025c88
Notes: Alexandre Julliard 2023-04-13 23:20:40 +02:00
Approved-by: Zebediah Figura (@zfigura)
Approved-by: Francisco Casas (@fcasas)
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/124
2 changed files with 48 additions and 0 deletions

View File

@ -149,6 +149,7 @@ vkd3d_shader_tests = \
tests/sampler-offset.shader_test \ tests/sampler-offset.shader_test \
tests/saturate.shader_test \ tests/saturate.shader_test \
tests/shader-interstage-interface.shader_test \ tests/shader-interstage-interface.shader_test \
tests/side-effects.shader_test \
tests/sqrt.shader_test \ tests/sqrt.shader_test \
tests/step.shader_test \ tests/step.shader_test \
tests/swizzle-constant-prop.shader_test \ tests/swizzle-constant-prop.shader_test \

View File

@ -0,0 +1,47 @@
[pixel shader]
float4 main() : sv_target
{
float x[3] = {0, 2, 3};
return x[x[1] = 1];
}
[test]
draw quad
probe all rgba (1.0, 1.0, 1.0, 1.0)
[pixel shader]
uint4 func(uint t)
{
return uint4(t + 0, t + 1, t + 2, t + 3);
}
float4 main() : sv_target
{
return func(10)[func(0).y];
}
[test]
draw quad
todo probe all rgba (11.0, 11.0, 11.0, 11.0)
[pixel shader]
float4 func(void)
{
static uint i;
i += 1;
return float4(0.1, 0.2, 0.3, 0.4) + i;
}
float4 main() : sv_target
{
return func()[func().x];
}
[test]
draw quad
todo probe all rgba (2.2, 2.2, 2.2, 2.2)