mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2025-01-03 05:31:12 +00:00
Minor bug-fix : the generateLegacySharpCornerPatches option was initialized incorrectly in the new PatchBuilder class
This commit is contained in:
parent
19a9241579
commit
30e431a3f7
@ -154,7 +154,7 @@ PatchBuilder::PatchBuilder(TopologyRefiner const & refiner,
|
|||||||
bool useInfSharpPatch, bool generateLegacySharpCornerPatches) :
|
bool useInfSharpPatch, bool generateLegacySharpCornerPatches) :
|
||||||
_refiner(refiner),
|
_refiner(refiner),
|
||||||
_useInfSharpPatch(useInfSharpPatch),
|
_useInfSharpPatch(useInfSharpPatch),
|
||||||
_generateLegacySharpCornerPatches(_generateLegacySharpCornerPatches) {
|
_generateLegacySharpCornerPatches(generateLegacySharpCornerPatches) {
|
||||||
|
|
||||||
// If client-code does not select specific channels, default to all
|
// If client-code does not select specific channels, default to all
|
||||||
// the channels in the refiner.
|
// the channels in the refiner.
|
||||||
|
Loading…
Reference in New Issue
Block a user