[Front] [Reference] [Imp. Guide] [Index]

glLoadIdentity
[Prev] [Next]

glLoadIdentity: replace the current matrix with the identity matrix.

C Specification | Description | Errors | Associated Gets | See Also

[Up] C Specification

void glLoadIdentity(void)

[Up] Description

glLoadIdentity replaces the current matrix with the identity matrix. It is semantically equivalent to calling glLoadMatrix with the identity matrix

1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1

but in some cases it is more efficient.

[Up] Errors

[Up] Associated Gets

glGet with argument GL_MATRIX_MODE
glGet with argument GL_MODELVIEW_MATRIX
glGet with argument GL_PROJECTION_MATRIX
glGet with argument GL_TEXTURE_MATRIX

[Up] See Also

glLoadMatrix,
glMatrixMode,
glMultMatrix,
glPushMatrix

[Prev] [Next]
Front Reference [Imp. Guide] Index