| 166 | } |
| 167 | |
| 168 | void Texture::getImage(const GLint level, const GLenum format, const GLenum type, GLvoid * image) const |
| 169 | { |
| 170 | bind(); |
| 171 | |
| 172 | glGetTexImage(m_target, level, format, type, image); |
| 173 | } |
| 174 | |
| 175 | std::vector<unsigned char> Texture::getImage(const GLint level, const GLenum format, const GLenum type) const |
| 176 | { |
nothing calls this directly
no test coverage detected