| 80 | } |
| 81 | |
| 82 | void TextureResource::deinit() |
| 83 | { |
| 84 | if(mTextureID != 0) |
| 85 | { |
| 86 | glDeleteTextures(1, &mTextureID); |
| 87 | mTextureID = 0; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | Eigen::Vector2i TextureResource::getSize() const |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected