blob: b99bd202aba3117b95db9cd696442d9f235da615 (
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
|
#version 330 core
#extension GL_ARB_viewport_array : enable
uniform mat4 viewProjection[4];
uniform int viewProjections;
in vec4 vworldPos[];
layout(triangles) in;
layout(triangle_strip, max_vertices = 12) out;
ifdef(`TEXTURES', in vec2 vtexCoord[]; out vec2 texCoord;);
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 = vtexCoord[v];);
EmitVertex();
}
EndPrimitive();
}
}
|