add .h :)

SVN revision: 77049
This commit is contained in:
Carsten Haitzler 2012-09-25 08:14:14 +00:00
parent 4b81a0b3de
commit aa077796a9
2 changed files with 17 additions and 1 deletions

View File

@ -5,7 +5,8 @@ if BUILD_ENGINE_SOFTWARE_X11
SOFTWARE_X11_SOURCES = \
evas_engine.c \
evas_x_egl.c
evas_x_egl.c \
evas_x_egl.h
if BUILD_ENGINE_SOFTWARE_XLIB

View File

@ -0,0 +1,15 @@
#ifndef EVAS_X_EGL_H
#define EVAS_X_EGL_H
#include "evas_engine.h"
void *_egl_x_disp_get(void *d);
int _egl_x_disp_init(void *ed);
void *_egl_x_disp_choose_config(void *ed);
void *_egl_x_win_surf_new(void *ed, Window win, void *config);
void _egl_x_win_surf_free(void *ed, void *surf);
void *_egl_x_surf_map(void *ed, void *surf, int *stride);
void _egl_x_surf_unmap(void *ed, void *surf);
void _egl_x_surf_swap(void *ed, void *surf, int vsync);
#endif