summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/commonShadowPoint.gs
blob: 2413cc01b9670dd584150e4a8944c5c430af52c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#version 330 core
#extension GL_ARB_viewport_array : enable

ifdef(`TEXTURES', include(`materialDetail.glsl'))

uniform mat4 viewProjection[4];
uniform int viewProjections;
in vec4 vworldPos[];
layout(triangles) in;
layout(triangle_strip, max_vertices = 12) out;

ifdef(`TEXTURES', in vec2 TexCoords[]; out vec2 texCoord;)
ifdef(`TEXTURES', flat in MaterialDetail Material[]; flat out MaterialDetail material;)

void
main()
{
	for (int vp = 0; vp < viewProjections; ++vp) {
		for (int v = 0; v < vworldPos.length(); ++v) {
			gl_Position = viewProjection[vp] * vworldPos[v];
			gl_Position.z = max(gl_Position.z, -1);
			gl_Layer = vp;
			ifdef(`TEXTURES', texCoord = TexCoords[v];)
			ifdef(`TEXTURES', material = Material[v];)
			EmitVertex();
		}
		EndPrimitive();
	}
}