Fixed: force thread strip direction for patches with collapsed edges

This commit is contained in:
Knut Morten Okstad 2018-05-31 11:21:12 +02:00
parent c8c0e6297c
commit f0b601b796

View File

@ -736,6 +736,8 @@ bool ASMs2D::collapseEdge (int edge, int basis)
return false; return false;
} }
threadGroups.stripDir = edge <= 2 ? ThreadGroups::U : ThreadGroups::V;
return true; return true;
} }