| 85 | } |
| 86 | |
| 87 | void MeshRenderer::createAsync(std::string_view modelPath, |
| 88 | const std::function<void(MeshRenderer*, void*)>& callback, |
| 89 | void* callbackparam) |
| 90 | { |
| 91 | createAsync(modelPath, "", callback, callbackparam); |
| 92 | } |
| 93 | |
| 94 | void MeshRenderer::createAsync(std::string_view modelPath, |
| 95 | std::string_view texturePath, |
nothing calls this directly
no test coverage detected