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_win.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pugl/pugl_win.cpp') diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index 50f42f0..63c6051 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -29,7 +29,11 @@ struct PuglPlatformDataImpl { }; PuglWindow* -puglCreate(PuglNativeWindow parent, const char* title, int width, int height) +puglCreate(PuglNativeWindow parent, + const char* title, + int width, + int height, + bool resizable) { PuglWindow* win = (PuglWindow*)calloc(1, sizeof(PuglWindow)); -- cgit v1.2.3