Searched defs:aspect (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DMatrix4f.java307 * @param aspect aspect ratio of the screen
311 public void loadPerspective(float fovy, float aspect, float near, float far) { argument
314 float left = bottom * aspect;
315 float right = top * aspect;
321 * projection matrix with aspect ratio defined by the parameters
333 float aspect = ((float)w) / h;
334 m1.loadFrustum(-aspect,aspect, -1,1, 1,100);
336 float aspect
[all...]
/frameworks/rs/
H A DrsMatrix4x4.cpp294 void Matrix4x4::loadPerspective(float fovy, float aspect, float near, float far) { argument
297 float left = bottom * aspect;
298 float right = top * aspect;
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix4f.java307 * @param aspect aspect ratio of the screen
311 public void loadPerspective(float fovy, float aspect, float near, float far) { argument
314 float left = bottom * aspect;
315 float right = top * aspect;
321 * projection matrix with aspect ratio defined by the parameters
333 float aspect = ((float)w) / h;
334 m1.loadFrustum(-aspect,aspect, -1,1, 1,100);
336 float aspect
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix4x4.cpp294 void Matrix4x4::loadPerspective(float fovy, float aspect, float near, float far) { argument
297 float left = bottom * aspect;
298 float right = top * aspect;
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java103 * @param aspect specifies the aspect ration that determins the field of
104 * view in the x direction. The aspect ratio is the ratio of x
111 public static void gluPerspective(GL10 gl, float fovy, float aspect, argument
115 float left = bottom * aspect;
116 float right = top * aspect;
H A DMatrix.java362 * aspect ratio, and z clip planes
367 * @param aspect width to height aspect ratio of the viewport
372 float fovy, float aspect, float zNear, float zFar) {
376 m[offset + 0] = f / aspect;
371 perspectiveM(float[] m, int offset, float fovy, float aspect, float zNear, float zFar) argument
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c502 static void gluPerspective(GLfloat fovy, GLfloat aspect, argument
509 xmin = ymin * aspect;
510 xmax = ymax * aspect;
/frameworks/rs/driver/
H A DrsdRuntimeMath.cpp208 static void SC_MatrixLoadPerspective(Matrix4x4 *m, float fovy, float aspect, float near, float far) { argument
209 m->loadPerspective(fovy, aspect, near, far);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp211 static void SC_MatrixLoadPerspective(Matrix4x4 *m, float fovy, float aspect, float near, float far) { argument
212 m->loadPerspective(fovy, aspect, near, far);

Completed in 134 milliseconds