| 758 | SourceImageData(SourceImageData&& other) = delete; |
| 759 | |
| 760 | ~SourceImageData() |
| 761 | { |
| 762 | for (auto mipLevel : data) |
| 763 | { |
| 764 | if (mipLevel) |
| 765 | stbi_image_free((void*)mipLevel); |
| 766 | } |
| 767 | data.fill(nullptr); |
| 768 | } |
| 769 | }; |
| 770 | |
| 771 | std::vector<std::shared_ptr<SourceImageData>> images; |
nothing calls this directly
no outgoing calls
no test coverage detected