Skip to content
Snippets Groups Projects
Commit d8e6a106 authored by Francisco Casas's avatar Francisco Casas Committed by Alexandre Julliard
Browse files

tests: Test semantics in uniform variables.

parent e4d94d95
No related branches found
No related tags found
1 merge request!250vkd3d-shader/hlsl: Declare vars individually when parsing declarations.
......@@ -174,6 +174,7 @@ vkd3d_shader_tests = \
tests/hlsl/uav-rwbuffer.shader_test \
tests/hlsl/uav-rwstructuredbuffer.shader_test \
tests/hlsl/uav-rwtexture.shader_test \
tests/hlsl/uniform-semantics.shader_test \
tests/hlsl/vector-indexing-uniform.shader_test \
tests/hlsl/vector-indexing.shader_test \
tests/hlsl/writemask-assignop-0.shader_test \
......
% Semantics can be used in uniforms even though they are ignored.
[pixel shader]
float a : SEMANTIC;
float4 main() : sv_target
{
return a;
}
[test]
uniform 0 float 3.5
draw quad
probe all rgba (3.5, 3.5, 3.5, 3.5)
[pixel shader]
float2 a : sv_position;
float4 main() : sv_target
{
return float4(a, a);
}
[test]
uniform 0 float4 4.0 5.0 6.0 7.0
draw quad
probe all rgba (4.0, 5.0, 4.0, 5.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