Home | History | Annotate | Download | only in GLESv1_enc

Lines Matching full:znear

13 	void glDepthRangef(GLclampf zNear, GLclampf zFar);
16 void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
34 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
71 void glDepthRangex(GLclampx zNear, GLclampx zFar);
83 void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
119 void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
189 void glDepthRangexOES(GLclampx zNear, GLclampx zFar);
192 void glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
211 void glOrthoxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
247 void glDepthRangefOES(GLclampf zNear, GLclampf zFar);
248 void glFrustumfOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
249 void glOrthofOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
337 void glDepthRangef(GLclampf zNear, GLclampf zFar)
340 ctx->glDepthRangef(ctx, zNear, zFar);
355 void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
358 ctx->glFrustumf(ctx, left, right, bottom, top, zNear, zFar);
463 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
466 ctx->glOrthof(ctx, left, right, bottom, top, zNear, zFar);
687 void glDepthRangex(GLclampx zNear, GLclampx zFar)
690 ctx->glDepthRangex(ctx, zNear, zFar);
759 void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
762 ctx->glFrustumx(ctx, left, right, bottom, top, zNear, zFar);
977 void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
980 ctx->glOrthox(ctx, left, right, bottom, top, zNear, zFar);
1397 void glDepthRangexOES(GLclampx zNear, GLclampx zFar)
1400 ctx->glDepthRangexOES(ctx, zNear, zFar);
1415 void glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
1418 ctx->glFrustumxOES(ctx, left, right, bottom, top, zNear, zFar);
1529 void glOrthoxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
1532 ctx->glOrthoxOES(ctx, left, right, bottom, top, zNear, zFar);
1749 void glDepthRangefOES(GLclampf zNear, GLclampf zFar)
1752 ctx->glDepthRangefOES(ctx, zNear, zFar);
1755 void glFrustumfOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
1758 ctx->glFrustumfOES(ctx, left, right, bottom, top, zNear, zFar);
1761 void glOrthofOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
1764 ctx->glOrthofOES(ctx, left, right, bottom, top, zNear, zFar);