Home | History | Annotate | Download | only in radeon

Lines Matching refs:minLod

245 	int minLod, maxLod;
256 minLod = maxLod = tObj->BaseLevel;
258 minLod = tObj->BaseLevel + (GLint)(samp->MinLod);
259 minLod = MAX2(minLod, tObj->BaseLevel);
260 minLod = MIN2(minLod, tObj->MaxLevel);
263 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod);
264 maxLod = MAX2(maxLod, minLod); /* need at least one level */
269 minLod = maxLod = 0;
279 minLod, maxLod);
282 *pminLod = minLod;
520 calculate_min_max_lod(samp, &t->base, &t->minLod, &t->maxLod);
523 "%s: Validating texture %p now, minLod = %d, maxLod = %d\n",
524 __func__, texObj ,t->minLod, t->maxLod);
546 for (level = t->minLod; level <= t->maxLod; ++level) {
577 return radeon_miptree_image_offset(texObj->mt, 0, texObj->minLod);