Searched defs:nz (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/rs/java/Film/src/com/android/film/
H A DFilmStripMesh.java33 float nz; field in class:FilmStripMesh.Vertex
43 nz = 0;
60 nz = _z;
79 nz = (float)java.lang.Math.sqrt(dx*dx + dy*dy);
81 len = (float)java.lang.Math.sqrt(nx*nx + ny*ny + nz*nz);
84 nz /= len;
232 tm.setNormal(t.nx, t.ny, t.nz);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp2763 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2766 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2770 (GLfloat)nz
2774 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2777 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2781 (GLfixed)nz
2765 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2776 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1343 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1346 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1350 (GLfixed)nz
1345 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp2889 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2892 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2896 (GLfloat)nz
2900 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2903 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2907 (GLfixed)nz
2891 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2902 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java589 public void glNormal3f(float nx, float ny, float nz) { argument
591 mgl.glNormal3f(nx, ny, nz);
595 public void glNormal3x(int nx, int ny, int nz) { argument
597 mgl.glNormal3x(nx, ny, nz);
H A DGLLogWrapper.java2124 public void glNormal3f(float nx, float ny, float nz) { argument
2128 arg("nz", nz);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2139 arg("nz", nz);
2142 mgl.glNormal3x(nx, ny, nz);

Completed in 104 milliseconds