Questions tagged [geometry-shader]

Geometry shader should not be mixed up with [vertex-shader], but are shader programs executed after vertex shaders. They take as input a whole primitive like point, line or triangle.

Geometry shaders are the 3rd type of GPU shader programs after and and process whole primitives like points, lines or triangles.

Resources

211 questions
-4
votes
1 answer

When I add geometric shader to shaderprogram than object dont render

I code my game with tutoterial by thinmatrix and when I add geometric shaders to water. Than water dont display. This is my ShaderProgram: package shaders; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import…
1 2 3
…
14
15