Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shadow_process_geom.glsl « shaders « eevee « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 591666560c4612e7867ccc1c798dd4dc843a42af (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
30
31
32
33
34
35
36

layout(triangles) in;
layout(triangle_strip, max_vertices = 3) out;

layout(std140) uniform shadow_render_block
{
  /* Use vectors to avoid alignment padding. */
  ivec4 shadowSampleCount;
  vec4 shadowInvSampleCount;
  vec4 filterSize;
  int viewCount;
  int baseId;
  float cubeTexelSize;
  float storedTexelSize;
  float nearClip;
  float farClip;
  float exponent;
};

in int layerID_g[];

flat out int layerID;

void main()
{
  gl_Layer = layerID_g[0];
  layerID = gl_Layer - baseId;

  gl_Position = gl_in[0].gl_Position;
  EmitVertex();
  gl_Position = gl_in[1].gl_Position;
  EmitVertex();
  gl_Position = gl_in[2].gl_Position;
  EmitVertex();
  EndPrimitive();
}