| 46 | } |
| 47 | |
| 48 | void online(StringId64 id, ResourceManager &rm) |
| 49 | { |
| 50 | TextureResource *tr = (TextureResource *)rm.get(RESOURCE_TYPE_TEXTURE, id); |
| 51 | tr->handle = bgfx::createTexture(tr->mem); |
| 52 | } |
| 53 | |
| 54 | void offline(StringId64 id, ResourceManager &rm) |
| 55 | { |
nothing calls this directly
no test coverage detected