-----------------------------------------------------------------------
| 94 | } |
| 95 | //----------------------------------------------------------------------- |
| 96 | static bool is_absolute_path( const char *path ) |
| 97 | { |
| 98 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_WINRT |
| 99 | if( isalpha( uchar( path[0] ) ) && path[1] == ':' ) |
| 100 | return true; |
| 101 | #endif |
| 102 | return path[0] == '/' || path[0] == '\\'; |
| 103 | } |
| 104 | //----------------------------------------------------------------------- |
| 105 | static String concatenate_path( const String &base, const String &name ) |
| 106 | { |
no outgoing calls
no test coverage detected