| 123456789101112131415161718192021222324252627282930 |
- #ifndef ANKI_CORE_NATIVE_WINDOW_ANDROID_H
- #define ANKI_CORE_NATIVE_WINDOW_ANDROID_H
- #include "anki/core/NativeWindow.h"
- #include <EGL/egl.h>
- #include <GLES3/gl3.h>
- #include <android_native_app_glue.h>
- namespace anki {
- /// Native window implementation for Android
- struct NativeWindowImpl
- {
- EGLDisplay display = EGL_NO_DISPLAY;
- EGLSurface surface = EGL_NO_SURFACE;
- EGLContext context = EGL_NO_CONTEXT;
- ~NativeWindowImpl()
- {
- destroy();
- }
- void create(NativeWindowInitializer& init);
- void destroy();
- };
- } // end namespace anki
- #endif
|