removed code (re)setting the camera from wxGLCanvas::OnSize()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-09 15:12:25 +00:00
parent 62b3ca69cf
commit 2a4c85e755
5 changed files with 0 additions and 49 deletions

View File

@@ -426,19 +426,6 @@ void wxGLCanvas::SwapBuffers()
void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event)) void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event))
{ {
int width, height;
GetClientSize( &width, &height );
if (m_glContext && GTK_WIDGET_REALIZED(m_glWidget) )
{
SetCurrent();
glViewport(0, 0, (GLint)width, (GLint)height );
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 15.0 );
glMatrixMode(GL_MODELVIEW);
}
} }
void wxGLCanvas::SetCurrent() void wxGLCanvas::SetCurrent()

View File

@@ -426,19 +426,6 @@ void wxGLCanvas::SwapBuffers()
void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event)) void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event))
{ {
int width, height;
GetClientSize( &width, &height );
if (m_glContext && GTK_WIDGET_REALIZED(m_glWidget) )
{
SetCurrent();
glViewport(0, 0, (GLint)width, (GLint)height );
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 15.0 );
glMatrixMode(GL_MODELVIEW);
}
} }
void wxGLCanvas::SetCurrent() void wxGLCanvas::SetCurrent()

View File

@@ -273,12 +273,7 @@ void wxGLCanvas::MacUpdateView()
{ {
UpdateContext(); UpdateContext();
m_glContext->SetCurrent(); m_glContext->SetCurrent();
SetViewport(); SetViewport();
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 15.0 );
glMatrixMode(GL_MODELVIEW);
} }
} }

View File

@@ -273,12 +273,7 @@ void wxGLCanvas::MacUpdateView()
{ {
UpdateContext(); UpdateContext();
m_glContext->SetCurrent(); m_glContext->SetCurrent();
SetViewport(); SetViewport();
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 15.0 );
glMatrixMode(GL_MODELVIEW);
} }
} }

View File

@@ -522,19 +522,6 @@ void wxGLCanvas::SwapBuffers()
void wxGLCanvas::OnSize(wxSizeEvent& event) void wxGLCanvas::OnSize(wxSizeEvent& event)
{ {
int width, height;
GetClientSize(& width, & height);
if (m_glContext)
{
m_glContext->SetCurrent();
glViewport(0, 0, (GLint)width, (GLint)height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 15.0 );
glMatrixMode(GL_MODELVIEW);
}
} }
void wxGLCanvas::SetCurrent() void wxGLCanvas::SetCurrent()