Searched refs:r_width (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java275 final float r_width = 1.0f / (right - left);
278 final float x = 2.0f * (r_width);
281 final float tx = -(right + left) * r_width;
333 final float r_width = 1.0f / (right - left);
336 final float x = 2.0f * (near * r_width);
338 final float A = (right + left) * r_width;
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp825 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 589 milliseconds