diff options
author | David Robillard <d@drobilla.net> | 2020-03-06 21:52:47 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-06 21:52:47 +0100 |
commit | 970ce3152b6935a2c07b475916639d197dc1ae06 (patch) | |
tree | c9c489ead15ecfa2e0f43ef200482f91d5df9e9c /pugl/pugl.h | |
parent | 453acd4ae8b9d352b48b025aadbcc629c87e2e87 (diff) | |
download | pugl-970ce3152b6935a2c07b475916639d197dc1ae06.tar.gz pugl-970ce3152b6935a2c07b475916639d197dc1ae06.tar.bz2 pugl-970ce3152b6935a2c07b475916639d197dc1ae06.zip |
Move puglPostRedisplay() and friend to graphics group
Diffstat (limited to 'pugl/pugl.h')
-rw-r--r-- | pugl/pugl.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index e0ea5d6..6a8a236 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -600,18 +600,6 @@ PUGL_API PuglStatus puglSetViewHint(PuglView* view, PuglViewHint hint, int value); /** - Request a redisplay for the entire view. -*/ -PUGL_API PuglStatus -puglPostRedisplay(PuglView* view); - -/** - Request a redisplay of the given rectangle within the view. -*/ -PUGL_API PuglStatus -puglPostRedisplayRect(PuglView* view, PuglRect rect); - -/** @} @anchor frame @name Frame @@ -775,6 +763,18 @@ PUGL_API PuglStatus puglLeaveContext(PuglView* view, bool drawing); /** + Request a redisplay for the entire view. +*/ +PUGL_API PuglStatus +puglPostRedisplay(PuglView* view); + +/** + Request a redisplay of the given rectangle within the view. +*/ +PUGL_API PuglStatus +puglPostRedisplayRect(PuglView* view, PuglRect rect); + +/** @} @anchor interaction @name Interaction |