mrfangzheng

Hope and fear are useless. Be confident, and always be prepared for the worst.
  首页  :: 新随笔  :: 联系 :: 管理

OpenGL: 初始化代码必须放在ShowWindow()之前

Posted on 2011-05-06 16:54  mrfangzheng  阅读(226)  评论(0编辑  收藏  举报

 // Must before ShowWindow() is called, otherwise fail in release mode
 mOpenGlPainter.Init(hWnd);
 mOpenGlPainter.Resize();
 
 // Display the window
 ShowWindow(hWnd, nCmdShow);
 UpdateWindow(hWnd);

 

否则Release模式会间断性出错, 不知为什么