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

single-invocation.geom « geom « shaders « opt « reference - github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdccacc04f1cc5bd03696aac11fca76ad4992b45 (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
#version 310 es
#extension GL_EXT_geometry_shader : require
layout(triangles) in;
layout(max_vertices = 3, triangle_strip) out;

layout(location = 0) out vec3 vNormal;
layout(location = 0) in VertexData
{
    vec3 normal;
} vin[3];


void main()
{
    gl_Position = gl_in[0].gl_Position;
    vNormal = vin[0].normal;
    EmitVertex();
    gl_Position = gl_in[1].gl_Position;
    vNormal = vin[1].normal;
    EmitVertex();
    gl_Position = gl_in[2].gl_Position;
    vNormal = vin[2].normal;
    EmitVertex();
    EndPrimitive();
}