Line.vertsh
348 Bytes
/*==============================================================================
Copyright
All Rights Reserved.
==============================================================================*/
attribute vec4 vertexPosition;
uniform mat4 modelViewProjectionMatrix;
void main()
{
gl_Position = modelViewProjectionMatrix * vertexPosition;
}