| 99 | } |
| 100 | |
| 101 | bool Tr2LightProfileRes::ParseIes() |
| 102 | { |
| 103 | std::string contents; |
| 104 | contents.resize( m_dataStream->GetSize() ); |
| 105 | m_dataStream->Read( contents.data(), contents.size() ); |
| 106 | return ParseIes( contents, m_bitmap ); |
| 107 | } |
| 108 | |
| 109 | |
| 110 | bool Tr2LightProfileRes::ParseIes( const std::string& contents, ImageIO::HostBitmap& bitmap ) |
nothing calls this directly
no test coverage detected