12 lines
92 B
Plaintext
12 lines
92 B
Plaintext
struct Data
|
|
{
|
|
float4 color;
|
|
};
|
|
|
|
void vs_main()
|
|
{
|
|
Data d;
|
|
float4 x = d.color;
|
|
}
|
|
|