blob: cdb60fae31cddc0f06d34f2eff4d8deb2e0a2667 [file] [log] [blame]
#version 310 es
layout(std140) uniform UBO
{
uniform mat4 uMVP;
};
layout(location = 0) in vec4 aVertex;
layout(location = 1) in vec3 aNormal;
layout(location = 0) out vec3 vNormal;
void set_output()
{
gl_Position = uMVP * aVertex;
vNormal = aNormal;
}
void main()
{
set_output();
}