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

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java283 final float r_height = 1.0f / (top - bottom);
286 final float y = 2.0f * (r_height);
289 final float ty = -(top + bottom) * r_height;
342 final float r_height = 1.0f / (top - bottom);
345 final float y = 2.0f * (near * r_height);
347 final float B = (top + bottom) * r_height;
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp826 const GLfloat r_height = reciprocalf(top - bottom); local
829 const GLfloat y = mul2f(zNear * r_height);
831 const GLfloat B = (top + bottom) * r_height;
866 const GLfloat r_height = reciprocalf(top - bottom); local
869 const GLfloat y = mul2f(r_height);
872 const GLfloat ty = -(top + bottom) * r_height;

Completed in 357 milliseconds