First commit of the system egl implementation.

At this point system/egl should build without errors

Change-Id: Ieabae930fc20a8df4f3d68f179d685401e946e74
This commit is contained in:
Stas Gurtovoy
2011-04-26 11:19:21 +03:00
committed by Guy Zadikario
parent 8c7d5519e2
commit 37db3deb7b
7 changed files with 974 additions and 1 deletions

View File

@@ -22,10 +22,11 @@ struct EGLContext_t;
struct EGLThreadInfo
{
EGLThreadInfo() : currentContext(NULL), hostConn(NULL) {}
EGLThreadInfo() : currentContext(NULL), hostConn(NULL), eglError(0) {}
EGLContext_t *currentContext;
HostConnection *hostConn;
int eglError;
};