Added comments on why some code is disabled

This commit is contained in:
Zachary Lund 2014-01-09 20:14:12 -06:00
parent 69d32725d2
commit 78aa456a7b

View File

@ -49,6 +49,20 @@ extern struct gl_windowinfo *gl_windowinfo_create(struct gs_init_data *info)
wi->id = info->window.id; wi->id = info->window.id;
/* wi->display = info->window.display; */ /* wi->display = info->window.display; */
/*
In order to do the above, we have to call
XInitThreads in the soonest possible time.
The wxFrame initializer is good but it sucks
big time that I'm having to make X11 specific
code all over platform-independent code.
The solution we have now avoids this although I'd
like to be able to do the above as it's probably
safer (I don't know the side-effects of using a Display
connection that wasn't used to create the window)
and more efficient.
*/
return wi; return wi;
} }