18 lines
118 B
Plaintext
18 lines
118 B
Plaintext
struct Foo
|
|
{
|
|
float4 color;
|
|
};
|
|
|
|
struct Bar
|
|
{
|
|
Foo t;
|
|
};
|
|
|
|
void vs_main()
|
|
{
|
|
Foo f;
|
|
Bar b;
|
|
b.t = f;
|
|
}
|
|
|