Chris Robinson chris.kcat@gmail.com writes:
Why do you need an XFlush here?
There's no sense in having a config option for this since the alternative doesn't work anyway, particularly since you removed the scissor support.
The window needs to be created on the thread display, and as a child of the main window.
You must not use XGetGeometry, this incurs a server round-trip.
On Tuesday 25 September 2007 04:31:04 am Alexandre Julliard wrote:
Given the nature of glFlush/glFinish, I think it would probably be correct behavior to make sure the X copy command is flushed by the time the GL functions finish, too. Why it ended up before the copy though, I don't know.
True. I guess I can use an option just for extra onscreen pixel formats being composited instead, in a seperate patch of course.
With the child being parented to the main window, a BadWindow error sometimes crops up on XDestroyWindow for the X11 child. I couldn't see why, but parenting it to the root_window works. Would that be due to using gdi_display for creating/destroying the child?
Is it safe to call XMoveResizeWindow even if the size didn't change, and have X make it a no-op (or at least be negligible for processing time)? Calling to resize the child window every time the hwnd simply moves (or whenever it thinks it resized/moved) can cause it to be done unnecessarilly often.
Chris Robinson chris.kcat@gmail.com writes:
Maybe, but in any case making it a child of the root window is wrong.
No, you have all the info you need in SetWindowPos, there's no reason to guess.