Home
last modified time | relevance | path

Searched refs:znear (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
Dmatrix.cc20 GLfloat znear, in glhFrustumf2() argument
23 temp = 2.0f * znear; in glhFrustumf2()
26 temp4 = zfar - znear; in glhFrustumf2()
37 mat[10] = (-zfar - znear) / temp4; in glhFrustumf2()
48 GLfloat znear, in glhPerspectivef2() argument
51 ymax = znear * tanf(fovyInDegrees * 3.14f / 360.0f); in glhPerspectivef2()
53 glhFrustumf2(mat, -xmax, xmax, -ymax, ymax, znear, zfar); in glhPerspectivef2()
Dmatrix.h29 GLfloat znear,
35 GLfloat znear,
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
Dmatrix.cc20 GLfloat znear, in glhFrustumf2() argument
23 temp = 2.0f * znear; in glhFrustumf2()
26 temp4 = zfar - znear; in glhFrustumf2()
37 mat[10] = (-zfar - znear) / temp4; in glhFrustumf2()
48 GLfloat znear, in glhPerspectivef2() argument
51 ymax = znear * tanf(fovyInDegrees * 3.14f / 360.0f); in glhPerspectivef2()
53 glhFrustumf2(mat, -xmax, xmax, -ymax, ymax, znear, zfar); in glhPerspectivef2()
Dmatrix.h29 GLfloat znear,
35 GLfloat znear,
/external/chromium_org/gpu/command_buffer/service/
Dgles2_cmd_decoder.cc1248 void DoDepthRangef(GLclampf znear, GLclampf zfar);
4993 void GLES2DecoderImpl::DoDepthRangef(GLclampf znear, GLclampf zfar) { in DoDepthRangef() argument
4994 state_.z_near = std::min(1.0f, std::max(0.0f, znear)); in DoDepthRangef()
4996 glDepthRange(znear, zfar); in DoDepthRangef()