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

tests: Rename structs for readability in broadcast test.

parent 3bae0c92
No related branches found
No related tags found
1 merge request!29vkd3d-shader/hlsl: Support complex implicit casts, complex explicit casts and complex broadcasts. (PART 1/2)
[pixel shader]
struct foo
struct apple
{
float3 aa;
float4 bb;
};
struct bar
struct banana
{
struct foo aa;
struct apple aa;
int2 bb;
int4 cc[8];
};
float4 main() : SV_TARGET
{
struct bar p = (struct bar)42;
struct banana p = (struct banana)42;
return p.aa.bb + p.cc[5];
}
......
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