From 94b9e452ebd9438a917b825d8d01137ddaa9e398 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Apr 2012 03:27:05 +0000 Subject: Implement resizable and non-resizable windows. --- pugl/pugl.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'pugl/pugl.h') 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. -- cgit v1.2.3