First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
struct Nested { float y; Texture2D texNested; };
struct A { Nested n; float x; };
struct B { Nested n; Texture2D tex; };
Texture2D someTex;
float4 main(float4 vpos : VPOS) : COLOR0
{
A a1, a2;
B b;
// Assignment of nested structs to nested structs
a1.n = a2.n;
b .n = a1.n;
// Assignment of nested struct to standalone
Nested n = b.n;
// Assignment to nestested struct members
a2.n.texNested = someTex;
a1.n.y = 1.0;
return float4(0,0,0,0);
}