| 624 | } |
| 625 | |
| 626 | unsigned int Image::GetDepth(UInt8 level) const |
| 627 | { |
| 628 | #if NAZARA_UTILITY_SAFE |
| 629 | if (level >= m_sharedImage->levels.size()) |
| 630 | { |
| 631 | NazaraError("Level out of bounds (" + String::Number(level) + " >= " + String::Number(m_sharedImage->levels.size()) + ')'); |
| 632 | return 0; |
| 633 | } |
| 634 | #endif |
| 635 | |
| 636 | return GetLevelSize(m_sharedImage->depth, level); |
| 637 | } |
| 638 | |
| 639 | PixelFormatType Image::GetFormat() const |
| 640 | { |
nothing calls this directly
no test coverage detected