Returning points instead of triangles from the tessellation stage

Started by
0 comments, last by MJP 11 years, 4 months ago
Again may be a rookie question, and I think I ve read about this somewhere in a book on Direct3D 11, but I just wanted to confirm.

Is it possible to stream out pointlist instead of triangle lists from the Tesselation stages (Hull and Domain Shaders) from a four control point list? And I dnt know if this is a valid question either or whether I should be asking it here, but how does OpenGL fare in this regard? I have heard from a friend that something like this is possible in OpenGL, so if it is, does the hardware support it? Is this a Direct3D limitation (for performance reasons or something)?

Thanks in advance.
Advertisement
Well there certainly isn't a "point" domain for tessellation, because there would be nothing to tessellate. There's only "line", "triangle", and "quad". However if you use a geometry shader, you can take either a point, line, or triangle as input and output any of those primitive types.

This topic is closed to new replies.

Advertisement