Initial commit
This commit is contained in:
commit
686dcaf351
68 changed files with 6230 additions and 0 deletions
6
glsl/pass-through.vs
Normal file
6
glsl/pass-through.vs
Normal file
|
@ -0,0 +1,6 @@
|
|||
in vec4 pos_vs_in;
|
||||
out vec4 pos_cs_in;
|
||||
void main()
|
||||
{
|
||||
pos_cs_in = pos_vs_in;
|
||||
}
|
Reference in a new issue