blob: fdab772109e394796c53f29c7021ca3b3919fd23 [file] [log] [blame]
struct S {
float f;
float3 v;
float3x3 m;
};
cbuffer bufName {
S s;
};
S foo()
{
return s;
}
void main()
{
foo();
}