HomeSort by relevance Sort by last modified time
    Searched defs:depthMax (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/mesa/main/
viewport.c 161 GLfloat depthMax = 65535.0F; /* sorf of arbitrary */
173 0.0F, 1.0F, depthMax);
state.c 280 const GLfloat depthMax = ctx->DrawBuffer->_DepthMaxF;
282 ASSERT(depthMax > 0);
292 depthMax);
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 211 const GLuint depthMax = ctx->DrawBuffer->_DepthMax;
214 if (depthMax <= 0xffffff &&
230 z[i] = depthMax;
s_drawpix.c 367 const GLuint depthMax = ctx->DrawBuffer->_DepthMax;
389 GL_UNSIGNED_INT, span.array->z, depthMax,
s_span.c 69 const GLfloat depthMax = ctx->DrawBuffer->_DepthMaxF;
71 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
73 GLfloat tmpf = ctx->Current.RasterPos[2] * depthMax;
74 tmpf = MIN2(tmpf, depthMax);
    [all...]

Completed in 183 milliseconds