| 126 | } |
| 127 | |
| 128 | unsigned int Image::getMaxMipCount() const |
| 129 | { |
| 130 | return (unsigned int) std::log2(std::max(_width, _height)) + 1; |
| 131 | } |
| 132 | |
| 133 | void Image::setTexelColor(unsigned int x, unsigned int y, const Color4& color) |
| 134 | { |
no test coverage detected