mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 01:50:42 -05:00
Include cogl/cogl-egl.h from clutter-egl-headers.h
Since Cogl version 1.11.2, Cogl no longer includes the EGL headers from cogl.h if COGL_ENABLE_EXPERIMENTAL_2_0_API is defined. Instead the application needs to include cogl-egl.h so that we can avoid polluting the global namespace with X defines. Clutter defines the 2.0 define in its configure.ac and it is relying on Cogl to include the right EGL header in clutter-egl-headers.h so we need to change which header it includes.
This commit is contained in:
parent
03f4f1c69e
commit
cda4493f99
@ -25,6 +25,17 @@
|
||||
/* Clutter relies on Cogl to abstract GLES1/2/OpenGL and GLX/EGL etc
|
||||
* so we simply include the Cogl header to pull in the appropriate EGL
|
||||
* header. */
|
||||
|
||||
#include <cogl/cogl.h>
|
||||
|
||||
/* Since Cogl 1.11.2, the EGL headers are no longer included from
|
||||
* cogl.h when the experimental 2.0 API is requested. Clutter requests
|
||||
* this in its configure script so we need to switch the header we
|
||||
* include in that case. COGL_VERSION_CHECK is also new in 1.11.2 */
|
||||
#ifdef COGL_VERSION_CHECK
|
||||
#if COGL_VERSION_CHECK (1, 11, 2)
|
||||
#include <cogl/cogl-egl.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __CLUTTER_EGL_HEADERS_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user