| 5115 | } |
| 5116 | |
| 5117 | void |
| 5118 | EffectInstance::onNodeHashChanged(U64 hash) |
| 5119 | { |
| 5120 | ///Invalidate actions cache |
| 5121 | _imp->actionsCache->invalidateAll(hash); |
| 5122 | |
| 5123 | const KnobsVec & knobs = getKnobs(); |
| 5124 | for (KnobsVec::const_iterator it = knobs.begin(); it != knobs.end(); ++it) { |
| 5125 | for (int i = 0; i < (*it)->getDimension(); ++i) { |
| 5126 | (*it)->clearExpressionsResults(i); |
| 5127 | } |
| 5128 | } |
| 5129 | } |
| 5130 | |
| 5131 | bool |
| 5132 | EffectInstance::canSetValue() const |
no test coverage detected