Skip to content

v1.1.0

Compare
Choose a tag to compare
@brendankenny brendankenny released this 11 Nov 02:57
· 78 commits to gh-pages since this release

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 than GL_TRIANGLES. However, since you had to handle GL_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.

  • testing, expectations viewer, etc