move Xlib includes from gl_common to gl_x11

SVN revision: 31201
This commit is contained in:
doursse 2007-08-07 09:03:22 +00:00 committed by doursse
parent ed716c1888
commit 9c17b01d0b
2 changed files with 6 additions and 6 deletions

View File

@ -20,13 +20,9 @@
#include <sys/time.h>
#include <unistd.h>
#ifndef WIN32
# include <X11/Xlib.h>
# include <X11/Xatom.h>
# include <X11/Xutil.h>
#else
#ifdef BUILD_ENGINE_GL_GLEW
# include <GL/glew.h>
#endif /* WIN32 */
#endif /* BUILD_ENGINE_GL_GLEW */
#include <GL/gl.h>
#include <GL/glu.h>

View File

@ -1,6 +1,10 @@
#ifndef EVAS_ENGINE_H
#define EVAS_ENGINE_H
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include "evas_gl_common.h"
typedef struct _Evas_GL_X11_Window Evas_GL_X11_Window;