Fieldline bugfix

This commit is contained in:
Sebastian Piwell
2016-05-25 17:33:46 -04:00
parent 678ecc6370
commit c374fa2ce4

View File

@@ -49,7 +49,7 @@ void ABufferEmitVertex(vec4 pos) {
// project the position to view space
position = modelViewProjection*position;
gl_Position = position;
gl_Position = z_normalization(position);
EmitVertex();
}