Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-15 | Replace waf-light with minimal waf wrapper script | David Robillard | |
2018-09-15 | Add pyc files to gitignore | David Robillard | |
2018-09-15 | Replace symlink with minimal waf wrapper script | David Robillard | |
2018-09-15 | Squashed 'waflib/' changes from 391d285..542b3f5 | David Robillard | |
542b3f5 Beautify configuration summary output 7cd395c fixup! version 8a706da Add msgs argument to autowaf.display_summary() and show flags a8ea0a0 Automatically define version 7efd6d7 Add autowaf.add_flags() for terse flag definition git-subtree-dir: waflib git-subtree-split: 542b3f59c13b40388ef68f5aa6a386d72f419017 | |||
2018-09-15 | Merge commit '8239fedfd133916f0ac26bd85ff524afca243ddb' | David Robillard | |
2018-09-15 | Add msgs argument to autowaf.display_summary() and show flags | David Robillard | |
2018-09-15 | Automatically define version | David Robillard | |
2018-09-15 | Add autowaf.add_flags() for terse flag definition | David Robillard | |
2018-09-13 | Clean up wscript | David Robillard | |
2018-09-13 | Add __pycache__ to gitignore | David Robillard | |
2018-09-11 | Fix GCC8 fall-through warnings | David Robillard | |
2018-09-11 | Switch to bundled source waf | David Robillard | |
2018-09-11 | Squashed 'waflib/' content from commit 391d285 | David Robillard | |
git-subtree-dir: waflib git-subtree-split: 391d2853c6c97efc90e466f187675e8155c866d6 | |||
2018-09-11 | Merge commit 'b6e9de2de9725e2f5a3170b8171ad1a1e95e8339' as 'waflib' | David Robillard | |
2017-10-03 | Don't clear entire cairo surface on each expose | David Robillard | |
2017-10-03 | Fix size constraints on OSX | David Robillard | |
2017-10-03 | Print Unicode code points in standard format | David Robillard | |
2017-10-03 | Send zero instead of replacement char for invalid key strings | David Robillard | |
2017-10-03 | Fix implicit integer conversion warning | David Robillard | |
2017-07-23 | Fix duplicate method declaration | David Robillard | |
2017-07-23 | Implement special key handling on MacOS | Hanspeter Portner | |
2017-07-23 | Fix merging of expose events | David Robillard | |
Thanks JP Cimalando | |||
2016-11-06 | Fix cairo inclusion | Hanspeter Portner | |
2016-10-29 | Properly reset view->redisplay on windows | Hanspeter Portner | |
2016-10-27 | Support many mouse buttons on OSX | David Robillard | |
2016-10-27 | Fix mouse button numbers on OSX | David Robillard | |
2016-10-26 | Fix OSX build | David Robillard | |
2016-10-26 | Fix mouse click printing | David Robillard | |
2016-09-20 | Move entire API to pugl.h | David Robillard | |
2016-09-20 | Fix resizing | David Robillard | |
2016-09-20 | Add GL option to pugl_cairo_test | David Robillard | |
2016-09-20 | Fix C++ bindings | David Robillard | |
2016-09-19 | Fix compilation on Windows | David Robillard | |
2016-09-18 | Remove GLUT-like event callbacks | David Robillard | |
2016-09-18 | Clean up documentation | David Robillard | |
2016-09-15 | Make PUGL_NOTHING type 0 | David Robillard | |
This makes life easy in several ways, and pugl currently provides no ABI stability guarantee anyway. | |||
2016-09-14 | Fix compose key | David Robillard | |
Turns out the app needs to call setlocale(LC_ALL, "") for this to work. I am not sure if it is possible to make things work correctly purely in Pugl (since plugin UIs can't call setlocale). | |||
2016-09-14 | Fix focus events | David Robillard | |
2016-09-14 | Fix puglInitInternals prototype | David Robillard | |
2016-09-14 | Add glew.h wrapper header | David Robillard | |
2016-09-14 | Clean up pugl_test and remove use of GLU | David Robillard | |
2016-09-12 | Demonstrate enter and leave events | David Robillard | |
2016-09-01 | Make it possible to multiplex PuglKey and chars | David Robillard | |
This is useful when working with existing code that assumes any key can be expressed in a single integer. Raises the question of whether Pugl's design of representing special keys separately at all is sensible, but c'est la vie. | |||
2016-09-01 | Add PUGL_CLOSE event | David Robillard | |
This allows purely event-driven applications to handle window close. Something more extensible for WM message seems like it might be a good idea here, but I can't think of specific uses, so this will do. | |||
2016-09-01 | Enter context before dispatching expose/configure | David Robillard | |
2016-09-01 | Expose puglEnterContext() and puglLeaveContext() | David Robillard | |
This allows code in the main thread to set up the GL context outside the scope of a draw callback, which is useful for porting existing code that assumes the GL context can be entered anywhere. | |||
2016-09-01 | Add puglGetSize() | David Robillard | |
2016-09-01 | Add puglGetVisible() | David Robillard | |
2016-08-31 | Replace send_event with extensible flags | David Robillard | |
This is currently functionally equivalent, but taking up space in the event struct for a single bool which could be used for 32 flags for any number of things that might show up in the future seems like a very bad idea. | |||
2016-08-31 | Add missing include | David Robillard | |