| 6036 | } |
| 6037 | |
| 6038 | void |
| 6039 | KnobHolder::refreshInstanceSpecificKnobsOnly(bool isPlayback, |
| 6040 | double time) |
| 6041 | { |
| 6042 | assert( QThread::currentThread() == qApp->thread() ); |
| 6043 | if ( !getApp() || getApp()->isGuiFrozen() ) { |
| 6044 | return; |
| 6045 | } |
| 6046 | for (U32 i = 0; i < _imp->knobs.size(); ++i) { |
| 6047 | if ( _imp->knobs[i]->isInstanceSpecific() ) { |
| 6048 | _imp->knobs[i]->onTimeChanged(isPlayback, time); |
| 6049 | } |
| 6050 | } |
| 6051 | } |
| 6052 | |
| 6053 | KnobIPtr |
| 6054 | KnobHolder::getKnobByName(const std::string & name) const |
no test coverage detected