| 883 | } |
| 884 | |
| 885 | TextDocument::LoadStatus TextDocument::loadFromMemory( const Uint8* data, const Uint32& size ) { |
| 886 | IOStreamMemory stream( (const char*)data, size ); |
| 887 | return loadFromStream( stream, mFilePath, true ); |
| 888 | } |
| 889 | |
| 890 | TextDocument::LoadStatus TextDocument::loadFromPack( Pack* pack, std::string filePackPath ) { |
| 891 | if ( NULL == pack ) |
no outgoing calls
no test coverage detected