Home | History | Annotate | Download | only in libGLES_CM

Lines Matching full:znear

195 void DepthRangex(GLclampx zNear, GLclampx zFar);
196 void DepthRangef(GLclampf zNear, GLclampf zFar);
212 void Frustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
213 void Frustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
273 void Orthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
274 void Orthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
743 GL_API void GL_APIENTRY glDepthRangex(GLclampx zNear, GLclampx zFar)
745 return es1::DepthRangex(zNear, zFar);
748 GL_API void GL_APIENTRY glDepthRangef(GLclampf zNear, GLclampf zFar)
750 return es1::DepthRangef(zNear, zFar);
828 GL_API void GL_APIENTRY glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
830 return es1::Frustumf(left, right, bottom, top, zNear, zFar);
833 GL_API void GL_APIENTRY glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
835 return es1::Frustumx(left, right, bottom, top, zNear, zFar);
1133 GL_API void GL_APIENTRY glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
1135 return es1::Orthof(left, right, bottom, top, zNear, zFar);
1138 GL_API void GL_APIENTRY glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar)
1140 return es1::Orthox(left, right, bottom, top, zNear, zFar);