| 5057 | } |
| 5058 | |
| 5059 | void |
| 5060 | EffectInstance::onNodeHashChanged(U64 hash) |
| 5061 | { |
| 5062 | ///Invalidate actions cache |
| 5063 | _imp->actionsCache->invalidateAll(hash); |
| 5064 | |
| 5065 | const KnobsVec & knobs = getKnobs(); |
| 5066 | for (KnobsVec::const_iterator it = knobs.begin(); it != knobs.end(); ++it) { |
| 5067 | for (int i = 0; i < (*it)->getDimension(); ++i) { |
| 5068 | (*it)->clearExpressionsResults(i); |
| 5069 | } |
| 5070 | } |
| 5071 | } |
| 5072 | |
| 5073 | bool |
| 5074 | EffectInstance::canSetValue() const |
no test coverage detected