| 64 | public: |
| 65 | |
| 66 | AddAsyncJob(TexPool *parent, uint32_t hash, uint8_t *buf, size_t bufSize) : |
| 67 | job::JobItem("TexPool::AddAsyncJob", NULL), m_parent(parent), m_hash(hash), m_buf(buf), m_bufSize(bufSize) |
| 68 | { |
| 69 | |
| 70 | } |
| 71 | |
| 72 | AddAsyncJob(TexPool *parent, uint32_t hash, const string& path) : |
| 73 | job::JobItem("TexPool::AddAsyncJob", NULL), m_parent(parent), m_hash(hash), m_buf(NULL), m_path(path) |
nothing calls this directly
no outgoing calls
no test coverage detected