| 568 | android_app* NativeEngine::GetAndroidApp() { return mApp; } |
| 569 | |
| 570 | bool NativeEngine::InitGLObjects() { |
| 571 | if (!mHasGLObjects) { |
| 572 | SceneManager* mgr = SceneManager::GetInstance(); |
| 573 | mgr->StartGraphics(); |
| 574 | _log_opengl_error(glGetError()); |
| 575 | mHasGLObjects = true; |
| 576 | } |
| 577 | return true; |
| 578 | } |
nothing calls this directly
no test coverage detected