| 14 | namespace Raytrace { |
| 15 | |
| 16 | LoadTextureJob::LoadTextureJob(NodeManagers *managers, const HAbstractTexture &handle) |
| 17 | : m_nodeManagers(managers) |
| 18 | , m_handle(handle) |
| 19 | { |
| 20 | Q_ASSERT(m_nodeManagers); |
| 21 | } |
| 22 | |
| 23 | void LoadTextureJob::run() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected