emulator opengl: pool of fixups to the host side.

Those are the host side fixups required for the system to load
without failure to the point of bootanimation is run.

Change-Id: I42eebb123b05aaf6a0671e91e77a4ba6b330b852
This commit is contained in:
Stas Gurtovoy
2011-06-01 11:01:22 +03:00
committed by Guy Zadickario
parent 3f5c95553a
commit 613025efb3
16 changed files with 170 additions and 18 deletions

View File

@@ -32,6 +32,7 @@ RenderServer *RenderServer::create(int port)
server->m_listenSock = new TcpStream();
if (server->m_listenSock->listen(port) < 0) {
ERR("RenderServer::create failed to listen on port %d\n", port);
delete server;
return NULL;
}
@@ -48,6 +49,7 @@ int RenderServer::Main()
break;
}
DBG("\n\n\n\n Got new stream!!!! \n\n\n\n\n");
// check if we have been requested to exit while waiting on accept
if (m_exit) {
break;