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

gpu_shader_3D_groundline_geom.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03bee1b4e0699e8345a241d39c21141fcdd63441 (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

/* Make to be used with dynamic batching so no Model Matrix needed */
uniform mat4 ViewProjectionMatrix;

layout(points) in;
layout(line_strip, max_vertices = 2) out;

void main()
{
  vec3 vert = gl_in[0].gl_Position.xyz;

  gl_Position = ViewProjectionMatrix * vec4(vert.xyz, 1.0);
#ifdef USE_WORLD_CLIP_PLANES
  world_clip_planes_set_clip_distance(gl_in[0].gl_ClipDistance);
#endif
  EmitVertex();

  gl_Position = ViewProjectionMatrix * vec4(vert.xy, 0.0, 1.0);
#ifdef USE_WORLD_CLIP_PLANES
  world_clip_planes_calc_clip_distance(vec3(vert.xy, 0.0));
#endif
  EmitVertex();

  EndPrimitive();
}