瀏覽代碼

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;
 }