glutPostRedisplay (3) - Linux Manuals

glutPostRedisplay: Mark the current window as needing a redisplay.

NAME

glutPostRedisplay - Mark the current window as needing a redisplay.

LIBRARY

OpenGLUT - window

SYNOPSIS

In openglut.h Ft void Fn glutPostRedisplay void

DESCRIPTION

Whenever circumstances indicate that your window is in need of being redisplayed, you may call glutPostRedisplay() to tell OpenGLUT that you want to redraw your graphics. Multiple calls to this function may be coalesced by OpenGLUT to avoid excessive invocation of your drawing support.

The ultimate effect of this function is to call your Display callback for the Bf Li
 current window Ef
 .