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

  /frameworks/base/opengl/java/android/opengl/
Matrix.java 250 final float r_depth = 1.0f / (far - near); local
253 final float z = -2.0f * (r_depth);
256 final float tz = -(far + near) * r_depth;
309 final float r_depth = 1.0f / (near - far); local
314 final float C = (far + near) * r_depth;
315 final float D = 2.0f * (far * near * r_depth);
  /frameworks/base/opengl/libagl/
matrix.cpp 827 const GLfloat r_depth = reciprocalf(zNear - zFar); local
832 const GLfloat C = (zFar + zNear) * r_depth;
833 const GLfloat D = mul2f(zFar * zNear * r_depth);
867 const GLfloat r_depth = reciprocalf(zFar - zNear); local
870 const GLfloat z = -mul2f(r_depth);
873 const GLfloat tz = -(zFar + zNear) * r_depth;

Completed in 460 milliseconds