2020-02-06 04:09:16 +00:00
|
|
|
#version 330 core
|
|
|
|
layout (location = 0) in vec4 vertex; // <vec2 position, vec2 texCoords>
|
2020-02-09 01:38:02 +00:00
|
|
|
layout (location = 3) in mat4 instanceMatrix;
|
2020-02-06 04:09:16 +00:00
|
|
|
|
|
|
|
out vec2 TexCoords;
|
|
|
|
|
2020-02-09 01:38:02 +00:00
|
|
|
//uniform mat4 pm;
|
2020-02-07 23:15:53 +00:00
|
|
|
//uniform mat4 projection;
|
2020-02-06 04:09:16 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
TexCoords = vertex.zw;
|
2020-02-07 23:15:53 +00:00
|
|
|
//gl_Position = projection * model * vec4(vertex.xy, 0.0, 1.0);
|
2020-02-09 01:38:02 +00:00
|
|
|
//gl_Position = pm * vec4(vertex.xy, 0.0, 1.0);
|
|
|
|
//gl_Position = projection * instanceMatrix * vec4(vertex.xy, 0.0, 1.0);
|
|
|
|
gl_Position = instanceMatrix * vec4(vertex.xy, 0.0, 1.0);
|
2020-02-06 04:09:16 +00:00
|
|
|
}
|