15 lines
No EOL
296 B
GLSL
15 lines
No EOL
296 B
GLSL
#version 330
|
|
attribute vec3 vertexPosition;
|
|
attribute vec2 vertexTexCoord;
|
|
attribute vec4 vertexColor;
|
|
uniform mat4 mvp;
|
|
|
|
out vec2 fragTexCoord;
|
|
out vec4 fragColor;
|
|
|
|
void main()
|
|
{
|
|
fragTexCoord = vertexTexCoord;
|
|
fragColor = vertexColor;
|
|
gl_Position = mvp * vec4(vertexPosition, 1.0);
|
|
} |