git-svn-id: svn://db.shs.com.ru/libs@30 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2015-06-25 08:28:11 +00:00
parent ff2939ca76
commit 8b5dca853a
27 changed files with 1062 additions and 0 deletions

13
qglview/shaders/test.geom Normal file
View File

@@ -0,0 +1,13 @@
#version 300 core
layout(triangles, invocations = 1) in;
//in vec3 normal[];
void main() {
for (int i = 0; i < gl_in.length(); i++ ) {
gl_Position = gl_in[i].gl_Position;
EmitVertex();
}
EndPrimitive();
}