Revert "this checkin supports windows OS in all Translator libs"

This reverts commit 0bf6848571.

This commit breaks Mca builds:
  development/tools/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp: In function 'EGLBoolean eglChooseConfig(void*, const EGLint*, void**, EGLint, EGLint*)':
  development/tools/emulator/opengl/host/libs/Translator/EGL/EglImp.cpp:412: error: 'PIXEL_FORMAT_INITIALIZER' was not declared in this scope
  make: *** [out/host/darwin-x86/obj/SHARED_LIBRARIES/libEGL_translator_intermediates/EglImp.o] Error 1
This commit is contained in:
Raphael Moll
2011-05-17 11:41:30 -07:00
parent 4e79d11a66
commit 603b37abac
12 changed files with 128 additions and 1322 deletions

View File

@@ -52,7 +52,7 @@ childProcess::create(const char *p_cmdLine, const char *p_startdir)
// close the thread handle we do not need it,
// keep the process handle for wait/trywait operations, will
// be closed on destruction
CloseHandle(child->m_proc.hThread);
CloseHandle(m_proc.hThread);
return child;
}
@@ -60,7 +60,7 @@ childProcess::create(const char *p_cmdLine, const char *p_startdir)
childProcess::~childProcess()
{
if (m_proc.hProcess) {
CloseHandle(m_proc.hProcess);
CloseHandle(child->m_proc.hProcess);
}
}