diff options
Diffstat (limited to 'pugl/pugl.h')
-rw-r--r-- | pugl/pugl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index 6a6fbe7..a764620 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -62,9 +62,14 @@ typedef void (*PuglReshapeFunc)(PuglWindow* handle, int width, int height); @param title Window title, or NULL. @param width Window width in pixels. @param height Window height in pixels. + @param resizable Whether window should be user resizable. */ PuglWindow* -puglCreate(PuglNativeWindow parent, const char* title, int width, int height); +puglCreate(PuglNativeWindow parent, + const char* title, + int width, + int height, + bool resizable); /** Set the handle to be passed to all callbacks. |