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

  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 193 const float r_width = 1.0f / (right - left); local
196 const float x = 2.0f * (near * r_width);
198 const float A = (right + left) * r_width;
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 282 final float r_width = 1.0f / (right - left); local
285 final float x = 2.0f * (r_width);
288 final float tx = -(right + left) * r_width;
341 final float r_width = 1.0f / (right - left); local
344 final float x = 2.0f * (near * r_width);
346 final float A = (right + left) * r_width;
  /frameworks/native/opengl/libagl/
matrix.cpp 825 const GLfloat r_width = reciprocalf(right - left); local
828 const GLfloat x = mul2f(zNear * r_width);
830 const GLfloat A = mul2f((right + left) * r_width);
865 const GLfloat r_width = reciprocalf(right - left); local
868 const GLfloat x = mul2f(r_width);
871 const GLfloat tx = -(right + left) * r_width;

Completed in 136 milliseconds