wxGLCanvas updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12392 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -525,19 +525,6 @@ void wxGLCanvas::SwapBuffers()
 | 
			
		||||
 | 
			
		||||
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()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user