Removed debug message

This commit is contained in:
Robert Osfield
2009-11-10 14:59:42 +00:00
parent 6b87322e99
commit d3ab362eae

View File

@@ -982,8 +982,6 @@ bool GraphicsWindowX11::makeCurrentImplementation()
#ifdef OSG_USE_EGL
bool result = eglMakeCurrent(_eglDisplay, _eglSurface, _eglSurface, _context)==EGL_TRUE;
osg::notify(osg::NOTICE)<<"GraphicsWindowX11::makeCurrentImplementation "<<this<<" "<<OpenThreads::Thread::CurrentThread()<<" _eglSurface="<<_eglSurface<<" _context="<<_context<<" result="<<result<<std::endl;
checkEGLError("after eglMakeCurrent()");
return result;
@@ -1000,8 +998,6 @@ bool GraphicsWindowX11::releaseContextImplementation()
return false;
}
osg::notify(osg::NOTICE)<<"GraphicsWindowX11::releaseContextImplementation() "<<this<<" "<<OpenThreads::Thread::CurrentThread()<<std::endl;
#ifdef OSG_USE_EGL
return eglMakeCurrent( _eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT )==EGL_TRUE;
checkEGLError("after eglMakeCurrent() release");