mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-01-28 13:05:02 -08:00
tests: Test indexing of non-loads.
This commit is contained in:
parent
526b025c88
commit
8cd3defe0d
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
@ -65,6 +65,7 @@ vkd3d_shader_tests = \
|
|||||||
tests/distance.shader_test \
|
tests/distance.shader_test \
|
||||||
tests/entry-point-semantics.shader_test \
|
tests/entry-point-semantics.shader_test \
|
||||||
tests/exp.shader_test \
|
tests/exp.shader_test \
|
||||||
|
tests/expr-indexing.shader_test \
|
||||||
tests/floor.shader_test \
|
tests/floor.shader_test \
|
||||||
tests/frac.shader_test \
|
tests/frac.shader_test \
|
||||||
tests/function-return.shader_test \
|
tests/function-return.shader_test \
|
||||||
|
103
tests/expr-indexing.shader_test
Normal file
103
tests/expr-indexing.shader_test
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
[pixel shader]
|
||||||
|
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
|
||||||
|
draw quad
|
||||||
|
probe all rgba (8.0, 8.0, 8.0, 8.0)
|
||||||
|
|
||||||
|
|
||||||
|
[pixel shader todo]
|
||||||
|
float4 a, b;
|
||||||
|
float 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 float 2
|
||||||
|
todo draw quad
|
||||||
|
todo probe all rgba (10.0, 10.0, 10.0, 10.0)
|
||||||
|
|
||||||
|
|
||||||
|
[pixel shader]
|
||||||
|
float4 a;
|
||||||
|
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
return a.wyxz[3];
|
||||||
|
}
|
||||||
|
|
||||||
|
[test]
|
||||||
|
uniform 0 float4 1.0 2.0 3.0 4.0
|
||||||
|
draw quad
|
||||||
|
probe all rgba (3.0, 3.0, 3.0, 3.0)
|
||||||
|
|
||||||
|
|
||||||
|
[pixel shader todo]
|
||||||
|
float4 a;
|
||||||
|
float i;
|
||||||
|
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
return a.wyxz[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
[test]
|
||||||
|
uniform 0 float4 1.0 2.0 3.0 4.0
|
||||||
|
uniform 4 float 0
|
||||||
|
todo draw quad
|
||||||
|
todo probe all rgba (4.0, 4.0, 4.0, 4.0)
|
||||||
|
uniform 4 float 2
|
||||||
|
todo draw quad
|
||||||
|
todo probe all rgba (1.0, 1.0, 1.0, 1.0)
|
||||||
|
|
||||||
|
|
||||||
|
[pixel shader]
|
||||||
|
float4 a;
|
||||||
|
|
||||||
|
float4 foo()
|
||||||
|
{
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
return foo()[3];
|
||||||
|
}
|
||||||
|
|
||||||
|
[test]
|
||||||
|
uniform 0 float4 1.0 2.0 3.0 4.0
|
||||||
|
draw quad
|
||||||
|
probe all rgba (4.0, 4.0, 4.0, 4.0)
|
||||||
|
|
||||||
|
|
||||||
|
[pixel shader todo]
|
||||||
|
float4 a;
|
||||||
|
float 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 float 1
|
||||||
|
todo draw quad
|
||||||
|
todo probe all rgba (2.0, 2.0, 2.0, 2.0)
|
Loading…
x
Reference in New Issue
Block a user