Looking at the pyglet mailing list archives, it seems the way Alex & co. get the event loop to pump during window move and resize events is to handle the WM_USER+7174 windows message - which told windows not to do resize and move operations in a tight inner loop anymore.
On Feb 12, 2008 12:58 PM, Richard Jones <[EMAIL PROTECTED]> wrote: > On Wed, 13 Feb 2008, Brian Fisher wrote: > > There is a way to get an app in windows to not be blocked by event > > processing like that (something about calling your update from a > > particular message or returning the right value from some weird barely > > documented message or something like that) but I can't remember the > > exact thing there off the top of my head - I think pyglet had trouble > > with this and found a resolution. > > Correct. pyglet now has an event loop that allows live window move & resize. > > > Richard >
