Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-05-16 | Add default and maximum size | David Robillard | 1 | -0/+1 | |
2020-05-16 | Use email address in copyright headers | David Robillard | 1 | -1/+1 | |
Not really sure why I used a web link here (maybe because it's more stable), but this is more conventional. | |||||
2020-04-01 | Replace puglShowWindow() with puglRealize() | David Robillard | 1 | -1/+1 | |
2020-03-16 | Make update test more tolerant | David Robillard | 1 | -1/+1 | |
2020-03-15 | Cleanup: Fix stale comment | David Robillard | 1 | -2/+2 | |
2020-03-15 | Unify event loop functions as puglUpdate() | David Robillard | 1 | -0/+124 | |
The previous separation between polling and dispatching was a lie, especially on MacOS where it is impossible to only poll for events without dispatching anything. Providing such an API is misleading, and problematic in various other ways. So, merge them into a single puglUpdate() function which can do the right thing on all platforms. This also adds the behaviour of actually processing all events in the given time interval, which is almost always what clients actually want to do when using a positive timeout (naively doing this before caused terrible input lag). |