| 393 | } |
| 394 | |
| 395 | std::vector<std::string> VisualObject::getInfoLines() const |
| 396 | { |
| 397 | auto res = Object::getInfoLines(); |
| 398 | if ( renderObj_ ) |
| 399 | res.push_back( "GL mem: " + bytesString( renderObj_->glBytes() ) ); |
| 400 | return res; |
| 401 | } |
| 402 | |
| 403 | void VisualObject::resetFrontColor() |
| 404 | { |
nothing calls this directly
no test coverage detected