Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glutpostredisplay(3) [centos man page]

UNTITLED
LOCAL UNTITLED NAME
glutPostRedisplay -- Mark the current window as needing a redisplay. LIBRARY
OpenGLUT - window SYNOPSIS
#include <openglut.h> void 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 current window . SEE ALSO
glutPostWindowRedisplay(3) glutPostOverlayRedisplay(3) glutPostWindowOverlayRedisplay(3) glutSwapBuffers(3) glutDisplayFunc(3) Epoch

Check Out this Related Man Page

glutPostRedisplay(3GLUT)					       GLUT						  glutPostRedisplay(3GLUT)

NAME
glutPostRedisplay, glutPostWindowRedisplay - marks the current or specified window as needing to be redisplayed. SYNTAX
#include <GLUT/glut.h> void glutPostRedisplay(void); void glutPostWindowRedisplay(int win); DESCRIPTION
glutPostRedisplay marks the normal plane of current window as needing to be redisplayed. glutPostWindowRedisplay works the specified win- dow as needing to be redisplayed. After either call, the next iteration through glutMainLoop, the window's display callback will be called to redisplay the window's normal plane. Multiple calls to glutPostRedisplay before the next display callback opportunity generates only a single redisplay callback. glutPostRedisplay may be called within a window's display or overlay display callback to re-mark that window for redisplay. Logically, normal plane damage notification for a window is treated as a glutPostRedisplay on the damaged window. Unlike damage reported by the window system, glutPostRedisplay will not set to true the normal plane's damaged status (returned by glutLayerGet(GLUT_NORMAL_DAMAGED). If the window you want to post a redisplay on is not already current (and you do not require it to be immediately made current), using glutPostWindowRedisplay is more efficient that calling glutSetWindow to the desired window and then calling glutPostRedisplay. SEE ALSO
glutPostOverlayRedisplay, glutDisplayFunc AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutPostRedisplay(3GLUT)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error: GL/glut.h: No such file or directory

hi, I get this error when I compile my source on mac Leopard. is because I need to configure openGL path ? Monitor.h:15:60: error: GL/glut.h: No such file or directory Monitor.h:16:60: error: GL/gl.h: No such file or directory Monitor.C: In function 'void display2()': Monitor.C:77:... (0 Replies)
Discussion started by: aneuryzma
0 Replies

2. Programming

How to insert JPEG on each side of the cube using openGL in C

Hi, how to insert JPEG on each side of the cube using OpenGL in C language.. i have a program for cube.. guide me ,,, any answer will valuable.. (3 Replies)
Discussion started by: Ravikishore
3 Replies

3. Programming

How to Decode an image using openGL

Hi, How to decode an image using openGL library libjpeg .. which are the steps needed to do this using C language.. actually my work is to decode the image, store it on the buffer, and place it on cube surface.. please guide me,,any answer will appreciated .. (8 Replies)
Discussion started by: Ravikishore
8 Replies

4. Programming

Draw a 3D cylinder using openGL.

Hi, please give me, how to code to draw 3D cylinder in openGL, that should be rotated in x-direction. waiting for your reply .. (2 Replies)
Discussion started by: Ravikishore
2 Replies