summaryrefslogtreecommitdiff
path: root/pugl/README
blob: 87742f4a3385f490e662a3fa2f764ff3ce766124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PUGL
====

Pugl is a minimal portable API for OpenGL GUIs which supports embedding and is
suitable for use in plugins.  It works on X11, Mac OS X, and Windows.

Pugl is vaguely similar to GLUT, but with some significant distinctions:

 * Minimal in scope, providing only what is necessary to draw and receive
   keyboard and mouse input.

 * No reliance on static data whatsoever, so the API can be used in plugins or
   multiple independent parts of a program.

 * Single implementation, which is small, liberally licensed Free / Open Source
   Software, and suitable for direct inclusion in programs if avoiding a
   library dependency is desired.

 * Support for embedding in other windows, so Pugl code can draw to a widget
   inside a larger GUI.

 * More complete support for keyboard input, including additional "special"
   keys, modifiers, and support for detecting individual modifier key presses.

For more information, see <http://drobilla.net/software/pugl>.

 -- David Robillard <d@drobilla.net>