6 lines
80 B
GLSL
6 lines
80 B
GLSL
in vec4 pos_vs_in;
|
|
out vec4 pos_cs_in;
|
|
void main()
|
|
{
|
|
pos_cs_in = pos_vs_in;
|
|
}
|