summaryrefslogtreecommitdiff
path: root/pugl
AgeCommit message (Collapse)Author
2017-10-03Don't clear entire cairo surface on each exposeHEADmasterDavid Robillard
2017-10-03Fix size constraints on OSXDavid Robillard
2017-10-03Send zero instead of replacement char for invalid key stringsDavid Robillard
2017-10-03Fix implicit integer conversion warningDavid Robillard
2017-07-23Fix duplicate method declarationDavid Robillard
2017-07-23Implement special key handling on MacOSHanspeter Portner
2017-07-23Fix merging of expose eventsDavid Robillard
Thanks JP Cimalando
2016-11-06Fix cairo inclusionHanspeter Portner
2016-10-29Properly reset view->redisplay on windowsHanspeter Portner
2016-10-27Support many mouse buttons on OSXDavid Robillard
2016-10-27Fix mouse button numbers on OSXDavid Robillard
2016-10-26Fix OSX buildDavid Robillard
2016-09-20Move entire API to pugl.hDavid Robillard
2016-09-20Fix resizingDavid Robillard
2016-09-20Fix C++ bindingsDavid Robillard
2016-09-19Fix compilation on WindowsDavid Robillard
2016-09-18Remove GLUT-like event callbacksDavid Robillard
2016-09-18Clean up documentationDavid Robillard
2016-09-15Make PUGL_NOTHING type 0David Robillard
This makes life easy in several ways, and pugl currently provides no ABI stability guarantee anyway.
2016-09-14Fix compose keyDavid 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-14Fix focus eventsDavid Robillard
2016-09-14Fix puglInitInternals prototypeDavid Robillard
2016-09-14Add glew.h wrapper headerDavid Robillard
2016-09-01Make it possible to multiplex PuglKey and charsDavid 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-01Add PUGL_CLOSE eventDavid 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-01Enter context before dispatching expose/configureDavid Robillard
2016-09-01Expose 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-01Add puglGetSize()David Robillard
2016-09-01Add puglGetVisible()David Robillard
2016-08-31Replace send_event with extensible flagsDavid 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-31Add missing includeDavid Robillard
2016-07-28Add support for Cairo on OSXDavid Robillard
2016-07-28Add support for Cairo on GLDavid Robillard
2016-07-28Clean up GL attributes and simplify configurationDavid Robillard
2016-07-28Fix flickering and laggy window resizeDavid Robillard
2015-11-13Fix minor style issuesDavid Robillard
2015-11-13Make pugl::View destructor virtualDavid Robillard
2015-11-12Fix memory leaksDavid Robillard
2015-11-11Avoid use of strdupDavid Robillard
2015-11-11Add API to set window class nameDavid Robillard
2015-09-14Fix events on OSX.David Robillard
2015-09-13Fix compilation on Windows.David Robillard
2015-09-13Merge branch 'master' of git.drobilla.net:/home/drobilla/git.drobilla.net/puglDavid Robillard
2015-09-13Preliminary Windows event work.David Robillard
2015-09-13Merge branch 'master' of git.drobilla.net:/home/drobilla/git.drobilla.net/puglDavid Robillard
2015-09-13Avoid redundant expose events on resize.David Robillard
2015-09-13Resize draw context before dispatching configure.David Robillard
2015-09-13Add C++ bindings.David Robillard
2015-09-12Update copyright dates.David Robillard
2015-09-12Add puglWaitForEvent for blocking main loops.David Robillard