mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 23:46:33 -05:00
cogl: Do not include both GLES2 and GL headers
EGLDevice requires a define from GLES2, even when GL is used instead. As type definitions may conflict between the two, we shouldn't include both at the same time. Instead, provide the missing define explicitly when not using GLES2. https://bugzilla.gnome.org/show_bug.cgi?id=774891
This commit is contained in:
parent
5eb5f72434
commit
71077d582b
@ -47,8 +47,13 @@
|
||||
#include "cogl-util-gl-private.h"
|
||||
|
||||
#if defined (COGL_HAS_EGL_SUPPORT)
|
||||
#include <GLES2/gl2.h>
|
||||
#include <GLES2/gl2ext.h>
|
||||
#include "cogl-egl-defines.h"
|
||||
# ifndef COGL_HAS_GLES2
|
||||
/* We need this define from GLES2, but can't include the header
|
||||
as its type definitions may conflict with the GL ones
|
||||
*/
|
||||
# define GL_TEXTURE_EXTERNAL_OES 0x8D65
|
||||
# endif
|
||||
#endif
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user