I'm trying to make a vector drawing application using OpenGL which will allow the user to see the result in real time. The way I have it set up is with an edge flag callback so the glu tesselator only outputs triangles which I then pass to a VBO. I'v tried t make all my algorithms as fast as possible and this is not where my issue is. According to a few code profilers, my big slowdown occurs in a call to GLUTessEndPolygon() which is the function that makes the polygon. I have found that when the shape exceeds 100 input verticies, it gets really really slow and basically destroys all the hard work I did to optimize everything else. What can I do? I provide the normal of (0,0,1). I also tried all the tips from the GL redbook. Is there a way to make the tesselator tesselate quicker but with less precision?

Thanks

link|improve this question

possible duplicate of Alternative to GLUTesselator? – finnw Jul 4 '11 at 15:35
feedback

1 Answer

You might give poly2tri a try to see if it's any faster.

link|improve this answer
Thanks, except, where can I find usage information on it? Also does it need to be compiled as a lib, or can it just be used as is? Thanks – Milo Aug 12 '10 at 2:08
I just used the source browser. It looks like you should be able to just add the files to your project. – genpfault Aug 12 '10 at 5:15
Can ithave self intersecting polygons? – Milo Aug 13 '10 at 1:53
What about the General Polygon Clipper? – Milo Aug 13 '10 at 2:16
feedback

Your Answer

 
or
required, but never shown

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