| 20 | } |
| 21 | |
| 22 | void OpenGLESPlatform::initialise(OpenGLESImageLoader* _loader, std::string_view _logName) |
| 23 | { |
| 24 | assert(!mIsInitialise); |
| 25 | mIsInitialise = true; |
| 26 | |
| 27 | if (!_logName.empty()) |
| 28 | LogManager::getInstance().createDefaultSource(_logName); |
| 29 | |
| 30 | mRenderManager->initialise(_loader); |
| 31 | mDataManager->initialise(); |
| 32 | } |
| 33 | |
| 34 | void OpenGLESPlatform::shutdown() |
| 35 | { |
nothing calls this directly
no test coverage detected