OpenSubdiv: Remove workaround for simple subdivision mode

This case is now supposed to be supported by OpenSubdiv.
This commit is contained in:
2015-08-03 15:30:25 +02:00
parent b26eb47961
commit b4e1b7b18c

View File

@@ -853,10 +853,7 @@ CCGError ccgSubSurf_syncFace(CCGSubSurf *ss, CCGFaceHDL fHDL, int numVerts, CCGV
static void ccgSubSurf__sync(CCGSubSurf *ss)
{
#ifdef WITH_OPENSUBDIV
/* TODO(sergey): This is because OSD evaluator does not support
* bilinear subdivision scheme at this moment.
*/
if (ss->meshIFC.simpleSubdiv == false || ss->skip_grids == true) {
if (true) {
ccgSubSurf__sync_opensubdiv(ss);
}
else