Files
lime/project/include/renderer/opengl/Egl.h
2013-11-27 18:05:59 -08:00

14 lines
396 B
C

#ifndef LIME_OPENGL_EGL
#define LIME_OPENGL_EGL
void limeEGLDestroy();
void limeEGLSwapBuffers();
bool limeEGLResize(void *inX11Window, int &ioWidth, int &ioHeight);
bool limeEGLCreate(void *inX11Window, int &ioWidth, int &ioHeight,
int inOGLESVersion,
int inDepthBits,
int inStencilBits,
int inAlphaBits
);
#endif