| 761 | } |
| 762 | |
| 763 | void TextureBase::unload(bool isReloading) |
| 764 | { |
| 765 | if (!isReloading) |
| 766 | { |
| 767 | // Release texture |
| 768 | _texture.UnloadTexture(); |
| 769 | SAFE_DELETE(_customData); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | Task* TextureBase::RequestMipDataAsync(int32 mipIndex) |
| 774 | { |
nothing calls this directly
no test coverage detected