Corrected graphics context creation message

This commit is contained in:
Robert Osfield 2007-06-20 12:01:14 +00:00
parent 9f72c9392e
commit 69b778c2ad

View File

@ -51,12 +51,10 @@ class MyGraphicsContext {
} }
if (_gc.valid()) if (_gc.valid())
{ {
_gc->realize(); _gc->realize();
_gc->makeCurrent(); _gc->makeCurrent();
std::cout<<"Realized window"<<std::endl; std::cout<<"Realized context"<<std::endl;
} }
} }