| 8 | std::map< std::string, std::weak_ptr<TextureResource> > TextureResource::sTextureMap; |
| 9 | |
| 10 | TextureResource::TextureResource(const ResourceManager& rm, const std::string& path) : mTextureID(0), mPath(path), mTextureSize(Eigen::Vector2i::Zero()) |
| 11 | { |
| 12 | reload(rm); |
| 13 | } |
| 14 | |
| 15 | TextureResource::~TextureResource() |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected