Newer
Older
GHFX_REFACTOR / bin / x86 / Debug / GeoScene / Globe / Temp / OceanResource / decal.glsl
wxn on 2 Nov 2016 176 bytes 提交
#ifdef OPENGL32
in vec4 position;
#else
attribute vec4 position;
#endif

uniform mat4 mvProj;

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