Import project/ code

This commit is contained in:
Joshua Granick
2013-11-25 23:32:25 -08:00
parent 5f258a833f
commit 9141d52836
313 changed files with 62693 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef NME_OPENGL_EGL
#define NME_OPENGL_EGL
void nmeEGLDestroy();
void nmeEGLSwapBuffers();
bool nmeEGLResize(void *inX11Window, int &ioWidth, int &ioHeight);
bool nmeEGLCreate(void *inX11Window, int &ioWidth, int &ioHeight,
int inOGLESVersion,
int inDepthBits,
int inStencilBits,
int inAlphaBits
);
#endif