/frameworks/rs/cpu_ref/ |
D | rsCpuRuntimeMath.cpp | 83 static void SC_MatrixLoadPerspective(Matrix4x4 *m, float fovy, float aspect, float near, float far)… in SC_MatrixLoadPerspective() argument 84 m->loadPerspective(fovy, aspect, near, far); in SC_MatrixLoadPerspective() 189 float fovy, float aspect, float near, float far) { in rsMatrixLoadPerspective() argument 190 SC_MatrixLoadPerspective((Matrix4x4 *) m, fovy, aspect, near, far); in rsMatrixLoadPerspective()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLU.java | 111 public static void gluPerspective(GL10 gl, float fovy, float aspect, in gluPerspective() argument 113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0)); in gluPerspective()
|
D | Matrix.java | 381 float fovy, float aspect, float zNear, float zFar) { in perspectiveM() argument 382 float f = 1.0f / (float) Math.tan(fovy * (Math.PI / 360.0)); in perspectiveM()
|
/frameworks/rs/ |
D | rsMatrix4x4.h | 49 void loadPerspective(float fovy, float aspect, float near, float far);
|
D | rsMatrix4x4.cpp | 298 void Matrix4x4::loadPerspective(float fovy, float aspect, float near, float far) { in loadPerspective() argument 299 float top = near * tan((float) (fovy * M_PI / 360.0f)); in loadPerspective()
|
D | rsRuntime.h | 218 void rsrMatrixLoadPerspective(rs_matrix4x4* m, float fovy, float aspect, float near, float far);
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Matrix4f.java | 311 public void loadPerspective(float fovy, float aspect, float near, float far) { in loadPerspective() argument 312 float top = near * (float)Math.tan((float) (fovy * Math.PI / 360.0f)); in loadPerspective()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Matrix4f.java | 310 public void loadPerspective(float fovy, float aspect, float near, float far) { in loadPerspective() argument 311 float top = near * (float)Math.tan((float) (fovy * Math.PI / 360.0f)); in loadPerspective()
|
/frameworks/native/opengl/tests/angeles/ |
D | demo.c | 502 static void gluPerspective(GLfloat fovy, GLfloat aspect, in gluPerspective() argument 507 ymax = zNear * (GLfloat)tan(fovy * PI / 360); in gluPerspective()
|
/frameworks/rs/scriptc/ |
D | rs_matrix.rsh | 357 * fovy: Field of view, in degrees along the Y axis. 363 rsMatrixLoadPerspective(rs_matrix4x4* m, float fovy, float aspect, float near, float far);
|
/frameworks/rs/api/ |
D | rs_matrix.spec | 328 arg: float fovy, "Field of view, in degrees along the Y axis."
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_matrix.jd | 610 …='rs_value_types.html#android_rs:rs_matrix4x4'>rs_matrix4x4</a>* m, float fovy, float aspect, floa… 619 <tr><th>fovy</th><td>Field of view, in degrees along the Y axis.</td></tr>
|