Newer
Older
EMS_SZ / bin / x86 / Debug / GeoScene / Globe / Temp / OceanResource / decal.glsl
root on 29 Apr 2016 176 bytes new ku
#ifdef OPENGL32
in vec4 position;
#else
attribute vec4 position;
#endif

uniform mat4 mvProj;

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