| 501 | //------------------------------------------------------------------------------------- |
| 502 | |
| 503 | TSThread * TSShapeInstance::addThread() |
| 504 | { |
| 505 | if (mShape->sequences.empty()) |
| 506 | return NULL; |
| 507 | |
| 508 | mThreadList.increment(); |
| 509 | mThreadList.last() = new TSThread(this); |
| 510 | setDirty(AllDirtyMask); |
| 511 | return mThreadList.last(); |
| 512 | } |
| 513 | |
| 514 | TSThread * TSShapeInstance::getThread(S32 threadNumber) |
| 515 | { |
no test coverage detected