(geometry, edge)
| 257 | * recommendedMaxTri: number, |
| 258 | * } |
| 259 | * }} |
| 260 | */ |
| 261 | export function computeSmartResolution({ geometry, bounds, settings, texture }) { |
| 262 | if (!geometry || !bounds || !texture || !texture.imageData) { |
| 263 | return null; |
| 264 | } |
| 265 |
nothing calls this directly
no test coverage detected