vkd3d/tests/hlsl/rt-get-sample-info.shader_test
Francisco Casas 19c23ca6f2 tests/shader_runner: Replace spaces with dashes in format names.
Probably good if we want to allow specifying several formats in the same
line, separated by spaces.

While at it, rename "r32g32 int" to "r32g32-sint".
2024-08-22 16:01:37 +02:00

35 lines
605 B
Plaintext

[require]
shader model >= 4.1
[rtv 0]
format r32g32b32a32-float
size (2dms, 4, 640, 480)
[pixel shader]
float4 main() : sv_target
{
return float4(GetRenderTargetSampleCount(), 0, 0, 0);
}
[test]
todo(glsl) draw quad
probe (0, 0) rgba (4.0, 0.0, 0.0, 0.0)
[pixel shader todo]
uniform uint u;
float4 main() : sv_target
{
return float4(GetRenderTargetSamplePosition(u), GetRenderTargetSamplePosition(u + 1));
}
[test]
uniform 0 uint 0
todo(sm<6) draw quad
probe (0, 0) rgba (-0.125, -0.375, 0.375, -0.125)
uniform 0 uint 2
todo(sm<6) draw quad
probe (0, 0) rgba (-0.375, 0.125, 0.125, 0.375)