Searched refs:fovy (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DGLU.java101 * @param fovy specifies the field of view angle, in degrees, in the Y
111 public static void gluPerspective(GL10 gl, float fovy, float aspect, argument
113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0));
H A DMatrix.java367 * @param fovy field of view in y direction, in degrees
373 float fovy, float aspect, float zNear, float zFar) {
374 float f = 1.0f / (float) Math.tan(fovy * (Math.PI / 360.0));
372 perspectiveM(float[] m, int offset, float fovy, float aspect, float zNear, float zFar) argument
/frameworks/base/libs/rs/
H A DrsMatrix4x4.h49 void loadPerspective(float fovy, float aspect, float near, float far);
H A DrsMatrix4x4.cpp294 void Matrix4x4::loadPerspective(float fovy, float aspect, float near, float far) { argument
295 float top = near * tan((float) (fovy * M_PI / 360.0f));
H A DrsRuntime.h206 void rsrMatrixLoadPerspective(rs_matrix4x4* m, float fovy, float aspect, float near, float far);
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix4f.java278 * @param fovy vertical field of view angle in degrees
283 public void loadPerspective(float fovy, float aspect, float near, float far) { argument
284 float top = near * (float)Math.tan((float) (fovy * Math.PI / 360.0f));
/frameworks/base/libs/rs/scriptc/
H A Drs_matrix.rsh263 * @param fovy Field of view, in degrees along the Y axis.
269 rsMatrixLoadPerspective(rs_matrix4x4* m, float fovy, float aspect, float near, float far);
/frameworks/base/libs/rs/driver/
H A DrsdRuntimeMath.cpp223 static void SC_MatrixLoadPerspective(Matrix4x4 *m, float fovy, float aspect, float near, float far) { argument
224 m->loadPerspective(fovy, aspect, near, far);
/frameworks/base/opengl/tests/angeles/
H A Ddemo.c502 static void gluPerspective(GLfloat fovy, GLfloat aspect, argument
507 ymax = zNear * (GLfloat)tan(fovy * PI / 360);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs458 static void loadPerspectiveMatrix(rs_matrix4x4* matrix, float fovy, float aspect, float near, float far)
461 float top = near * tan((float) (fovy * M_PI / 360.0f));

Completed in 123 milliseconds