| 462 | } |
| 463 | |
| 464 | void ScriptModulationMatrix::fromBase64(String b64) |
| 465 | { |
| 466 | zstd::ZDefaultCompressor comp; |
| 467 | |
| 468 | MemoryBlock mb; |
| 469 | mb.fromBase64Encoding(b64); |
| 470 | |
| 471 | ValueTree v; |
| 472 | comp.expand(mb, v); |
| 473 | |
| 474 | restoreFromValueTree(v); |
| 475 | } |
| 476 | |
| 477 | void ScriptModulationMatrix::clearAllConnections() |
| 478 | { |
no test coverage detected