Searched refs:far (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java231 * @param far
235 float near, float far) {
242 if (near == far) {
243 throw new IllegalArgumentException("near == far");
248 final float r_depth = 1.0f / (far - near);
254 final float tz = -(far + near) * r_depth;
284 * @param far
289 float near, float far) {
296 if (near == far) {
297 throw new IllegalArgumentException("near == far");
233 orthoM(float[] m, int mOffset, float left, float right, float bottom, float top, float near, float far) argument
287 frustumM(float[] m, int offset, float left, float right, float bottom, float top, float near, float far) argument
[all...]
H A DGLErrorWrapper.java231 public void glDepthRangef(float near, float far) { argument
233 mgl.glDepthRangef(near, far);
237 public void glDepthRangex(int near, int far) { argument
239 mgl.glDepthRangex(near, far);
334 float near, float far) {
336 mgl.glFrustumf(left, right, bottom, top, near, far);
341 int far) {
343 mgl.glFrustumx(left, right, bottom, top, near, far);
608 float near, float far) {
610 mgl.glOrthof(left, right, bottom, top, near, far);
333 glFrustumf(float left, float right, float bottom, float top, float near, float far) argument
340 glFrustumx(int left, int right, int bottom, int top, int near, int far) argument
607 glOrthof(float left, float right, float bottom, float top, float near, float far) argument
614 glOrthox(int left, int right, int bottom, int top, int near, int far) argument
[all...]
H A DGLLogWrapper.java1461 public void glDepthRangef(float near, float far) { argument
1464 arg("far", far);
1467 mgl.glDepthRangef(near, far);
1471 public void glDepthRangex(int near, int far) { argument
1474 arg("far", far);
1477 mgl.glDepthRangex(near, far);
1667 float near, float far) {
1674 arg("far", fa
1666 glFrustumf(float left, float right, float bottom, float top, float near, float far) argument
1681 glFrustumx(int left, int right, int bottom, int top, int near, int far) argument
2158 glOrthof(float left, float right, float bottom, float top, float near, float far) argument
2173 glOrthox(int left, int right, int bottom, int top, int near, int far) argument
[all...]
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp688 GLfloat far = c->transforms.vpt.zFar; local
689 GLfloat A = div2f(far - near);
690 GLfloat B = div2f(far + near);
/frameworks/base/libs/utils/
H A DResourceTypes.cpp1076 // check for sensical values pulled out of the stream so far...
3619 TABLE_GETENTRY(LOGI("Best entry so far -- using it!\n"));

Completed in 74 milliseconds