diff options
author | David Robillard <d@drobilla.net> | 2012-05-01 00:52:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-01 00:52:54 +0000 |
commit | 0f2556e3c1cef484ebda4e2f0f2be507b2c0a482 (patch) | |
tree | 594ecb7f533d6f177af045f7723506a947afefd1 | |
parent | c274e259e63962d36ae91d1f053e767e306b4da6 (diff) |
Add documentation group.
-rw-r--r-- | pugl/pugl.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index 58b2101..7512aa1 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -15,7 +15,7 @@ */ /** - @file pugl.h API for Pugl, a portable micro-framework for GL UIs. + @file pugl.h API for Pugl, a minimal portable API for OpenGL. */ #ifndef PUGL_H_INCLUDED @@ -63,6 +63,12 @@ extern "C" { #endif /** + @defgroup pugl Pugl + A minimal portable API for OpenGL. + @{ +*/ + +/** An OpenGL view. */ typedef struct PuglViewImpl PuglView; @@ -330,6 +336,10 @@ puglPostRedisplay(PuglView* view); PUGL_API void puglDestroy(PuglView* view); +/** + @} +*/ + #ifdef __cplusplus } /* extern "C" */ #endif |