summaryrefslogtreecommitdiff
path: root/NOTES
blob: d38bc6086124ae5352842b690d6b7767ee269f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

 - GLX and EGL?  How?

 - GTK+ does some weird xlib stuff to acheive multiple async requests
   or something...

 - Something like this:

	struct csx_wm {
		void (*map_notify)(struct csx_window *window);
	};

   but we'll also need full substructure redirect since apps can do
   that on their own windows.

 - Problem with popup placement and other global coords.

 - Difference in Expose events between xlib and csx when Mapping
   window and then subwindow.  csx sends the immediate Expose rects,
   xlib sends the final result (the subwindow rect and the split up
   rects around it)... Expose compression?  We could do lazy exposure
   events in XNextEvent().

 - Foreign windows and such (GLX import context) can never work...