HomeSort by relevance Sort by last modified time
    Searched refs:recipLen (Results 1 - 5 of 5) sorted by null

  /frameworks/base/libs/rs/
rsMatrix.cpp 77 const float recipLen = 1.f / len;
78 x *= recipLen;
79 y *= recipLen;
80 z *= recipLen;
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 83 float recipLen = 1.f / len;
84 x *= recipLen;
85 y *= recipLen;
86 z *= recipLen;
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 521 float recipLen = 1.0f / len;
522 x *= recipLen;
523 y *= recipLen;
524 z *= recipLen;
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 1123 float recipLen = 1.0f / len;
1124 x *= recipLen;
1125 y *= recipLen;
1126 z *= recipLen;
    [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 361 const GLfloat recipLen = reciprocalf(len);
362 x *= recipLen;
363 y *= recipLen;
364 z *= recipLen;

Completed in 317 milliseconds