| 233 | } |
| 234 | |
| 235 | void PvdImpl::addClient(PvdClient* client) |
| 236 | { |
| 237 | PX_ASSERT(client); |
| 238 | for(uint32_t i = 0; i < mPvdClients.size(); i++) |
| 239 | { |
| 240 | if(client == mPvdClients[i]) |
| 241 | return; |
| 242 | } |
| 243 | mPvdClients.pushBack(client); |
| 244 | if(mIsConnected) |
| 245 | { |
| 246 | client->onPvdConnected(); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | void PvdImpl::removeClient(PvdClient* client) |
| 251 | { |
no test coverage detected