mirror of
https://github.com/RPCS3/glslang.git
synced 2025-02-15 00:17:27 +00:00
20 lines
162 B
GLSL
20 lines
162 B
GLSL
![]() |
struct S {
|
||
|
float f;
|
||
|
float3 v;
|
||
|
float3x3 m;
|
||
|
};
|
||
|
|
||
|
cbuffer bufName {
|
||
|
S s;
|
||
|
};
|
||
|
|
||
|
S foo()
|
||
|
{
|
||
|
return s;
|
||
|
}
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
foo();
|
||
|
}
|