Searched defs:upY (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DGLU.java68 * @param upY up vector Y
72 float centerX, float centerY, float centerZ, float upX, float upY,
78 upX, upY, upZ);
71 gluLookAt(GL10 gl, float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
H A DMatrix.java667 * @param upY up vector Y
672 float centerX, float centerY, float centerZ, float upX, float upY,
689 float sx = fy * upZ - fz * upY;
691 float sz = fx * upY - fy * upX;
670 setLookAtM(float[] rm, int rmOffset, float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp39 float centerX, float centerY, float centerZ, float upX, float upY,
56 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ);
58 upY *= rlup;
63 float sx = fy * upZ - fz * upY;
65 float sz = fx * upY - fy * upX;
38 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/base/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp25 float centerX, float centerY, float centerZ, float upX, float upY,
42 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ);
44 upY *= rlup;
49 float sx = fy * upZ - fz * upY;
51 float sz = fx * upY - fy * upX;
24 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/base/opengl/tests/tritex/
H A Dtritex.cpp36 float centerX, float centerY, float centerZ, float upX, float upY,
53 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ);
55 upY *= rlup;
60 float sx = fy * upZ - fz * upY;
62 float sz = fx * upY - fy * upX;
35 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument

Completed in 236 milliseconds