diff options
| -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  | 
