diff options
author | Riteo <riteo@posteo.net> | 2024-06-01 20:04:16 +0200 |
---|---|---|
committer | Riteo <riteo@posteo.net> | 2024-06-04 08:43:34 +0200 |
commit | 8f69f2969433ba88b8eda923ef2d576f81a959c1 (patch) | |
tree | c07b83cae7ee0d3fc71a87041a1244c7eafbae3c /thirdparty/glad/EGL | |
parent | 705b7a0b0bd535c95e4e8fb439f3d84b3fb4f427 (diff) | |
download | redot-engine-8f69f2969433ba88b8eda923ef2d576f81a959c1.tar.gz |
EGL: Use EGL_EXT_platform_base whenever possible
This avoids any assumption from the driver, which would otherwise select
a specific platform and potentially mess up everything, resulting
usually in a display server failure.
Diffstat (limited to 'thirdparty/glad/EGL')
-rw-r--r-- | thirdparty/glad/EGL/eglplatform.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/thirdparty/glad/EGL/eglplatform.h b/thirdparty/glad/EGL/eglplatform.h index 99362a23de..6786afd90b 100644 --- a/thirdparty/glad/EGL/eglplatform.h +++ b/thirdparty/glad/EGL/eglplatform.h @@ -64,6 +64,12 @@ typedef HDC EGLNativeDisplayType; typedef HBITMAP EGLNativePixmapType; typedef HWND EGLNativeWindowType; +#elif defined(__QNX__) + +typedef khronos_uintptr_t EGLNativeDisplayType; +typedef struct _screen_pixmap* EGLNativePixmapType; /* screen_pixmap_t */ +typedef struct _screen_window* EGLNativeWindowType; /* screen_window_t */ + #elif defined(__EMSCRIPTEN__) typedef int EGLNativeDisplayType; |