Geometry Shaders
DietrichPaul opened this issue ยท 3 comments
Describe your suggestion
How about supporting geometry shader?
It would help me to draw more complex shapes.
Additional context
Here is an example implementation: GeometryShaderTest.java
Just a heads up: GS are mostly avoided in games due to a lack of HW support, meaning that often GS are processed in SW leading to huge performance drop. There is almost always another way to do what a GS would do.