-----------------------------------------------------------------------
| 148 | } |
| 149 | //----------------------------------------------------------------------- |
| 150 | static bool is_absolute_path(const char* path) |
| 151 | { |
| 152 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_WINRT |
| 153 | if (isalpha(uchar(path[0])) && path[1] == ':') |
| 154 | return true; |
| 155 | #endif |
| 156 | return path[0] == '/' || path[0] == '\\'; |
| 157 | } |
| 158 | //----------------------------------------------------------------------- |
| 159 | static String concatenate_path(const String& base, const String& name) |
| 160 | { |
no outgoing calls
no test coverage detected