@@ -67,8 +67,7 @@ Preset preset_vox9_fast = {
6767
6868 // ___ Patch generation ___ // (patch segmentation)
6969 {" minPointCountPerCC" ," 16" }, // TODO(lf)-PRESET: subjective quality and performance only
70- {" maxPatchSize" ," 608" }, // TODO(lf)-PRESET: subjective quality and performance only
71-
70+
7271 // ___ Patch packing ___ //
7372 {" mapWidth" ," 608" },
7473 {" minimumMapHeight" ," 608" },
@@ -104,8 +103,7 @@ Preset preset_vox9_slow = {
104103
105104 // ___ Patch generation ___ // (patch segmentation)
106105 {" minPointCountPerCC" ," 5" }, // TODO(lf)-PRESET: fixed
107- {" maxPatchSize" ," 608" },
108-
106+
109107 // ___ Patch packing ___ //
110108 {" mapWidth" ," 608" },
111109 {" minimumMapHeight" ," 608" },
@@ -142,8 +140,7 @@ Preset preset_vox10_fast = {
142140
143141 // ___ Patch generation ___ // (patch segmentation)
144142 {" minPointCountPerCC" ," 16" },
145- {" maxPatchSize" ," 1024" },
146-
143+
147144 // ___ Patch packing ___ //
148145 {" mapWidth" ," 1024" },
149146 {" minimumMapHeight" ," 1024" },
@@ -179,8 +176,7 @@ Preset preset_vox10_slow = {
179176
180177 // ___ Patch generation ___ // (patch segmentation)
181178 {" minPointCountPerCC" ," 5" },
182- {" maxPatchSize" ," 1024" },
183-
179+
184180 // ___ Patch packing ___ //
185181 {" mapWidth" ," 1024" },
186182 {" minimumMapHeight" ," 1024" },
@@ -216,8 +212,7 @@ Preset preset_vox11_fast = {
216212
217213 // ___ Patch generation ___ // (patch segmentation)
218214 {" minPointCountPerCC" ," 16" },
219- {" maxPatchSize" ," 2048" },
220-
215+
221216 // ___ Patch packing ___ //
222217 {" mapWidth" ," 2048" },
223218 {" minimumMapHeight" ," 2048" },
@@ -253,8 +248,7 @@ Preset preset_vox11_slow = {
253248
254249 // ___ Patch generation ___ // (patch segmentation)
255250 {" minPointCountPerCC" ," 16" },
256- {" maxPatchSize" ," 2048" },
257-
251+
258252 // ___ Patch packing ___ //
259253 {" mapWidth" ," 2048" },
260254 {" minimumMapHeight" ," 2048" },
@@ -351,8 +345,7 @@ void applyPreset(Parameters& param) {
351345 // Adjust the size of the max size of the patch and maps dimension
352346 const std::string scaledSize = std::to_string ((1 + param.geoBitDepthInput - 11 ) * 2048 );
353347
354- setParameterValue (" maxPatchSize" , scaledSize, true );
355- setParameterValue (" mapWidth" , scaledSize, true );
348+ setParameterValue (" mapWidth" , scaledSize, true );
356349 setParameterValue (" minimumMapHeight" , scaledSize, true );
357350
358351 Logger::log<LogLevel::WARNING>(" LIBRARY INTERFACE" ,
0 commit comments