Skip to content
Snippets Groups Projects
Commit 82ab1c2f authored by Francisco Casas's avatar Francisco Casas
Browse files

tests: Test indexing of non-loads.

parent d610a3ad
No related branches found
Tags wine-0.9.54
No related merge requests found
......@@ -63,6 +63,7 @@ vkd3d_shader_tests = \
tests/conditional.shader_test \
tests/entry-point-semantics.shader_test \
tests/exp.shader_test \
tests/expr-indexing.shader_test \
tests/floor.shader_test \
tests/frac.shader_test \
tests/function-return.shader_test \
......
[pixel shader todo]
float4 a, b;
float4 main() : sv_target
{
return (a + b)[1];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 float4 5.0 6.0 7.0 8.0
todo draw quad
todo probe all rgba (8.0, 8.0, 8.0, 8.0)
[pixel shader todo]
float4 a, b;
int i;
float4 main() : sv_target
{
return (a + b)[i];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 float4 5.0 6.0 7.0 8.0
uniform 8 int 2
todo draw quad
todo probe all rgba (10.0, 10.0, 10.0, 10.0)
[pixel shader todo]
float4 a;
int i;
float4 main() : sv_target
{
return a.wyxz[3];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
todo draw quad
todo probe all rgba (3.0, 3.0, 3.0, 3.0)
[pixel shader todo]
float4 a;
int i;
float4 main() : sv_target
{
return a.wyxz[i];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 int 0
todo draw quad
todo probe all rgba (4.0, 4.0, 4.0, 4.0)
uniform 4 int 2
todo draw quad
todo probe all rgba (1.0, 1.0, 1.0, 1.0)
[pixel shader]
float4 a;
int i;
float4 foo()
{
return a;
}
float4 main() : sv_target
{
return foo()[3];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 int 1
draw quad
probe all rgba (4.0, 4.0, 4.0, 4.0)
[pixel shader todo]
float4 a;
int i;
float4 foo()
{
return a;
}
float4 main() : sv_target
{
return foo()[i];
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 int 1
todo draw quad
todo probe all rgba (2.0, 2.0, 2.0, 2.0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment