Skip to content

Commit

Permalink
Denoise
Browse files Browse the repository at this point in the history
  • Loading branch information
tribal-tec committed Jun 30, 2015
1 parent fbe7152 commit 31ab3a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eq/frame.cpp
Expand Up @@ -37,7 +37,7 @@ class Frame
~Frame()
{
if( frameData )
LBINFO << "FrameData attached in frame destructor" << std::endl;
LBDEBUG << "FrameData attached in frame destructor" << std::endl;
}
};
}
Expand Down
4 changes: 2 additions & 2 deletions eq/glx/eventHandler.cpp
Expand Up @@ -79,8 +79,8 @@ EventHandler::EventHandler( WindowIF* window )
{
if( spnav_x11_open( display, window->getXDrawable( )) == -1 )
{
LBINFO << "Cannot connect to the space navigator daemon"
<< std::endl;
LBDEBUG << "Cannot connect to the space navigator daemon"
<< std::endl;
return;
}
_magellan->display = display;
Expand Down
4 changes: 2 additions & 2 deletions eq/glx/window.cpp
Expand Up @@ -928,8 +928,8 @@ void Window::initEventHandler()
if( _impl->messagePump )
_impl->messagePump->register_( display );
else
LBINFO << "Using glx::EventHandler without glx::MessagePump, external "
<< "event dispatch assumed" << std::endl;
LBDEBUG << "Using glx::EventHandler without glx::MessagePump, external "
<< "event dispatch assumed" << std::endl;
}

void Window::exitEventHandler()
Expand Down
4 changes: 2 additions & 2 deletions eq/glx/windowSystem.cpp
Expand Up @@ -43,7 +43,7 @@ static class : WindowSystemIF
eq::SystemWindow* createWindow( eq::Window* window,
const WindowSettings& settings ) final
{
LBINFO << "Using glx::Window" << std::endl;
LBDEBUG << "Using glx::Window" << std::endl;
Display* xDisplay = 0;
GLXEWContext* glxewContext = 0;
eq::Pipe* pipe = window->getPipe();
Expand All @@ -67,7 +67,7 @@ static class : WindowSystemIF

eq::SystemPipe* createPipe( eq::Pipe* pipe ) final
{
LBINFO << "Using glx::Pipe" << std::endl;
LBDEBUG << "Using glx::Pipe" << std::endl;
return new Pipe( pipe );
}

Expand Down

0 comments on commit 31ab3a7

Please sign in to comment.