v1.1.0
Changes:
-
libtess will no longer emit triangle fans or strips, only triangles. Adding a
GLU_TESS_EDGE_FLAG
callback now only affects if that function is called back with edge information. Fully backwards compatible:- if you used
GLU_TESS_EDGE_FLAG
before, tessellation output is identical, whether or not you now use the flag - if you did not use
GLU_TESS_EDGE_FLAG
before, you will no longer receive rendering primitives other thanGL_TRIANGLES
. However, since you had to handleGL_TRIANGLES
output anyways (e.g. for suboptimal strips), little change should be required. Also, it's not 1994 anymore, don't use triangle fans.
See #9 for more details.
- if you used
-
testing, expectations viewer, etc