| 433 | } |
| 434 | |
| 435 | ImageType Texture::GetType() const |
| 436 | { |
| 437 | #if NAZARA_RENDERER_SAFE |
| 438 | if (!m_impl) |
| 439 | { |
| 440 | NazaraError("Texture must be valid"); |
| 441 | return ImageType_2D; |
| 442 | } |
| 443 | #endif |
| 444 | |
| 445 | return m_impl->type; |
| 446 | } |
| 447 | |
| 448 | unsigned int Texture::GetWidth(UInt8 level) const |
| 449 | { |
no outgoing calls
no test coverage detected