Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gldepthrange(3g) [osx man page]

GLDEPTHRANGE(3G)														  GLDEPTHRANGE(3G)

NAME
glDepthRange - specify mapping of depth values from normalized device coordinates to window coordinates C SPECIFICATION
void glDepthRange( GLclampd zNear, GLclampd zFar ) PARAMETERS
zNear Specifies the mapping of the near clipping plane to window coordinates. The initial value is 0. zFar Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. DESCRIPTION
After clipping and division by w, depth coordinates range from -1 to 1, corresponding to the near and far clipping planes. glDepthRange specifies a linear mapping of the normalized depth coordinates in this range to window depth coordinates. Regardless of the actual depth buffer implementation, window coordinate depth values are treated as though they range from 0 through 1 (like color components). Thus, the values accepted by glDepthRange are both clamped to this range before they are accepted. The setting of (0,1) maps the near plane to 0 and the far plane to 1. With this mapping, the depth buffer range is fully utilized. NOTES
It is not necessary that zNear be less than zFar. Reverse mappings such as zNear=1, and zFar=0 are acceptable. ERRORS
GL_INVALID_OPERATION is generated if glDepthRange is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGet with argument GL_DEPTH_RANGE SEE ALSO
glDepthFunc, glPolygonOffset, glViewport GLDEPTHRANGE(3G)

Check Out this Related Man Page

GLDEPTHRANGE(3G)														  GLDEPTHRANGE(3G)

NAME
glDepthRange - specify mapping of depth values from normalized device coordinates to window coordinates C SPECIFICATION
void glDepthRange( GLclampd zNear, GLclampd zFar ) PARAMETERS
zNear Specifies the mapping of the near clipping plane to window coordinates. The initial value is 0. zFar Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. DESCRIPTION
After clipping and division by w, depth coordinates range from -1 to 1, corresponding to the near and far clipping planes. glDepthRange specifies a linear mapping of the normalized depth coordinates in this range to window depth coordinates. Regardless of the actual depth buffer implementation, window coordinate depth values are treated as though they range from 0 through 1 (like color components). Thus, the values accepted by glDepthRange are both clamped to this range before they are accepted. The setting of (0,1) maps the near plane to 0 and the far plane to 1. With this mapping, the depth buffer range is fully utilized. NOTES
It is not necessary that zNear be less than zFar. Reverse mappings such as zNear=1, and zFar=0 are acceptable. ERRORS
GL_INVALID_OPERATION is generated if glDepthRange is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGet with argument GL_DEPTH_RANGE SEE ALSO
glDepthFunc, glPolygonOffset, glViewport GLDEPTHRANGE(3G)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Logging OWB mapping execution in Shell script

Hi, I am executing a OWB mapping from a shell script like this $OWB_SQLPLUS MY_WAREHOUSE plsql MY_MAPPING "," "," I want to log this mapping execution process into a file. Please let me know if this will work: $OWB_SQLPLUS MY_WAREHOUSE plsql MY_MAPPING "," "," >> LOGFIL.log I will... (1 Reply)
Discussion started by: npn
1 Replies

2. UNIX for Dummies Questions & Answers

Deleting whole lines from a file

I have a file with 65 sets of 35 coordinates, and would like to isolate these coordinates so that I can easily copy the coordinates to another file. The problem is, I've got a 9 line header before each set of coordinates (so each set is 44 lines long). There are a zillion threads out there about... (3 Replies)
Discussion started by: red baron
3 Replies

3. UNIX for Advanced & Expert Users

xbindkeys giving wrong mapping information

Hello, I'm having a problem with xbindkeys giving the wrong mapping information, hence I can't get it work at all when trying new mappings from this machine. From another computer, I have some definitions for xbindkeys (made with xbindkeys-config). These key codes work correctly on this... (0 Replies)
Discussion started by: Narnie
0 Replies

4. Shell Programming and Scripting

copying text from between a pattern and *

Hej all, I have a LS-DYNA keyword file which I want to extract the node coordinates from it to another file for processing and then returning the result coordinates to the same place, the structure of the file is like: Keyword file: 5010497 -266.6623535 -446.2596130 ... (3 Replies)
Discussion started by: Johanni
3 Replies

5. UNIX for Dummies Questions & Answers

overlapped genomic coordinates

Hi, I would like to know how can I get the ID of a feature if its genomic coordinates overlap the coordinates of another file. Example: Get the 4th column (ID) of this file1: chr1 10 100 gene1 chr2 3000 5000 gene2 chr3 200 1500 gene3 if it overlaps with a feature in this file2: chr2... (1 Reply)
Discussion started by: fadista
1 Replies