So, I've been trying to draw a cylinder out of a line strip adjacency primitive with the geometry shader and it works for 4 vertices, but I want to make it so I that can apply it to longer line strips. The problem is that, it messes up completely after the fourth vertex. I know that the primitive gives the shader access to adjacency information, but I'm not sure how to access it, so my question is:
How do I use the adjacency information? And, Would it be possible to do this for multiple lines with the same drawing call?
I would very much appreciate pseudo code examples if you can provide it.
The following diagram comes from the D3D10 documentation, but I feel it conveys primitive topology better than the diagrams in the OpenGL specification.
What you need to understand is that when you use a primitive type w/Adjacency (e.g.
GL_LINE_STRIP_ADJACENCY
) you actually have to supply additional data in your index buffer.Do you see the dotted lines in the diagram? Those are extra indices that you have to insert into your index buffer (or simply as extra vertices if you are not using indexed drawing commands).
You are only interested in a line strip, so your case is very simple to index.
You will add an extra index to the beginning and end of your line strip to provide adjacent vertex information (denoted as 0 and 5 in the diagram above).
Say for instance you have the following (indexed) line strip:
And you have determined the following end-adjacency:
Your line strip w/Adjacency would be indexed thus:
As you can see, 2 extra indices (denoted using
[X]
) had to be added, because the first and last lines would otherwise have no vertex preceding or following them. Those indices do not form lines in the strip, they are just there to fill-in adjacency information where it would otherwise be undefined.Pseudo-code to access adjacent vertices in a line strip with adjacency in a Geometry Shader:
The Geometry Shader follows the description given in the OpenGL specification: