mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-12 13:10:06 +00:00
14 lines
95 B
GLSL
14 lines
95 B
GLSL
|
struct vs_in
|
||
|
{
|
||
|
};
|
||
|
|
||
|
struct vs_out
|
||
|
{
|
||
|
};
|
||
|
|
||
|
vs_out main (vs_in i)
|
||
|
{
|
||
|
vs_out o;
|
||
|
return o;
|
||
|
}
|