| 184 | } |
| 185 | |
| 186 | static bool HasArgument(const char* search, int argc, char* argv[]) |
| 187 | { |
| 188 | for_subrange(i, 1, argc) |
| 189 | { |
| 190 | if (::strcmp(search, argv[i]) == 0) |
| 191 | return true; |
| 192 | } |
| 193 | return false; |
| 194 | } |
| 195 | |
| 196 | static bool ParseWindowSize(LLGL::Extent2D& size, int argc, char* argv[]) |
| 197 | { |
no test coverage detected