Initial commit
This commit is contained in:
commit
686dcaf351
68 changed files with 6230 additions and 0 deletions
10
glsl/pass-through.tes
Normal file
10
glsl/pass-through.tes
Normal file
|
@ -0,0 +1,10 @@
|
|||
layout(triangles, equal_spacing, ccw) in;
|
||||
in vec4 pos_es_in[];
|
||||
out vec4 pos_fs_in;
|
||||
// expects: interpolate
|
||||
void main()
|
||||
{
|
||||
pos_fs_in = interpolate(gl_TessCoord,pos_es_in[0], pos_es_in[1], pos_es_in[2]);
|
||||
gl_Position = pos_fs_in;
|
||||
}
|
||||
|
Reference in a new issue