HomeSort by relevance Sort by last modified time
    Searched refs:_MaxLambda (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 81 lod_max = CLAMP(MIN2(sa->MaxLod, t->_MaxLambda),
nv10_state_tex.c 209 int lod_max = MIN2(sa->MaxLod, t->_MaxLambda);
nv20_state_tex.c 221 int lod_max = MIN2(sa->MaxLod, t->_MaxLambda);
  /external/mesa3d/src/mesa/main/
texobj.c 263 dest->_MaxLambda = src->_MaxLambda;
539 /* Compute _MaxLambda = q - b (see the 1.2 spec) used during mipmapping */
540 t->_MaxLambda = (GLfloat) (t->_MaxLevel - baseLevel);
    [all...]
mtypes.h     [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 614 else if (lambda > tObj->_MaxLambda)
615 return (GLint) (tObj->BaseLevel + tObj->_MaxLambda);
631 else if (lambda > tObj->_MaxLambda + 0.4999F)
632 l = tObj->_MaxLambda + 0.4999F;
    [all...]

Completed in 89 milliseconds