| 5 | namespace sd |
| 6 | { |
| 7 | Texture::Texture() |
| 8 | { |
| 9 | Data = nullptr; |
| 10 | Width = Height = Depth = 0; |
| 11 | MipmapLevels = 0; |
| 12 | MinFilter = Filter::Nearest; |
| 13 | MagFilter = Filter::Nearest; |
| 14 | WrapU = Wrap::Repeat; |
| 15 | WrapV = Wrap::Repeat; |
| 16 | } |
| 17 | Texture::~Texture() |
| 18 | { |
| 19 | m_cleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected