mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Merge branch 'master' of github.com:bkaradzic/bgfx
This commit is contained in:
commit
ce4a141099
1 changed files with 10 additions and 0 deletions
10
3rdparty/glext/EGL/eglplatform.h
vendored
10
3rdparty/glext/EGL/eglplatform.h
vendored
|
@ -95,6 +95,16 @@ typedef int EGLNativeDisplayType;
|
||||||
typedef void *EGLNativeWindowType;
|
typedef void *EGLNativeWindowType;
|
||||||
typedef void *EGLNativePixmapType;
|
typedef void *EGLNativePixmapType;
|
||||||
|
|
||||||
|
#elif defined(__ANDROID__) || defined(ANDROID)
|
||||||
|
|
||||||
|
#include <android/native_window.h>
|
||||||
|
|
||||||
|
struct egl_native_pixmap_t;
|
||||||
|
|
||||||
|
typedef struct ANativeWindow* EGLNativeWindowType;
|
||||||
|
typedef struct egl_native_pixmap_t* EGLNativePixmapType;
|
||||||
|
typedef void* EGLNativeDisplayType;
|
||||||
|
|
||||||
#elif defined(__unix__)
|
#elif defined(__unix__)
|
||||||
|
|
||||||
/* X11 (tentative) */
|
/* X11 (tentative) */
|
||||||
|
|
Loading…
Reference in a new issue