mirror of https://github.com/axmolengine/axmol.git
19 lines
314 B
GLSL
19 lines
314 B
GLSL
#version 310 es
|
|
|
|
|
|
layout(location = POSITION) in vec4 a_position;
|
|
layout(location = TEXCOORD0) in vec2 a_texCoord;
|
|
|
|
layout(location = TEXCOORD0) out vec2 v_texCoord;
|
|
|
|
|
|
layout(std140) uniform vs_ub {
|
|
mat4 u_MVPMatrix;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_Position = u_MVPMatrix * a_position;
|
|
v_texCoord = a_texCoord;
|
|
}
|