Added a geometry shader effect to the Shader example

This commit is contained in:
Mario Liebisch 2014-05-15 15:29:23 +02:00 committed by Lukas Dürrenberger
parent 1763861b26
commit 146f63874a
5 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,5 @@
void main()
{
// Transform the vertex position
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}