Newer
Older
EMS_REFACTOR / bin / x86 / Debug / GeoScene / Globe / Temp / OceanResource / decal.glsl
nn-203 on 26 Jul 2017 176 bytes first commit
#ifdef OPENGL32
in vec4 position;
#else
attribute vec4 position;
#endif

uniform mat4 mvProj;

void main()
{
    vec4 clipPos = mvProj * position;
    gl_Position = clipPos;
}