Move weston-egl-ext.h include to gles2-renderer.c

The weston-egl-ext.h include in compositor.h is not needed.  Rather,
it is only needed by gles2-renderer.c.  This also fixes external
module compile error since weston-egl-ext.h is not part of the
Weston SDK:

weston/compositor.h:39:28: fatal error: weston-egl-ext.h:
	No such file or directory

Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
This commit is contained in:
U. Artie Eoff 2013-02-23 19:22:50 -08:00 committed by Kristian Høgsberg
parent acf948cdfa
commit 41fe245625
2 changed files with 1 additions and 1 deletions

View file

@ -36,7 +36,6 @@
#include "version.h"
#include "matrix.h"
#include "config-parser.h"
#include "weston-egl-ext.h"
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])

View file

@ -29,6 +29,7 @@
#include <assert.h>
#include "compositor.h"
#include "weston-egl-ext.h"
static const char *
egl_error_string(EGLint code)