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

/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DCubeMapActivity.java180 float nx = cosV * cosU;
184 float length = (float) Math.sqrt(nx*nx + ny*ny + nz*nz);
185 nx /= length;
189 grid.set(i, j, x, y, z, nx, ny, nz);
237 // float nx, ny, nx;
317 public void set(int i, int j, float x, float y, float z, float nx, float ny, float nz) { argument
331 mVertexBuffer.put(nx);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixTrackingGL.java478 public void glNormal3f(float nx, float ny, float nz) { argument
479 mgl.glNormal3f(nx, ny, nz);
482 public void glNormal3x(int nx, int ny, int nz) { argument
483 mgl.glNormal3x(nx, ny, nz);
/development/tools/emulator/opengl/system/GLESv1_enc/
H A Dgl_enc.cpp458 void glNormal3f_enc(void *self , GLfloat nx, GLfloat ny, GLfloat nz) argument
470 memcpy(ptr, &nx, 4); ptr += 4;
1849 void glNormal3x_enc(void *self , GLfixed nx, GLfixed ny, GLfixed nz) argument
1861 memcpy(ptr, &nx, 4); ptr += 4;
3445 void glNormal3xOES_enc(void *self , GLfixed nx, GLfixed ny, GLfixed nz) argument
3457 memcpy(ptr, &nx, 4); ptr += 4;
H A Dgl_entry.cpp34 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz);
118 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz);
211 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz);
459 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) argument
462 ctx->glNormal3f(ctx, nx, ny, nz);
967 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) argument
970 ctx->glNormal3x(ctx, nx, ny, nz);
1525 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) argument
1528 ctx->glNormal3xOES(ctx, nx, ny, nz);
/development/tools/emulator/opengl/tests/gles_android_wrapper/
H A Dgles.cpp181 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) argument
183 getDispatch()->glNormal3f(nx, ny, nz);
606 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) argument
608 getDispatch()->glNormal3x(nx, ny, nz);
971 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz) argument
973 getDispatch()->glNormal3xOES(nx, ny, nz);

Completed in 134 milliseconds