summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/dynamicPointInst.vs
blob: 016153a3ce8621eea9e01481ad6e66c51ccb3a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#version 330 core

include(`meshIn.glsl')
layout(location = 6) in mat4 model;
include(`materialInterface.glsl')

uniform mat4 viewProjection;

void
main()
{
	vec4 worldPos = model * vec4(position, 1.0);

	FragPos = worldPos.xyz;
	TexCoords = texCoord;
	Normal = (model * vec4(normal, 0.0)).xyz;
	Colour = colour;
	Material = material;

	gl_Position = viewProjection * worldPos;
}