Home | History | Annotate | Download | only in i915

Lines Matching defs:max_lod

39  * A note about min_lod & max_lod.
45 * min_lod =< max_lod == true
46 * max_lod =< last_level == true
49 * This is all fine and dandy if it were for the fact that max_lod
51 * the max_lod we submit on map is:
52 * max_lod = MIN2(last_level, max_lod);
305 unsigned max_lod = num_levels * 4;
329 * set max_lod = 1 to make sure i915 chooses between min/mag filtering.
333 if (max_lod > (sampler->maxlod >> 2))
334 max_lod = sampler->maxlod >> 2;
340 | ((max_lod) << MS4_MAX_LOD_SHIFT)