FreePastry overlay


 
Thread Tools Search this Thread
Special Forums IP Networking FreePastry overlay
# 1  
Old 06-04-2012
FreePastry overlay

Hello ;

Is there anybody who works with freepastry API, I have a question please?


Thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Programming

Client Server on Pastry Overlay

Hello, Please, I have a little problem, I hope you propose a solution. Thank you very much. I developed a client task in C and a server task in C. The client needs the server IP address to connect to the server. With Freepastry , I don't know in advance which machine will run the client and... (0 Replies)
Discussion started by: chercheur111
0 Replies

2. IP Networking

FreePastry overlay

Hello, I work with Freepastry API (overlay: pastry) I would like someone to explain me this situation I have a machine A: ip = @ 196.205.x.y ifconfig: eth0 = 196.205.x.y and lo I can ping this address 196.205.xy from another machine -> I run freepastry it work on this @ I have... (0 Replies)
Discussion started by: chercheur857
0 Replies

3. Shell Programming and Scripting

overlay graph on stack section

i want to overlay graph on stack section , but there are problem with color. this is my script: awk '{print $2,$1}' ofsettTWT2.data > data && a2b n1=2 < data > data.bin && psgraph n=537 x2beg=0 d2num=0.0 x2end=13000 x1beg=0 x1end=5 < data.bin linewidth=0 marksize=8 style=seismic wbox=20... (0 Replies)
Discussion started by: indah
0 Replies

4. UNIX for Dummies Questions & Answers

Text file + image/form/overlay file to PDF

Hi, We have an app specific legacy environment running SCO Openserver 5.0.7. I need to be able to (1) scan a pre-existing “form” consisting of logo/boxes/lines/static text as an image , (2) lay a print file from the app "on top of the image" and (3) output the "merge" as a PDF file. Scanning... (1 Reply)
Discussion started by: 65bit
1 Replies

5. UNIX and Linux Applications

xlib: allow overlay of other windows in full-screen

Hi, I am using the feh slideshow program in full-screen mode. While the slide show is in progress I would like to draw some other windows (something like clock or calendar from gdesklets) on top of this slideshow. Currently feh does not allow me to do that. Below is the code that feh uses to... (0 Replies)
Discussion started by: aerosmith
0 Replies

6. UNIX for Advanced & Expert Users

vfstab overlay mount

How can I specify and the -O (overlay option) in the vfstab ? Also can you specify the overlay option to the mount options for a Vertias cluster NFS service group ? (0 Replies)
Discussion started by: wjones
0 Replies
Login or Register to Ask a Question
glutOverlayDisplayFunc(3GLUT)					       GLUT					     glutOverlayDisplayFunc(3GLUT)

NAME
glutOverlayDisplayFunc - sets the overlay display callback for the current window. SYNTAX
void glutOverlayDisplayFunc(void (*func)(void)); ARGUMENTS
func The new overlay display callback function. DESCRIPTION
glutDisplayFunc sets the overlay display callback for the current window. The overlay display callback is functionally the same as the win- dow's display callback except that the overlay display callback is used to redisplay the window's overlay. When GLUT determines that the overlay plane for the window needs to be redisplayed, the overlay display callback for the window is called. Before the callback, the current window is set to the window needing to be redisplayed and the layer in use is set to the overlay. The overlay display callback is called with no parameters. The entire overlay region should be redisplayed in response to the callback (this includes ancillary buffers if your program depends on their state). GLUT determines when the overlay display callback should be triggered based on the window's overlay redisplay state. The overlay redisplay state for a window can be either set explicitly by calling glutPostOverlayRedisplay or implicitly as the result of window damage reported by the window system. Multiple posted overlay redisplays for a window are coalesced by GLUT to minimize the number of overlay display call- backs called. Upon return from the overlay display callback, the overlay damaged state of the window (returned by calling glutLayerGet(GLUT_OVERLAY_DAM- AGED) is cleared. The overlay display callback can be deregistered by passing NULL to glutOverlayDisplayFunc. The overlay display callback is initially NULL when an overlay is established. See glutDisplayFunc to understand how the display callback alone is used if an overlay display callback is not registered. SEE ALSO
glutDisplayFunc, glutPostOverlayRedisplay AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutOverlayDisplayFunc(3GLUT)