Searched defs:ny (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp3079 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
3082 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
3085 (GLfloat)ny,
3090 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
3093 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
3096 (GLfixed)ny,
3081 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3092 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1604 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1607 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1610 (GLfixed)ny,
1606 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp3207 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
3210 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
3213 (GLfloat)ny,
3218 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
3221 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
3224 (GLfixed)ny,
3209 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3220 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES11Ext.java570 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
574 int ny,
572 glNormal3xOES( int nx, int ny, int nz ) argument
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 DGLES10.java945 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
949 float ny,
953 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
957 int ny,
947 glNormal3f( float nx, float ny, float nz ) argument
955 glNormal3x( int nx, int ny, int nz ) argument
H A DGLLogWrapper.java2124 public void glNormal3f(float nx, float ny, float nz) { argument
2127 arg("ny", ny);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2138 arg("ny", ny);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java754 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
758 float ny,
762 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
766 int ny,
756 glNormal3f( float nx, float ny, float nz ) argument
764 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java729 float ny,
735 int ny,
727 glNormal3f( float nx, float ny, float nz ) argument
733 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp11907 void GLTrace_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) { argument
11919 // copy argument ny
11923 arg_ny->add_floatvalue(ny);
11934 glContext->hooks->gl.glNormal3f(nx, ny, nz);
13593 void GLTrace_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) { argument
13605 // copy argument ny
13609 arg_ny->add_intvalue(ny);
13620 glContext->hooks->gl.glNormal3x(nx, ny, nz);
15861 void GLTrace_glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) { argument
15873 // copy argument ny
[all...]

Completed in 210 milliseconds