| 649 | } |
| 650 | |
| 651 | void Host::DrawLoadingFrame( const float progress, const char* const caption ) |
| 652 | { |
| 653 | // TODO - use this. |
| 654 | PC_UNUSED( caption ); |
| 655 | |
| 656 | if( system_window_ != nullptr && shared_drawers_ != nullptr ) |
| 657 | { |
| 658 | system_window_->BeginFrame(); |
| 659 | shared_drawers_->menu->DrawLoading( progress ); |
| 660 | system_window_->EndFrame(); |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | void Host::EnsureClient() |
| 665 | { |
nothing calls this directly
no test coverage detected