You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

geometry.geom 227B

123456789101112
  1. #version 320 es
  2. precision mediump float;
  3. layout (points) in;
  4. layout (points, max_vertices=1) out;
  5. void main() {
  6. gl_Position = gl_in[0].gl_Position + vec4(0.2, 0.0, 0.0, 0.0);
  7. gl_Layer = 8;
  8. EmitVertex();
  9. EndPrimitive();
  10. }