diff options
author | Kyle Brenneman <[email protected]> | 2016-09-12 17:51:22 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2016-10-05 11:41:26 -0400 |
commit | ca9f26ac6fcb0afb68101fb3f74fcb3100507c0c (patch) | |
tree | 622aeb0f5ccb27fe0f6b6f25e8c3be7abb577e62 /src/egl/main/eglglobals.c | |
parent | 6a5545d3ba60a19a3bce8f62141e0991a595eeaf (diff) |
egl: Implement EGL_KHR_debug (v2)
Wire up the debug entrypoints to EGL dispatch, and add the extension
string to the client extension list.
v2:
- Lots of style fixes
- Fix missing EGLAPIENTRYs
- Factor out valid attribute check
- Lock display in eglLabelObjectKHR as needed, and use RETURN_EGL_*
- Move "EGL_KHR_debug" into asciibetical order in client extension
string
Reviewed-by: Adam Jackson <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main/eglglobals.c')
-rw-r--r-- | src/egl/main/eglglobals.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/main/eglglobals.c b/src/egl/main/eglglobals.c index dca5c21f0dc..ac1a263ab52 100644 --- a/src/egl/main/eglglobals.c +++ b/src/egl/main/eglglobals.c @@ -56,6 +56,7 @@ struct _egl_global _eglGlobal = " EGL_EXT_platform_wayland" " EGL_EXT_platform_x11" " EGL_KHR_client_get_all_proc_addresses" + " EGL_KHR_debug" " EGL_MESA_platform_gbm", NULL, /* debugCallback */ |