浏览代码

x11: don't wait for window to be mapped

Jesper Bækdahl 8 年之前
父节点
当前提交
8f7a3884fd
共有 1 个文件被更改,包括 0 次插入7 次删除
  1. 0 7
      platform/x11/context_gl_x11.cpp

+ 0 - 7
platform/x11/context_gl_x11.cpp

@@ -130,13 +130,6 @@ Error ContextGL_X11::initialize() {
 		x11_window = XCreateWindow(x11_display, RootWindow(x11_display, vi->screen), 0, 0, OS::get_singleton()->get_video_mode().width, OS::get_singleton()->get_video_mode().height, 0, vi->depth, InputOutput, vi->visual, CWBorderPixel|CWColormap|CWEventMask, &swa);
 		ERR_FAIL_COND_V(!x11_window,ERR_UNCONFIGURED);
 		XMapWindow(x11_display, x11_window);
-		while(true) {
-			// wait for mapnotify (window created)
-			XEvent e;
-			XNextEvent(x11_display, &e);
-			if (e.type == MapNotify)
-				break;
-		}
 		//};