Exemplo n.º 1
0
Arquivo: qgl.c Projeto: jayschwa/q2pro
static void APIENTRY logOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
{
    SIG("glOrtho");
    dllOrtho(left, right, bottom, top, zNear, zFar);
}
Exemplo n.º 2
0
static void APIENTRY logOrtho(Mtx44 mt, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f)
{
	SIG( "guOrtho" );
	dllOrtho( mt, t, b, l, r, n, f );
}