diff --git a/Scene.h b/Scene.h index faca43b..f3087bf 100644 --- a/Scene.h +++ b/Scene.h @@ -45,7 +45,7 @@ class Scene : public IEGrScene virtual std::string GetGLSLInfo( void) ; virtual std::string GetPixelFormatInfo( void) ; virtual bool RedrawWindow( void) ; - virtual bool Reshape( int nW, int nH) ; + virtual bool Resize( int nW, int nH) ; virtual bool SetBackground( Color colBackTop, Color colBackBottom) ; virtual bool Prepare( void) ; virtual bool Draw( void) ; diff --git a/SceneBasic.cpp b/SceneBasic.cpp index 39c060d..0384d70 100644 --- a/SceneBasic.cpp +++ b/SceneBasic.cpp @@ -455,7 +455,7 @@ Scene::CalcClippingPlanesFromExtView( void) //---------------------------------------------------------------------------- bool -Scene::Reshape( int nW, int nH) +Scene::Resize( int nW, int nH) { if ( ! MakeCurrent()) return false ;