소스 검색

make opengl render stuff on osx without resizing the main window

Palana 12 년 전
부모
커밋
eb8c2923f6
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      obs/obs-app.cpp

+ 4 - 0
obs/obs-app.cpp

@@ -222,6 +222,10 @@ bool OBSApp::OnInit()
 
 	if (!obs_reset_video(&ovi))
 		return false;
+
+	//required to make opengl display stuff on osx(?)
+	mainWindow->SendSizeEvent();
+
 	return true;
 }