mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-18 00:37:43 +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;
|
|
}
|