| 2221 | } |
| 2222 | |
| 2223 | Decal::~Decal() |
| 2224 | { |
| 2225 | if (id != -1) |
| 2226 | { |
| 2227 | renderer->DeleteTexture(id); |
| 2228 | id = -1; |
| 2229 | } |
| 2230 | } |
| 2231 | |
| 2232 | void Renderable::Create(uint32_t width, uint32_t height, bool filter, bool clamp) |
| 2233 | { |
nothing calls this directly
no test coverage detected