Home
last modified time | relevance | path

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

/frameworks/base/opengl/java/android/opengl/
DMatrix.java282 final float r_width = 1.0f / (right - left); in orthoM() local
285 final float x = 2.0f * (r_width); in orthoM()
288 final float tx = -(right + left) * r_width; in orthoM()
341 final float r_width = 1.0f / (right - left); in frustumM() local
344 final float x = 2.0f * (near * r_width); in frustumM()
346 final float A = (right + left) * r_width; in frustumM()
/frameworks/native/opengl/libagl/
Dmatrix.cpp825 const GLfloat r_width = reciprocalf(right - left); in frustumf() local
828 const GLfloat x = mul2f(zNear * r_width); in frustumf()
830 const GLfloat A = mul2f((right + left) * r_width); in frustumf()
865 const GLfloat r_width = reciprocalf(right - left); in orthof() local
868 const GLfloat x = mul2f(r_width); in orthof()
871 const GLfloat tx = -(right + left) * r_width; in orthof()