| 157 | U32 getWidth( U32 mipLevel = 0 ) const { return getMax( U32(1), mWidth >> mipLevel ); } |
| 158 | U32 getHeight( U32 mipLevel = 0 ) const { return getMax(U32(1), mHeight >> mipLevel); } |
| 159 | U32 getDepth( U32 mipLevel = 0 ) const { return getMax(U32(1), mDepth >> mipLevel); } |
| 160 | |
| 161 | U32 getMipLevels() const { return mMipMapCount; } |
| 162 |
no test coverage detected