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

/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp2735 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2738 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2740 (GLfloat)nx,
2746 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2749 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2751 (GLfixed)nx,
2737 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2748 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1321 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1324 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1326 (GLfixed)nx,
1323 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp2861 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2864 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2866 (GLfloat)nx,
2872 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2875 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2877 (GLfixed)nx,
2863 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2874 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 )
573 int nx,
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 )
948 float nx,
953 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
956 int nx,
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
2126 arg("nx", nx);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2137 arg("nx", nx);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java753 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
756 float nx,
761 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
764 int nx,
755 glNormal3f( float nx, float ny, float nz ) argument
763 glNormal3x( int nx, int ny, int nz ) argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java728 float nx,
734 int nx,
727 glNormal3f( float nx, float ny, float nz ) argument
733 glNormal3x( int nx, int ny, int nz ) argument

Completed in 204 milliseconds