This repository has been archived on 2024-12-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2024CG-project-render/glsl/pass-through.vs
github-classroom[bot] 686dcaf351
Initial commit
2024-11-29 09:50:03 +00:00

6 lines
80 B
GLSL

in vec4 pos_vs_in;
out vec4 pos_cs_in;
void main()
{
pos_cs_in = pos_vs_in;
}