| 65 | } |
| 66 | |
| 67 | std::string ToString( Tr2WindowMode::Type windowMode ) |
| 68 | { |
| 69 | switch( windowMode ) |
| 70 | { |
| 71 | case Tr2WindowMode::FULL_SCREEN: |
| 72 | return "full screen"; |
| 73 | case Tr2WindowMode::WINDOWED: |
| 74 | return "windowed"; |
| 75 | case Tr2WindowMode::FIXED_WINDOW: |
| 76 | return "fixed window"; |
| 77 | default: |
| 78 | return "INVALID WINDOW MODE"; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | std::string ToString( Tr2WindowShowState::Type windowShowState ) |
| 83 | { |
no outgoing calls
no test coverage detected