diff options
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index 2f60663..04add26 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -600,12 +600,6 @@ PUGL_API PuglStatus puglSetViewHint(PuglView* view, PuglViewHint hint, int value); /** - Return true iff the view is currently visible. -*/ -PUGL_API bool -puglGetVisible(PuglView* view); - -/** Request a redisplay for the entire view. */ PUGL_API PuglStatus @@ -714,6 +708,12 @@ PUGL_API PuglStatus puglHideWindow(PuglView* view); /** + Return true iff the view is currently visible. +*/ +PUGL_API bool +puglGetVisible(PuglView* view); + +/** Return the native window handle. */ PUGL_API PuglNativeWindow |