In a pixel shader you can discard a pixel but I would imagine even a fast-fail shader called for every pixel takes a non-trivial time? Is there any way a vertex shader can discard an entire triangle... I am fairly sure a VS can't access the primitive but are there any tricks by which we can get the same result?

Talking SM 3.0 here - for completeness discussion on newer versions is welcome.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The geometry shader can do that trivially as you probably know, but no such thing in SM3.

It's harsh for the vertex shader to identify a triangle as such, since all the vertex shader sees is the individual vertices. But... in principle it's possible.

If you set the w coordinate to zero, a point will be projected to infinity. Set the w coordinates of all points to zero, and the entire triangle is at infinity, so it won't be rendered.

Alternatively, you could probably set gl_ClipDistance to zero or a value below zero (never really used those, but I guess this should work). That would mark the vertex as "behind" a clipping plane. If all three vertices are behind a clipping plane, the triangle is not visible.

You would need a way to identify the vertices that belong to the triangle that you want to discard, however... and that will not be easy unless you have a very special situation (such as for example knowing that you want to discard all triangles in some given bounding box, or all triangles in which the vertex attribute #5 is zero, or whatever).

link|improve this answer
Interesting ideas. My case is basically a per-tri culling based on a custom slice-plane (passed in shaders params). We do per-pixel tests but if we could drop entire polys that would be great. The problem is I guess, from a vertex, how to know if the other 2 are also on the 'wrong' side. Really I want to set some property on the vertex which has no effect unless all 3 vertices have it set. – John Mar 3 '11 at 15:23
But, but... is that not simply an user clip plane then? A single custom slice-plane should be supported pretty much on every hardware (I think even 5-6 years ago cards used to support 4 or so extra planes). Or, it could probably even be done with the "oblique near plane" hack. – Damon Mar 3 '11 at 15:31
@dm.skt Yes it is but on the pixel level (triangles which get sliced get part-drawn). Are you suggesting we add a hardware clip-plane which will cull whole polys, then only those at least partially visible remain for the pixel-shader to process? – John Mar 3 '11 at 16:33
Well what clipping (with a hardware clipplane or against the frustum, likewise) does is: a) nothing if the entire triangle is "in", b) slice through the triangle, introducing a new edge, if some verts are "in" and some are "out", and c) discard the entire triangle if all vertices are "out". So, if I understood your original concern correctly, that would be just what you want. – Damon Mar 3 '11 at 17:21
@dm.skt I don't recall that hardware clipping planes work on the per-pixel level in D3D9 as you describe. If you've got a link I'm happy to be proved wrong/ – John Mar 4 '11 at 12:05
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.