vkd3d/tests/side-effects.shader_test
Francisco Casas 5c285adc6b vkd3d-shader/hlsl: Use hlsl_ir_index for array and record access.
From this point on, it is no longer true that only hlsl_ir_loads can
return objects, because an object can also come from chain of
hlsl_ir_indexes that ends in an hlsl_ir_load.

The lower_index_loads pass takes care of lowering all hlsl_ir_indexes
into hlsl_ir_loads.

For this reason, hlsl_resource_load_params now expects both the resource
as the sampler to be just an hlsl_ir_node pointer instead of a pointer
to a more specific hlsl_ir_load.
2023-04-13 23:05:32 +02:00

48 lines
593 B
Plaintext

[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
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)