I was wondering if it was possible to draw the edges of a rendered polygon with a specific color using a fragment shader, as in this example picture:

enter image description here

Or should I just render those separately?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

See work related on this page: http://cgg-journal.com/2008-2/06/index.html

A vertex shader should render polygons where the distance to each edge is colored.

The difference between coloring each "cell" is explained in much detail.

link|improve this answer
Thanks, this looks nice but geometry shaders are missing in opengl es 2.0 :) any other tips? – bad zeppelin Jul 28 '11 at 21:59
After a bit of digging thru I realized this can be done without the geometry shader as well. Thanks for the tip. – bad zeppelin Jul 29 '11 at 11:40
Great! Good luck! – Pindatjuh Jul 29 '11 at 12:03
feedback

Your Answer

 
or
required, but never shown

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