interface EglCoreFactory
EglCoreFactory is an factory interface for creating new EglCore objects, possible using shared state
createEglCore |
Create a new EglCore object abstract fun createEglCore(): EglCore |
DefaultEglCoreFactory |
DefaultEglCoreFactory will create a root EglCore lazily if no shared context is provided. It will track all child EglCore objects and release the root core if all child cores are released. class DefaultEglCoreFactory : EglCoreFactory |