You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
493 B
21 lines
493 B
10 months ago
|
#version 450 core
|
||
|
|
||
|
layout(location = 0) in vec3 a_position;
|
||
|
layout(location = 1) in vec4 a_color;
|
||
|
layout(location = 2) in float a_textureIndex;
|
||
|
|
||
|
out vec4 v_color;
|
||
|
out vec3 v_textureCoordinates;
|
||
|
out flat float v_textureIndex;
|
||
|
|
||
|
uniform mat4 u_projectionView;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
v_color = a_color;
|
||
|
v_textureCoordinates = a_position;
|
||
|
v_textureIndex = a_textureIndex;
|
||
|
// Vclip = Camera projection * Camera view * Model transform * Vlocal
|
||
|
gl_Position = u_projectionView * vec4(a_position, 1.0f);
|
||
|
}
|