SPIRV-Cross/reference/shaders/geom/lines-adjacency.geom
Hans-Kristian Arntzen de33d89074 Add explicit in/out locations everywhere.
Needed for newer glslang. With Vulkan semantics for SPIR-V, all
locations must be explicitly defined.
2017-06-21 09:39:08 +02:00

27 lines
534 B
GLSL

#version 310 es
#extension GL_EXT_geometry_shader : require
layout(lines_adjacency) in;
layout(max_vertices = 3, line_strip) out;
layout(location = 0) out vec3 vNormal;
layout(location = 0) in VertexData
{
vec3 normal;
} vin[4];
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();
}