Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
glutLayerGet.man
Package: glut23-src.zip [view]
Upload User: xk288cn
Upload Date: 2007-05-28
Package Size: 4876k
Code Size: 2k
Category:
GIS program
Development Platform:
Visual C++
- ."
- ." Copyright (c) Mark J. Kilgard, 1996.
- ."
- .TH glutLayerGet 3GLUT "3.7" "GLUT" "GLUT"
- .SH NAME
- glutLayerGet - retrieves GLUT state pertaining to the layers of the
- current window.
- .SH SYNTAX
- .nf
- .LP
- int glutLayerGet(GLenum info);
- .fi
- .SH ARGUMENTS
- .IP fIinfofP 1i
- Name of device information to retrieve.
- .TP 8
- .B GLUT_OVERLAY_POSSIBLE
- Whether an overlay could be established for the current window
- given the current initial display mode. If false,
- glutEstablishOverlay will fail with a fatal error if called.
- .TP 8
- .B GLUT_LAYER_IN_USE
- Either GLUT_NORMAL or GLUT_OVERLAY depending on whether
- the normal plane or overlay is the layer in use.
- .TP 8
- .B GLUT_HAS_OVERLAY
- If the current window has an overlay established.
- .TP 8
- .B GLUT_TRANSPARENT_INDEX
- The transparent color index of the overlay of the current window;
- negative one is returned if no overlay is in use.
- .TP 8
- .B GLUT_NORMAL_DAMAGED
- True if the normal plane of the current window has damaged (by
- window system activity) since the last display callback was
- triggered. Calling glutPostRedisplay will not set this true.
- .TP 8
- .B GLUT_OVERLAY_DAMAGED
- True if the overlay plane of the current window has damaged (by
- window system activity) since the last display callback was
- triggered. Calling glutPostRedisplay or
- glutPostOverlayRedisplay will not set this true. Negative
- one is returned if no overlay is in use.
- .SH DESCRIPTION
- glutLayerGet retrieves GLUT layer information for the current
- window represented by integers. The info parameter determines what
- type of layer information to return.
- .SH SEE ALSO
- glutEstablishOverlay, glutUseOverlay, glutCreateWindow, glutSetColor
- .SH AUTHOR
- Mark J. Kilgard (mjk@nvidia.com)