what is the default projection matrix ?

if i don’t specify any matrix after : glMatrixMode( GL_PROJECTION );
what is the default matrix between glOrtho (2d) and glFrustum (3d) ?
thanks !

The default projection matrix is the identity matrix, which is the same as glOrtho(-1, 1, -1, 1, 1, -1).