mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
14 lines
108 B
GLSL
14 lines
108 B
GLSL
struct ps_in
|
|
{
|
|
};
|
|
|
|
struct ps_out
|
|
{
|
|
};
|
|
|
|
ps_out main (ps_in i)
|
|
{
|
|
ps_out o;
|
|
return o;
|
|
}
|