diff options
author | David Robillard <d@drobilla.net> | 2020-03-06 21:52:30 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-06 21:52:30 +0100 |
commit | 3ab931da05ef91f752c15f11ca3b6637b1637078 (patch) | |
tree | 047bd4b89b96857c31655e32eea8623342f1708a /pugl | |
parent | 01bc6c8bc5a94b49c89ba30a1068d8c93a18af2e (diff) | |
download | pugl-3ab931da05ef91f752c15f11ca3b6637b1637078.tar.gz pugl-3ab931da05ef91f752c15f11ca3b6637b1637078.tar.bz2 pugl-3ab931da05ef91f752c15f11ca3b6637b1637078.zip |
Move puglGetVisible() to more sensible location
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 |