| 1253 | } |
| 1254 | |
| 1255 | void DspNetwork::setUseFrozenNode(bool shouldBeEnabled) |
| 1256 | { |
| 1257 | if (projectNodeHolder.isActive() == shouldBeEnabled) |
| 1258 | return; |
| 1259 | |
| 1260 | if (shouldBeEnabled && currentSpecs) |
| 1261 | projectNodeHolder.prepare(currentSpecs); |
| 1262 | |
| 1263 | projectNodeHolder.setEnabled(shouldBeEnabled); |
| 1264 | reset(); |
| 1265 | } |
| 1266 | |
| 1267 | bool DspNetwork::hashMatches() |
| 1268 | { |
no test coverage detected